Update
This commit is contained in:
parent
b803ed2c9b
commit
2b99e3499e
160 changed files with 59846 additions and 219 deletions
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8.1"/>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
|
|
|
@ -70,13 +70,12 @@ namespace XeroBrowser
|
|||
Container = new AppContainer();
|
||||
CefSettings settings = new CefSettings();
|
||||
settings.CefCommandLineArgs["plugin-policy"] = "allow";
|
||||
settings.UserAgent = "Mozilla/5.0 (Windows NT 11.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 XeroBrowser/1.0.0";
|
||||
settings.UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 XeroBrowser/1.0.0";
|
||||
settings.CefCommandLineArgs.Add("enable-media-stream", "1");
|
||||
settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
|
||||
settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0");
|
||||
settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0");
|
||||
settings.CefCommandLineArgs.Add("disable-gpu"); // Disable GPU acceleration
|
||||
settings.CefCommandLineArgs.Add("disable-gpu-vsync"); // Disable GPU vsync
|
||||
settings.CefCommandLineArgs.Add("enable-do-not-track");
|
||||
/// settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0");
|
||||
FileChecker.FolderCheck();
|
||||
FileChecker.FileCheck();
|
||||
|
|
2
WebBrowser/Properties/Settings.Designer.cs
generated
2
WebBrowser/Properties/Settings.Designer.cs
generated
|
@ -12,7 +12,7 @@ namespace XeroBrowser.Properties {
|
|||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.8.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.9.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
|
|
@ -14,29 +14,33 @@
|
|||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>XeroBrowser</RootNamespace>
|
||||
<AssemblyName>Xero Browser</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<IsWebBootstrapper>true</IsWebBootstrapper>
|
||||
<LangVersion>9.0</LangVersion>
|
||||
<TargetFrameworkProfile />
|
||||
<PublishUrl>publish\</PublishUrl>
|
||||
<Install>true</Install>
|
||||
<InstallFrom>Disk</InstallFrom>
|
||||
<UpdateEnabled>false</UpdateEnabled>
|
||||
<InstallFrom>Web</InstallFrom>
|
||||
<UpdateEnabled>true</UpdateEnabled>
|
||||
<UpdateMode>Foreground</UpdateMode>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<InstallUrl>https://cdn.diamondcreeper.org/xerobrowser/download/</InstallUrl>
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.htm</WebPage>
|
||||
<ApplicationRevision>4</ApplicationRevision>
|
||||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
<LangVersion>9.0</LangVersion>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
@ -78,6 +82,18 @@
|
|||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ManifestCertificateThumbprint>ECD42B73812780858AA93860340CCFBA77B622A9</ManifestCertificateThumbprint>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ManifestKeyFile>Xero Browser_TemporaryKey.pfx</ManifestKeyFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<GenerateManifests>true</GenerateManifests>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<SignManifests>true</SignManifests>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Bunifu.Licensing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=f89b4760ba7dcb6b, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Bunifu.UI.WinForms.5.3.0\lib\net40\Bunifu.Licensing.dll</HintPath>
|
||||
|
@ -353,6 +369,7 @@
|
|||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<None Include="Xero Browser_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
|
|
|
@ -10,4 +10,7 @@
|
|||
<FallbackCulture>en-US</FallbackCulture>
|
||||
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<EnableSecurityDebugging>false</EnableSecurityDebugging>
|
||||
</PropertyGroup>
|
||||
</Project>
|
BIN
WebBrowser/Xero Browser_TemporaryKey.pfx
Normal file
BIN
WebBrowser/Xero Browser_TemporaryKey.pfx
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,29 @@
|
|||
// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
|
||||
// 2006-2009 Google Inc. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the name Chromium Embedded
|
||||
// Framework nor the names of its contributors may be used to endorse
|
||||
// or promote products derived from this software without specific prior
|
||||
// written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,154 @@
|
|||
Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Date: January 18, 2024
|
||||
|
||||
CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234
|
||||
CEF URL: https://bitbucket.org/chromiumembedded/cef.git
|
||||
@4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553
|
||||
|
||||
Chromium Version: 120.0.6099.234
|
||||
Chromium URL: https://chromium.googlesource.com/chromium/src.git
|
||||
@ad76543128c308a9afdfc1ecf5b3f714886446c1
|
||||
|
||||
This distribution contains all components necessary to build and distribute an
|
||||
application using CEF on the Windows platform. Please see the LICENSING
|
||||
section of this document for licensing terms and conditions.
|
||||
|
||||
|
||||
CONTENTS
|
||||
--------
|
||||
|
||||
cmake Contains CMake configuration files shared by all targets.
|
||||
|
||||
Debug Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the debug version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
include Contains all required CEF header files.
|
||||
|
||||
libcef_dll Contains the source code for the libcef_dll_wrapper static library
|
||||
that all applications using the CEF C++ API must link against.
|
||||
|
||||
Release Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the release version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
Resources Contains resources required by libcef.dll. By default these files
|
||||
should be placed in the same directory as libcef.dll and will be
|
||||
copied there as part of the build process.
|
||||
|
||||
tests/ Directory of tests that demonstrate CEF usage.
|
||||
|
||||
cefclient Contains the cefclient sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
a wide range of CEF functionalities.
|
||||
|
||||
cefsimple Contains the cefsimple sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
the minimal functionality required to create a browser window.
|
||||
|
||||
ceftests Contains unit tests that exercise the CEF APIs.
|
||||
|
||||
gtest Contains the Google C++ Testing Framework used by the ceftests
|
||||
target.
|
||||
|
||||
shared Contains source code shared by the cefclient and ceftests targets.
|
||||
|
||||
|
||||
USAGE
|
||||
-----
|
||||
|
||||
Building using CMake:
|
||||
CMake can be used to generate project files in many different formats. See
|
||||
usage instructions at the top of the CMakeLists.txt file.
|
||||
|
||||
Please visit the CEF Website for additional usage information.
|
||||
|
||||
https://bitbucket.org/chromiumembedded/cef/
|
||||
|
||||
|
||||
REDISTRIBUTION
|
||||
--------------
|
||||
|
||||
This binary distribution contains the below components.
|
||||
|
||||
Required components:
|
||||
|
||||
The following components are required. CEF will not function without them.
|
||||
|
||||
* CEF core library.
|
||||
* libcef.dll
|
||||
|
||||
* Crash reporting library.
|
||||
* chrome_elf.dll
|
||||
|
||||
* Unicode support data.
|
||||
* icudtl.dat
|
||||
|
||||
* V8 snapshot data.
|
||||
* snapshot_blob.bin
|
||||
* v8_context_snapshot.bin
|
||||
|
||||
Optional components:
|
||||
|
||||
The following components are optional. If they are missing CEF will continue to
|
||||
run but any related functionality may become broken or disabled.
|
||||
|
||||
* Localized resources.
|
||||
Locale file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The locales directory path can be
|
||||
customized using CefSettings.locales_dir_path.
|
||||
|
||||
* locales/
|
||||
Directory containing localized resources used by CEF, Chromium and Blink. A
|
||||
.pak file is loaded from this directory based on the CefSettings.locale
|
||||
value. Only configured locales need to be distributed. If no locale is
|
||||
configured the default locale of "en-US" will be used. Without these files
|
||||
arbitrary Web components may display incorrectly.
|
||||
|
||||
* Other resources.
|
||||
Pack file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The resources directory path can be
|
||||
customized using CefSettings.resources_dir_path.
|
||||
|
||||
* chrome_100_percent.pak
|
||||
* chrome_200_percent.pak
|
||||
* resources.pak
|
||||
These files contain non-localized resources used by CEF, Chromium and Blink.
|
||||
Without these files arbitrary Web components may display incorrectly.
|
||||
|
||||
* Direct3D support.
|
||||
* d3dcompiler_47.dll
|
||||
Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS
|
||||
and WebGL. Without this file the aforementioned capabilities may fail when GPU
|
||||
acceleration is enabled (default in most cases). Use of this bundled version
|
||||
is recommended instead of relying on the possibly old and untested system
|
||||
installed version.
|
||||
|
||||
* ANGLE support.
|
||||
* libEGL.dll
|
||||
* libGLESv2.dll
|
||||
Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL.
|
||||
Without these files the aforementioned capabilities may fail.
|
||||
|
||||
* SwANGLE support.
|
||||
* vk_swiftshader.dll
|
||||
* vk_swiftshader_icd.json
|
||||
* vulkan-1.dll
|
||||
Support for software rendering of HTML5 content like 2D canvas, 3D CSS and
|
||||
WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without
|
||||
these files the aforementioned capabilities may fail when GPU acceleration is
|
||||
disabled or unavailable.
|
||||
|
||||
|
||||
LICENSING
|
||||
---------
|
||||
|
||||
The CEF project is BSD licensed. Please read the LICENSE.txt file included with
|
||||
this binary distribution for licensing terms and conditions. Other software
|
||||
included in this distribution is provided under other licenses. Please visit
|
||||
"about:credits" in a CEF-based application for complete Chromium and third-party
|
||||
licensing information.
|
|
@ -0,0 +1,18 @@
|
|||
############################################################################################
|
||||
# Caution: This is your settings file for Xero Browser! #
|
||||
# Modifying anything in this file could cause things to break and is thus not reccomended. #
|
||||
# Continue at your own risk! #
|
||||
############################################################################################
|
||||
RuffleActive = true
|
||||
SearchEngine = DuckDuckGo
|
||||
HomePage = newtab
|
||||
Theme = Match System
|
||||
RoundBorders = true
|
||||
FontSize = med
|
||||
PageZoom = 100
|
||||
CookiesAllowed = blockthirdparty
|
||||
ClearDataOnClose = false
|
||||
RickRollBlocker = true
|
||||
PornBlocker = true
|
||||
TelemetryBlocker = true
|
||||
AdBlocker = true
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||
<assemblyIdentity name="Xero Browser.application" version="1.0.0.3" publicKeyToken="4d2c076624d8eeaf" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||
<description asmv2:publisher="Xero Browser" asmv2:product="Xero Browser" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||
<deployment install="true" mapFileExtensions="true">
|
||||
<subscription>
|
||||
<update>
|
||||
<beforeApplicationStartup />
|
||||
</update>
|
||||
</subscription>
|
||||
<deploymentProvider codebase="https://cdn.diamondcreeper.org/xerobrowser/download/Xero%20Browser.application" />
|
||||
</deployment>
|
||||
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||
<framework targetVersion="4.8.1" profile="Full" supportedRuntime="4.0.30319" />
|
||||
</compatibleFrameworks>
|
||||
<dependency>
|
||||
<dependentAssembly dependencyType="install" codebase="Application Files\Xero Browser_1_0_0_3\Xero Browser.exe.manifest" size="81110">
|
||||
<assemblyIdentity name="Xero Browser.exe" version="1.0.0.3" publicKeyToken="4d2c076624d8eeaf" language="neutral" processorArchitecture="amd64" type="win32" />
|
||||
<hash>
|
||||
<dsig:Transforms>
|
||||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>KLz6Y3Z/TYwefggSBGrlNFgm73g7zRWxcPw0ghi3B2M=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<publisherIdentity name="CN=DIAMONDCREEPER\joshua" issuerKeyHash="0a686fcd9d633afd404293506993ccf204d07098" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>FxHWLj7Eng4PSD8LZ7lykQQQKBw3P3nGEcStX0x9iSU=</DigestValue></Reference></SignedInfo><SignatureValue>rPAaCYS8ArjP6GEA6/ykyPC+E0UVA5Wbfy5NCqhX+ORuyvAQtXTC1M/A6oHfWIKDeZycu4U9sbqNUUr0oCjTj5X0uw6JRmSM1ZLOqrzt+JvlJunhdRE/tLgsLDbsgxNSvYCg59zshzT3hMxu2yZhayakPpiyS4fTp4taoPIb5Qk=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="25897d4c5fadc411c6793f371c2810049172b9670b3f480f0e9ec43e2ed61117" Description="" Url=""><as:assemblyIdentity name="Xero Browser.application" version="1.0.0.3" publicKeyToken="4d2c076624d8eeaf" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=DIAMONDCREEPER\joshua</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>fRAQRZ6gGs9SLc9QNEslgdTgfu89QlopUpRrf+IB6Rs=</DigestValue></Reference></SignedInfo><SignatureValue>pQQEU6PdbFsEtU7QhOB+doyde8ZUWh2lLg358WuC0Dn6ajQciJQ8lnixJoD/jwvp0ayjAOwC8AoSK5bjMhJOfubbXzY8XpHcTZPkZN9djjYY+Uvi0SSdutTKL1QMzhedPhv7XSgOPImuT0RbI61CD/VZtBtJESuZ6kVHpPa8jvk=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB7TCCAVagAwIBAgIQVBDxdM7OfZtEaZuo66mOqTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwHhcNMjQwNDI2MDMxMzQwWhcNMjUwNDI2MDkxMzQwWjA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOBCfxnjsMn56TUBiZZMxYGG6Cf0Q4BFS7eO53O5RoPhnU6uosF2qXTJhCCAeJNxMshJ/7/WTojXB/ECRBSHZPhv8luCeJu8GkrX17fuRRIsCX3F506phKzqUhH7jwtE4dypdKMdb7JdLW2EbCDtQgGMUgiB2Qhfz9D0r5ISvwmtAgMBAAEwDQYJKoZIhvcNAQELBQADgYEA1hR92JD/hYFtIcwPpt+fSNGA7zXtKGUJRaPSZb3J2Bl7YTPT1xnN0R3oKteKI2Tm9SCw3TzQRrnEw+LNNHB+CDYxW2nX/kXCbNlps+FgnfyX9wQQbkWUk6cC7P0Jt5yTfOVfTd9UuhdzFeGFIv7trWknEVx7yh69ZSqVfwo6JCQ=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8.1"/>
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Bunifu.UI.WinForms.BunifuScrollBar" publicKeyToken="e8e24ccd28363fe9" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Bunifu.UI.WinForms.BunifuFormDock" publicKeyToken="e8e24ccd28363fe9" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Svg" publicKeyToken="12a0bac221edeae2" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.4.0.0" newVersion="3.4.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Fizzler" publicKeyToken="4ebff4844e382110" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="ExCSS" publicKeyToken="bdbe16be9b936b9a" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
After Width: | Height: | Size: 110 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
Binary file not shown.
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,796 @@
|
|||
<!DOCTYPE html>
|
||||
<!--suppress ALL -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Error</title>
|
||||
<meta content="summary_large_image" name="twitter:card">
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
||||
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Inter:300,regular,500,600,700" media="all">
|
||||
<script>WebFont.load({ google: { families: ["Inter:300,regular,500,600,700"] }});</script>
|
||||
<script>!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
|
||||
<link href="https://diamondcreeper.org/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
||||
<link href="https://diamondcreeper.org/favicon.ico" rel="apple-touch-icon">
|
||||
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-52115242-20"></script>
|
||||
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-52115242-20', {'anonymize_ip': false});</script>
|
||||
<style>
|
||||
body{
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* Generated on: Fri Feb 12 2021 22:06:51 GMT+0000 (Coordinated Universal Time) */
|
||||
/* ==========================================================================
|
||||
normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css
|
||||
========================================================================== */
|
||||
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:none}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
|
||||
|
||||
/* ==========================================================================
|
||||
Start of base Webflow CSS - If you're looking for some ultra-clean CSS, skip the boilerplate and see the unminified code below.
|
||||
========================================================================== */
|
||||
@font-face{font-family:'webflow-icons';src:url("data:application/x-font-ttf;charset=utf-8;base64,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") format('truetype');font-weight:normal;font-style:normal}[class^="w-icon-"],[class*=" w-icon-"]{font-family:'webflow-icons',serif !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
||||
|
||||
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} html{height:100%} body{margin:0;min-height:100%;background-color:#fff;font-family:Arial,sans-serif;font-size:14px;line-height:20px;color:#333} img{max-width:100%;vertical-align:middle;display:inline-block} html.w-mod-touch *{background-attachment:scroll !important}
|
||||
|
||||
.w-inline-block{max-width:100%;display:inline-block}
|
||||
|
||||
.w-button{display:inline-block;padding:9px 15px;background-color:#3898EC;color:white;border:0;line-height:inherit;text-decoration:none;cursor:pointer;border-radius:0} input.w-button{-webkit-appearance:button} html[data-w-dynpage] [data-w-cloak]{color:transparent !important}
|
||||
|
||||
.w-webflow-badge>img{display:inline-block !important;visibility:visible !important;opacity:1 !important;vertical-align:middle !important} h1,h2,h3,h4,h5,h6{font-weight:bold;margin-bottom:10px} h1{font-size:38px;line-height:44px;margin-top:20px} h2{font-size:32px;line-height:36px;margin-top:20px} h3{font-size:24px;line-height:30px;margin-top:20px} h4{font-size:18px;line-height:24px;margin-top:10px} h5{font-size:14px;line-height:20px;margin-top:10px} h6{font-size:12px;line-height:18px;margin-top:10px} p{margin-top:0;margin-bottom:10px} blockquote{margin:0 0 10px 0;padding:10px 20px;border-left:5px solid #E2E2E2;font-size:18px;line-height:22px} figure{margin:0;margin-bottom:10px} figcaption{margin-top:5px;text-align:center} ul,ol{margin-top:0;margin-bottom:10px;padding-left:40px}
|
||||
|
||||
.w-video iframe,.w-video object,.w-video embed{position:absolute;top:0;left:0;width:100%;height:100%} fieldset{padding:0;margin:0;border:0} button,html input[type="button"],input[type="reset"]{border:0;cursor:pointer;-webkit-appearance:button}
|
||||
|
||||
label{display:block;margin-bottom:5px;font-weight:bold}
|
||||
|
||||
@media screen and (max-width:991px){
|
||||
}@media screen and (max-width:767px){
|
||||
}@media screen and (max-width:479px){
|
||||
}
|
||||
|
||||
.w-widget-map label{width:auto;display:inline} .w-widget-map img{max-width:inherit}
|
||||
|
||||
.w-widget-map .gm-style-iw>button{display:none !important}
|
||||
|
||||
.w-widget-twitter-count-shim *{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
|
||||
|
||||
.w-background-video>video{background-size:cover;background-position:50% 50%;position:absolute;margin:auto;width:100%;height:100%;right:-100%;bottom:-100%;top:-100%;left:-100%;object-fit:cover;z-index:-100} .w-background-video>video::-webkit-media-controls-start-playback-button{display:none !important;-webkit-appearance:none}
|
||||
|
||||
.w-slider-nav.w-round>div{border-radius:100%} .w-slider-nav.w-num>div{width:auto;height:auto;padding:.2em .5em;font-size:inherit;line-height:inherit} .w-slider-nav.w-shadow>div{box-shadow:0 0 3px rgba(51,51,51,0.4)}
|
||||
|
||||
.w-slider-nav-invert>div{background-color:rgba(34,34,34,0.4)}
|
||||
|
||||
.w-slider-arrow-left [class^="w-icon-"],.w-slider-arrow-right [class^="w-icon-"],.w-slider-arrow-left [class*=" w-icon-"],.w-slider-arrow-right [class*=" w-icon-"]{position:absolute}
|
||||
|
||||
@media screen and (max-width:767px){
|
||||
}
|
||||
|
||||
@media (min-width:768px){
|
||||
}
|
||||
|
||||
.w-richtext ol,.w-richtext ul{overflow:hidden} .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after{outline:2px solid #2895f7} .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div{outline:2px solid #2895f7} .w-richtext figure.w-richtext-figure-type-video>div:after,.w-richtext figure[data-rt-type="video"]>div:after{content:'';position:absolute;display:none;left:0;top:0;right:0;bottom:0} .w-richtext figure{position:relative;max-width:60%} .w-richtext figure>div:before{cursor:default !important} .w-richtext figure img{width:100%}
|
||||
|
||||
.w-richtext figure div{font-size:0;color:transparent}
|
||||
|
||||
.w-richtext figure.w-richtext-figure-type-image>div,.w-richtext figure[data-rt-type="image"]>div{display:inline-block} .w-richtext figure.w-richtext-figure-type-image>figcaption,.w-richtext figure[data-rt-type="image"]>figcaption{display:table-caption;caption-side:bottom}
|
||||
|
||||
.w-richtext figure.w-richtext-figure-type-video iframe,.w-richtext figure[data-rt-type="video"] iframe{position:absolute;top:0;left:0;width:100%;height:100%} .w-richtext figure.w-richtext-figure-type-video>div,.w-richtext figure[data-rt-type="video"]>div{width:100%}
|
||||
|
||||
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,.w-richtext figure.w-richtext-align-center[data-rt-type="image"]>div{max-width:100%}
|
||||
|
||||
.w-richtext figure.w-richtext-align-fullwidth>div{display:inline-block;padding-bottom:inherit} .w-richtext figure.w-richtext-align-fullwidth>figcaption{display:block}
|
||||
|
||||
.w-nav{position:relative;background:#dddddd;z-index:1000} .w-nav:before,.w-nav:after{content:" ";display:table;grid-column-start:1;grid-row-start:1;grid-column-end:2;grid-row-end:2} .w-nav:after{clear:both}
|
||||
|
||||
[data-nav-menu-open]{display:block !important;position:absolute;top:100%;left:0;right:0;background:#C8C8C8;text-align:center;overflow:visible;min-width:200px}
|
||||
|
||||
.w-nav-overlay{position:absolute;overflow:hidden;display:none;top:100%;left:0;right:0;width:100%} .w-nav-overlay [data-nav-menu-open]{top:0} .w-nav[data-animation="over-left"] .w-nav-overlay{width:auto} .w-nav[data-animation="over-left"] .w-nav-overlay,.w-nav[data-animation="over-left"] [data-nav-menu-open]{right:auto;z-index:1;top:0} .w-nav[data-animation="over-right"] .w-nav-overlay{width:auto} .w-nav[data-animation="over-right"] .w-nav-overlay,.w-nav[data-animation="over-right"] [data-nav-menu-open]{left:auto;z-index:1;top:0} .w-nav-button{position:relative;float:right;padding:18px;font-size:24px;display:none;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .w-nav-button:focus{outline:0}
|
||||
|
||||
.w-nav[data-collapse="all"] .w-nav-button{display:block}
|
||||
|
||||
@media screen and (max-width:991px){
|
||||
.w-nav[data-collapse="medium"] .w-nav-button{display:block}}@media screen and (max-width:767px){
|
||||
.w-nav[data-collapse="small"] .w-nav-button{display:block}
|
||||
}@media screen and (max-width:479px){
|
||||
.w-nav[data-collapse="tiny"] .w-nav-button{display:block}}
|
||||
|
||||
@media screen and (max-width:479px){
|
||||
}
|
||||
|
||||
@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)}}
|
||||
|
||||
/* ==========================================================================
|
||||
Start of custom Webflow CSS
|
||||
========================================================================== */
|
||||
|
||||
body {
|
||||
padding-bottom: 96px;
|
||||
background-color: #12141d;
|
||||
font-family: Inter, sans-serif;
|
||||
color: hsla(0, 0%, 100%, 0.5);
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 24px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 40px;
|
||||
line-height: 44px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 24px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 32px;
|
||||
line-height: 40px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 24px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
line-height: 30px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
h5 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-family: Inter, sans-serif;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 0;
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
img {
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin-top: 48px;
|
||||
margin-bottom: 48px;
|
||||
padding: 48px;
|
||||
border-left: 5px none #e2e2e2;
|
||||
border-radius: 12px;
|
||||
background-color: #8f2df0;
|
||||
color: #fff;
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
margin-top: 12px;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 1296px;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
padding-right: 24px;
|
||||
padding-left: 24px;
|
||||
-webkit-perspective: 500px;
|
||||
perspective: 500px;
|
||||
}
|
||||
|
||||
.container.align-content-center {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.section.demo-pages-section {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.panel {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: start;
|
||||
-webkit-align-items: flex-start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
border-radius: 12px;
|
||||
background-color: hsla(0, 0%, 100%, 0.05);
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.panel.section {
|
||||
position: relative;
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
padding-top: 108px;
|
||||
}
|
||||
|
||||
.panel-subheading {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.bg-gray-3 {
|
||||
background-color: hsla(0, 0%, 100%, 0.1);
|
||||
}
|
||||
|
||||
.text-lead {
|
||||
font-family: Inter, sans-serif;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
height: 48px;
|
||||
padding-right: 24px;
|
||||
padding-left: 24px;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
border-radius: 6px;
|
||||
background-color: #0252e7;
|
||||
box-shadow: inset 0 0 20px 20px transparent;
|
||||
-webkit-transition: box-shadow 200ms ease;
|
||||
transition: box-shadow 200ms ease;
|
||||
font-weight: 600;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.185);
|
||||
background-color: #0146c5;
|
||||
}
|
||||
|
||||
.button:active {
|
||||
box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.185);
|
||||
background-color: #003caa;
|
||||
}
|
||||
|
||||
.button-circle {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
border-radius: 50%;
|
||||
background-color: #ff715b;
|
||||
}
|
||||
|
||||
.button-circle:hover {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
.button-circle.bg-gray-3 {
|
||||
background-color: hsla(0, 0%, 100%, 0.1);
|
||||
}
|
||||
|
||||
.button-circle-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
padding: 36px;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: stretch;
|
||||
-webkit-align-items: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1 0 auto;
|
||||
-ms-flex: 1 0 auto;
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
.panel-body.align-content-center {
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.content-width-small {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.text-primary-1 {
|
||||
color: #0059ff;
|
||||
}
|
||||
|
||||
.space-bottom-large {
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding-top: 16px;
|
||||
padding-bottom: 16px;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.navbar-row {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.navbar-controls {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.navbar-wrapper {
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
background-color: #12141d;
|
||||
}
|
||||
|
||||
.navbar-wrapper.sticky-top {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.navbar-buttons {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.article h5 {
|
||||
margin-top: 48px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.article img {
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.article figure {
|
||||
margin-top: 72px;
|
||||
margin-bottom: 72px;
|
||||
}
|
||||
|
||||
.article ul {
|
||||
margin-top: 36px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.article li {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.article h4 {
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
.article h2 {
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
.align-content-center {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.back-to-top-button-wrapper {
|
||||
position: fixed;
|
||||
right: 24px;
|
||||
bottom: 24px;
|
||||
z-index: 10;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-style: none;
|
||||
border-width: 1px;
|
||||
border-color: #12141d;
|
||||
border-radius: 50%;
|
||||
background-color: #12141d;
|
||||
}
|
||||
|
||||
.fullscreen-section-content {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
padding-top: 24px;
|
||||
padding-bottom: 24px;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
blockquote {
|
||||
margin-top: 36px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-top: 96px;
|
||||
margin-bottom: 96px;
|
||||
}
|
||||
|
||||
.panel.section {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.navbar-controls {
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu-button {
|
||||
margin-left: 12px;
|
||||
margin-bottom: 10px;
|
||||
padding: 12px 0 12px 12px;
|
||||
}
|
||||
|
||||
.article h5 {
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
.article figure {
|
||||
margin-top: 48px;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.article ul {
|
||||
margin-top: 36px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
body {
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-top: 72px;
|
||||
margin-bottom: 72px;
|
||||
}
|
||||
|
||||
.panel.section {
|
||||
padding-top: 48px;
|
||||
padding-bottom: 48px;
|
||||
}
|
||||
|
||||
.navbar-buttons {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.article h5 {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.article img {
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.article figure {
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.article ul {
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.back-to-top-button-wrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 479px) {
|
||||
body {
|
||||
padding-bottom: 12px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 24px;
|
||||
border-radius: 6px;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding-right: 12px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.panel {
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.panel.section {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.text-lead {
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.psm-meta > #psm-top-part > #psm-icon > img{
|
||||
float: left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<script>
|
||||
document.onkeydown = function(e) {
|
||||
if(event.keyCode == 123) {
|
||||
return false;
|
||||
}
|
||||
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){
|
||||
return false;
|
||||
}
|
||||
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){
|
||||
return false;
|
||||
}
|
||||
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
document.addEventListener('contextmenu', event => event.preventDefault());
|
||||
</script>
|
||||
<body>
|
||||
<div id="Top" class="back-to-top-container">
|
||||
<div class="back-to-top-button-wrapper" style="opacity: 0; transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;"><a href="#Top" class="button-circle bg-gray-3 w-inline-block"><img src="https://assets.website-files.com/5dcb2e333e05bec4ef2fee2f/5dd224eeedfe6ae0b672ad8b_icon-arrow-up.svg" alt="" class="button-circle-icon"></a></div>
|
||||
</div>
|
||||
<div class="navbar-wrapper sticky-top">
|
||||
<div class="container">
|
||||
<div data-collapse="medium" data-animation="default" data-duration="400" role="banner" class="navbar w-nav">
|
||||
<div class="navbar-row">
|
||||
<div>
|
||||
</div>
|
||||
<div class="navbar-controls">
|
||||
<div class="navbar-buttons">
|
||||
</div>
|
||||
<div class="menu-button w-nav-button" style="-webkit-user-select: text;" aria-label="menu" role="button" tabindex="0" aria-controls="w-nav-overlay-0" aria-haspopup="menu" aria-expanded="false"><img src="https://assets.website-files.com/5dcb2e333e05bec4ef2fee2f/5dd224eec5a7edbe9260a75d_icon-menu.svg" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-nav-overlay" data-wf-ignore="" id="w-nav-overlay-0"></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<div id="company" class="section demo-pages-section">
|
||||
<div class="fullscreen-section-content">
|
||||
<div class="container align-content-center">
|
||||
<div class="content-width-small">
|
||||
<div class="panel">
|
||||
<div class="panel-body">
|
||||
<div class="space-bottom-large">
|
||||
<h5 class="panel-subheading text-primary-1">ERROR :/</h5>
|
||||
<h1>Could not load the site/page!</h1>
|
||||
<div class="text-lead">
|
||||
<h4>1. Check your connection.</h4>
|
||||
<h4>2. Make sure that theres no firewall/antivirus blocking the conenction.</h4>
|
||||
</div>
|
||||
</div>
|
||||
<a onclick="history.back()" class="button w-button">Back</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<script src="https://diamondcreeper.org/jquery-3.5.1.min.dc5e7f18c8.js"></script>
|
||||
<script src="https://diamondcreeper.org/script.js"></script>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue