Compare commits
38 Commits
lxbfyeaa-p
...
@@cJKOI
| Author | SHA1 | Date | |
|---|---|---|---|
| df36d2646d | |||
| 460fdb828e | |||
| 3cd2c3d0a6 | |||
| e63fa40b87 | |||
| b7b6cd896d | |||
| 32f0ced18e | |||
| 538f85d7a2 | |||
| dc85447ee1 | |||
| 4dec48155d | |||
| 5ce28f7b43 | |||
| f0a815f401 | |||
| 997922ca9a | |||
| f6bcb99fb7 | |||
| b86f4122e1 | |||
| c948ba1de3 | |||
|
|
79bfb3a22f | ||
|
|
355a32fadb | ||
|
|
f6312ff90c | ||
|
|
321fe74967 | ||
|
|
329f68abb7 | ||
|
|
5eaa04eb5f | ||
|
|
e5066c7015 | ||
|
|
c1dae36106 | ||
|
|
c02175a7ed | ||
|
|
929323b61a | ||
|
|
396e2a260d | ||
|
|
3697f851f5 | ||
|
|
15f6f8ce0d | ||
|
|
4aa2dd96f4 | ||
|
|
be484cb33d | ||
| 6877774d1e | |||
| 5f19f89b2f | |||
| 84917a95d3 | |||
| 6245e522ba | |||
| 7bfb9bdf89 | |||
| 30e77947f6 | |||
| ed71e9c86d | |||
| 02d86266df |
26
.dockerignore
Normal file
@@ -0,0 +1,26 @@
|
||||
.git
|
||||
.gitignore
|
||||
.gitattributes
|
||||
.github/
|
||||
.vscode/
|
||||
.idea/
|
||||
.devcontainer/
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.log
|
||||
logs.conf
|
||||
logs/
|
||||
|
||||
docker-compose.yml
|
||||
compose.yml
|
||||
|
||||
.env
|
||||
.env.*
|
||||
wp-config-local.php
|
||||
|
||||
node_modules/
|
||||
vendor/
|
||||
|
||||
**/.cache/
|
||||
**/tmp/
|
||||
**/temp/
|
||||
56
.gitignore
vendored
@@ -1,36 +1,40 @@
|
||||
!htdocs/
|
||||
!wordpress/
|
||||
|
||||
htdocs/*
|
||||
!htdocs/wp-content/
|
||||
!htdocs/wp-config.php
|
||||
!htdocs/wp-config-local-sample.php
|
||||
!htdocs/sitemap.xml
|
||||
wordpress/*
|
||||
!wordpress/wp-content/
|
||||
!wordpress/wp-config.php
|
||||
!wordpress/wp-config-local-sample.php
|
||||
!wordpress/sitemap.xml
|
||||
|
||||
htdocs/wp-content/*
|
||||
!htdocs/wp-content/mu-plugins/
|
||||
!htdocs/wp-content/plugins/
|
||||
!htdocs/wp-content/themes/
|
||||
!htdocs/wp-content/index.php
|
||||
!htdocs/wp-content/sunrise.php
|
||||
!htdocs/wp-content/uploads/
|
||||
!htdocs/wp-content/uploads/.gitkeep
|
||||
wordpress/wp-content/*
|
||||
!wordpress/wp-content/mu-plugins/
|
||||
!wordpress/wp-content/plugins/
|
||||
!wordpress/wp-content/themes/
|
||||
!wordpress/wp-content/index.php
|
||||
!wordpress/wp-content/sunrise.php
|
||||
!wordpress/wp-content/uploads/
|
||||
!wordpress/wp-content/uploads/.gitkeep
|
||||
|
||||
htdocs/wp-content/mu-plugins/*
|
||||
!htdocs/wp-content/mu-plugins/domain_mapping.php
|
||||
wordpress/wp-content/mu-plugins/*
|
||||
!wordpress/wp-content/mu-plugins/domain_mapping.php
|
||||
|
||||
htdocs/wp-content/plugins/*
|
||||
!htdocs/wp-content/plugins/index.php
|
||||
!htdocs/wp-content/plugins/faq
|
||||
wordpress/wp-content/plugins/*
|
||||
!wordpress/wp-content/plugins/index.php
|
||||
!wordpress/wp-content/plugins/faq
|
||||
!wordpress/wp-content/plugins/disable-image-threshold
|
||||
|
||||
htdocs/wp-content/themes/*
|
||||
!htdocs/wp-content/themes/lawcarta
|
||||
!htdocs/wp-content/themes/livecarta
|
||||
!htdocs/wp-content/themes/redesign
|
||||
!htdocs/wp-content/themes/index.php
|
||||
wordpress/wp-content/themes/*
|
||||
!wordpress/wp-content/themes/lawcarta
|
||||
!wordpress/wp-content/themes/livecarta
|
||||
!wordpress/wp-content/themes/redesign
|
||||
!wordpress/wp-content/themes/index.php
|
||||
|
||||
!htdocs/wp-content/plugins/wp-rest-api-event
|
||||
!htdocs/wp-content/plugins/subscribe-to-lc
|
||||
!wordpress/wp-content/plugins/wp-rest-api-event
|
||||
!wordpress/wp-content/plugins/subscribe-to-lc
|
||||
|
||||
vendor/
|
||||
|
||||
.DS_store
|
||||
|
||||
.devcontainer
|
||||
.git*
|
||||
|
||||
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM composer:latest AS setup
|
||||
WORKDIR /src
|
||||
COPY . .
|
||||
RUN composer install --no-dev --optimize-autoloader
|
||||
|
||||
FROM wordpress:6.9.1-php8.5 AS app
|
||||
ARG ENV_NAME
|
||||
|
||||
WORKDIR /usr/src/wordpress
|
||||
RUN set -eux; \
|
||||
find /etc/apache2 -name '*.conf' -type f -exec sed -ri -e "s!/var/www/html!$PWD!g" -e "s!Directory /var/www/!Directory $PWD!g" '{}' +; \
|
||||
cp -s wp-config-docker.php wp-config.php
|
||||
|
||||
COPY --from=setup --chown=www-data:www-data /src/wordpress ./
|
||||
COPY --from=setup --chown=www-data:www-data /src/environments/docker_container/ ./
|
||||
COPY --from=setup --chown=www-data:www-data /src/environments/all/ ./
|
||||
COPY --from=setup --chown=www-data:www-data /src/environments/${ENV_NAME}/robots.txt ./robots.txt
|
||||
35
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
@Library('utils') _
|
||||
|
||||
def mapBranchNameToWPEnv(branchName) {
|
||||
def envMap = [
|
||||
master: 'new_prod',
|
||||
main: 'new_prod',
|
||||
develop: 'dev',
|
||||
qa: 'qa',
|
||||
demo: 'demo'
|
||||
]
|
||||
return envMap.get(branchName, 'development')
|
||||
}
|
||||
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
options {
|
||||
withFolderProperties()
|
||||
}
|
||||
|
||||
environment {
|
||||
// LC_IMG_TAG = "${utils.mapBranchToEnv(env.BRANCH_NAME)}"
|
||||
LC_IMG_TAG = 'qa_test'
|
||||
WP_ENV = "${mapBranchNameToWPEnv(env.BRANCH_NAME)}"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh "docker build --build-arg ENV_NAME=${WP_ENV} -t ${env.PUSH_REGISTRY}/${env.LC_WP_IMG}:${LC_IMG_TAG} ."
|
||||
sh "docker push ${env.PUSH_REGISTRY}/${env.LC_WP_IMG}:${LC_IMG_TAG}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="LawCarta wordpress project" default="build-without-tests">
|
||||
|
||||
<target name="build-without-tests"
|
||||
depends="composer_install, replace, archive"
|
||||
description="Build project and run all tests"/>
|
||||
|
||||
<target name="replace"
|
||||
unless="replace.done"
|
||||
description="Replace placeholders in config files" >
|
||||
|
||||
<replace dir="../environments" token="@lcAwsKey@" value="${lcAwsKey}"/>
|
||||
<replace dir="../environments" token="@lcAwsSecretKey@" value="${lcAwsSecretKey}"/>
|
||||
|
||||
<replace dir="../environments" token="@lcWpMySqlHostDev@" value="${lcWpMySqlHostDev}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlDbnameDev@" value="${lcWpMySqlDbnameDev}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlUsernameDev@" value="${lcWpMySqlUsernameDev}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlPasswordDev@" value="${lcWpMySqlPasswordDev}"/>
|
||||
|
||||
<replace dir="../environments" token="@lcWpMySqlHostQA@" value="${lcWpMySqlHostQA}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlDbnameQA@" value="${lcWpMySqlDbnameQA}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlUsernameQA@" value="${lcWpMySqlUsernameQA}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlPasswordQA@" value="${lcWpMySqlPasswordQA}"/>
|
||||
|
||||
<replace dir="../environments" token="@lcWpMySqlHostDemo@" value="${lcWpMySqlHostDemo}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlDbnameDemo@" value="${lcWpMySqlDbnameDemo}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlUsernameDemo@" value="${lcWpMySqlUsernameDemo}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlPasswordDemo@" value="${lcWpMySqlPasswordDemo}"/>
|
||||
|
||||
<replace dir="../environments" token="@lcWpMySqlHostStaging@" value="${lcWpMySqlHostStaging}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlDbnameStaging@" value="${lcWpMySqlDbnameStaging}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlUsernameStaging@" value="${lcWpMySqlUsernameStaging}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlPasswordStaging@" value="${lcWpMySqlPasswordStaging}"/>
|
||||
|
||||
<replace dir="../environments" token="@lcWpMySqlHostProd@" value="${lcWpMySqlHostProd}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlDbnameProd@" value="${lcWpMySqlDbnameProd}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlUsernameProd@" value="${lcWpMySqlUsernameProd}"/>
|
||||
<replace dir="../environments" token="@lcWpMySqlPasswordProd@" value="${lcWpMySqlPasswordProd}"/>
|
||||
|
||||
<property name="replace.done" value="true"/>
|
||||
</target>
|
||||
|
||||
<target name="composer_install">
|
||||
<exec dir="${basedir}/.." executable="composer" failonerror="true">
|
||||
<arg line="install" />
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<target name="archive">
|
||||
<tar compression="gzip" destfile="lc_wp.tar.gz" longfile="posix">
|
||||
<tarfileset dir="${basedir}/..">
|
||||
<include name="*/**" />
|
||||
<exclude name="build/**" />
|
||||
</tarfileset>
|
||||
</tar>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -2,27 +2,23 @@
|
||||
"name": "lawcarta/wordpress",
|
||||
"description": "LawCarta WordPress Site",
|
||||
"require": {
|
||||
"guzzlehttp/guzzle": "^6.5",
|
||||
"wpackagist-plugin/svg-support": "~2.5",
|
||||
"wpackagist-plugin/toggle-wpautop": "~1.3",
|
||||
"wpackagist-plugin/tinymce-advanced": "~5.9",
|
||||
"wpackagist-plugin/contact-form-7": "~5.7",
|
||||
"wpackagist-plugin/contact-form-7-mailchimp-extension": "~0.9",
|
||||
"wpackagist-plugin/contact-form-7": "~6.1",
|
||||
"wpackagist-plugin/duplicator": "~1.5",
|
||||
"wpackagist-plugin/flamingo": "~2.2",
|
||||
"wpackagist-plugin/really-simple-captcha": "~2.0",
|
||||
"wpackagist-plugin/enhanced-media-library": "~2.8",
|
||||
"wpackagist-plugin/menu-item-custom-fields": "~1.0.0",
|
||||
"wpackagist-plugin/wp-rest-api-v2-menus": "~0.12",
|
||||
"wpackagist-plugin/cf7-field-validation": "~1.1",
|
||||
"wpackagist-plugin/taxonomy-terms-order": "~1.7",
|
||||
"wpackagist-plugin/wordpress-seo": "~20",
|
||||
"wpackagist-plugin/post-types-order": "~2",
|
||||
"wpackagist-plugin/post-smtp": "~2.4",
|
||||
"wpackagist-plugin/meta-tag-manager": "~3",
|
||||
"wpackagist-plugin/disable-big-image-threshold": "~1",
|
||||
"wpackagist-plugin/google-sitemap-generator": "~4.1",
|
||||
"wpackagist-plugin/honeypot": "~2.3",
|
||||
"wpackagist-plugin/mailchimp-for-wp": "4.10.1",
|
||||
"wpackagist-plugin/meta-tag-manager": "~3.3",
|
||||
"wpackagist-plugin/post-smtp": "~3.8",
|
||||
"wpackagist-plugin/really-simple-captcha": "~2",
|
||||
"wpackagist-plugin/svg-support": "~2.5",
|
||||
"wpackagist-plugin/taxonomy-terms-order": "~1.7",
|
||||
"wpackagist-plugin/tinymce-advanced": "~5.9",
|
||||
"wpackagist-plugin/toggle-wpautop": "~1.3",
|
||||
"wpackagist-plugin/wordpress-seo": "~27.1",
|
||||
"wpackagist-plugin/wps-hide-login": "~1.9",
|
||||
"humanmade/s3-uploads": "^2.2",
|
||||
"wpackagist-plugin/google-sitemap-generator": "4.1.21",
|
||||
"wpackagist-plugin/mailchimp-for-wp": "4.10.1"
|
||||
"humanmade/s3-uploads": "~3.0"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
@@ -32,15 +28,18 @@
|
||||
],
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"htdocs/wp-content/plugins/{$name}/": [
|
||||
"wordpress/wp-content/plugins/{$name}/": [
|
||||
"type:wordpress-plugin"
|
||||
],
|
||||
"htdocs/wp-content/themes/{$name}/": [
|
||||
"wordpress/wp-content/themes/{$name}/": [
|
||||
"type:wordpress-theme"
|
||||
]
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"vendor-dir": "htdocs/wp-content/vendor"
|
||||
"vendor-dir": "wordpress/wp-content/vendor",
|
||||
"allow-plugins": {
|
||||
"composer/installers": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
997
composer.lock
generated
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
define( 'DB_NAME', '@lcWpMySqlDbnameDev@' );
|
||||
define( 'DB_USER', '@lcWpMySqlUsernameDev@' );
|
||||
define( 'DB_PASSWORD', '@lcWpMySqlPasswordDev@' );
|
||||
define( 'DB_HOST', '@lcWpMySqlHostDev@' );
|
||||
|
||||
define('DOMAIN_CURRENT_SITE', 'dev.livecarta.com');
|
||||
|
||||
define('LAWCARTA_SUBDOMAIN', 'app-dev');
|
||||
define('LAWCARTA_PORT', '');
|
||||
|
||||
define('LAWCARTA_WP_REST_API_REQUEST_URL', 'https://app-dev.livecarta.com/v1/event/request');
|
||||
define('LAWCARTA_WP_REST_API_RESPONSE_URL', 'https://app-dev.livecarta.com/v1/event/response');
|
||||
|
||||
define('LAWCARTA_ENVIRONMENT_NAME', 'dev');
|
||||
|
||||
define('LC_ALLOW_COOKIE_POPUP', true);
|
||||
define('LC_GTM', 'GTM-KXTRR4Q');
|
||||
|
||||
$_SERVER['HTTPS'] = 'On';
|
||||
@@ -5,9 +5,9 @@ define( 'DB_USER', '@lcWpMySqlUsernameQA@' );
|
||||
define( 'DB_PASSWORD', '@lcWpMySqlPasswordQA@' );
|
||||
define( 'DB_HOST', '@lcWpMySqlHostQA@' );
|
||||
|
||||
define('DOMAIN_CURRENT_SITE', 'qa.livecarta.com');
|
||||
define('DOMAIN_CURRENT_SITE', 'qa116.livecarta.com');
|
||||
|
||||
define('LAWCARTA_SUBDOMAIN', 'app-qa');
|
||||
define('LAWCARTA_SUBDOMAIN', 'app-qa116');
|
||||
define('LAWCARTA_PORT', '');
|
||||
|
||||
define('LAWCARTA_ENVIRONMENT_NAME', 'qa');
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
$(document).ready(function () {
|
||||
$(".lc-subscrive-form").on("submit", function () {
|
||||
var form = $(this)
|
||||
var data = {email: form.find("#subscribe-email").val(), formId: form.find("#subscribe-from-id").val()}
|
||||
$.ajax({
|
||||
url: form.attr('action'),
|
||||
type: 'POST',
|
||||
data: JSON.stringify(data),
|
||||
contentType: 'application/json',
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
if (data.success) {
|
||||
msg = "<b>Almost finished...</b><br/><br/>We need to confirm your email address.<br/><br/>To complete the subscription process, please click the link in the email we just sent you."
|
||||
customAlert(msg);
|
||||
}
|
||||
form[0].reset()
|
||||
},
|
||||
error: function (jqXHR) {
|
||||
console.log(jqXHR)
|
||||
}
|
||||
});
|
||||
return false;
|
||||
})
|
||||
});
|
||||
@@ -1,63 +0,0 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
Plugin Name: SubscribeToLc_Widget
|
||||
Description: A plugin subscribe containing form thous sending email to livecarta API
|
||||
Version: 0.1
|
||||
Author: LiveCarta
|
||||
*/
|
||||
|
||||
class SubscribeToLc_Widget extends WP_Widget
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'subscribe_to_lc_widget',
|
||||
__('Subscribe to lc Widget', 'subscribetolc'),
|
||||
[
|
||||
'classname' => 'subscribetolc_widget',
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function widget($args, $instance)
|
||||
{
|
||||
extract($args);
|
||||
if (empty($code)) {
|
||||
return;
|
||||
}
|
||||
|
||||
wp_enqueue_script('subscribe-to-lc-js', plugin_dir_url(__FILE__).'js/subscribe.js');
|
||||
|
||||
?>
|
||||
|
||||
<div id="mc_embed_signup">
|
||||
<form action="<?= LAWCARTA_WP_REST_API_URL.'/subscribe/add-member' ?>" method="post" name="mc-embedded-subscribe-form" class="lc-subscrive-form">
|
||||
<div id="mc_embed_signup_scroll">
|
||||
<input type="email" value="" id="subscribe-email" name="Subscribe[email]" class="email" placeholder="Enter your Email" required>
|
||||
|
||||
<input type="hidden" id="subscribe-from-id" name="Subscribe[formId]" tabindex="-1" value="<?= $code ?>">
|
||||
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button xxl mp-top-right">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
}
|
||||
|
||||
public function form($instance)
|
||||
{
|
||||
}
|
||||
|
||||
// Updating widget replacing old instances with new
|
||||
public function update($new_instance, $old_instance)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Register the widget */
|
||||
add_action('widgets_init', function () {
|
||||
register_widget('SubscribeToLc_Widget');
|
||||
});
|
||||
@@ -1,80 +0,0 @@
|
||||
<?php
|
||||
namespace app\wpRestApiEvent;
|
||||
|
||||
/**
|
||||
* Class HttpClient
|
||||
* @package app\wpRestApiEvent
|
||||
*/
|
||||
class HttpClient
|
||||
{
|
||||
/**
|
||||
* @param string $eventType
|
||||
* @param $data
|
||||
*
|
||||
* @return null|string
|
||||
*/
|
||||
public function logEvent(string $eventType, $data)
|
||||
{
|
||||
$data['event'] = [
|
||||
'slug' => $eventType,
|
||||
];
|
||||
|
||||
return $this->doPostRequest(LAWCARTA_WP_REST_API_EVENT_LOG_URL, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $data
|
||||
* @return null|string
|
||||
*/
|
||||
public function sendRequest($data)
|
||||
{
|
||||
return $this->doPostRequest(LAWCARTA_WP_REST_API_REQUEST_URL, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $sysLogId
|
||||
* @param $data
|
||||
* @return string|\WP_Error
|
||||
*/
|
||||
public function sendResponse($sysLogId, $data)
|
||||
{
|
||||
$data['sysLogId'] = $sysLogId;
|
||||
return $this->doPostRequest(LAWCARTA_WP_REST_API_RESPONSE_URL, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $url
|
||||
* @param $data
|
||||
* @return string|\WP_Error
|
||||
*/
|
||||
private function doPostRequest($url, $data)
|
||||
{
|
||||
$response = wp_remote_post($url, [
|
||||
'headers' => [
|
||||
'Content-Type' => 'application/json',
|
||||
],
|
||||
'body' => json_encode($data),
|
||||
'sslverify' => false
|
||||
|
||||
]);
|
||||
$sysLogId = null;
|
||||
/** @var \WP_HTTP_Requests_Response $httpResponse */
|
||||
if(!empty($response['http_response'])){
|
||||
$httpResponse = $response['http_response'];
|
||||
if ($httpResponse->get_status() == 200) {
|
||||
$body = isset($response['body']) ? json_decode($response['body'], true) : null;
|
||||
$sysLogId = $body['sysLogId'] ?? null;
|
||||
}
|
||||
}
|
||||
|
||||
return $sysLogId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return HttpClient
|
||||
*/
|
||||
public static function create()
|
||||
{
|
||||
return new self();
|
||||
}
|
||||
}
|
||||
@@ -1,159 +0,0 @@
|
||||
<?php
|
||||
namespace app\wpRestApiEvent\event;
|
||||
|
||||
|
||||
use app\wpRestApiEvent\HttpClient;
|
||||
/**
|
||||
* Class EventSubscriber
|
||||
* @package app\wpRestApiEvent\event
|
||||
*/
|
||||
class EventSubscriber
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $request;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $get;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $post;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $cookie;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $session;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $env;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $headers;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $server;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private static $userIp;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private static $sessionId;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private static $parentSysLogId;
|
||||
|
||||
public static function onInit()
|
||||
{
|
||||
add_action('wpcf7_after_flamingo', [self::class, 'onDemoRequest']);
|
||||
apply_filters('parse_request', [self::class, 'onParseRequest']);
|
||||
// apply_filters('http_response', [self::class, 'onResponse'], 0);
|
||||
//apply_filters('shutdown', [self::class, 'onResponse'], 0);
|
||||
register_shutdown_function([self::class, 'onShutdown']);
|
||||
apply_filters('pre_http_request', [self::class, 'onRequest'], 0);
|
||||
self::onRequest();
|
||||
}
|
||||
|
||||
public static function onRequest()
|
||||
{
|
||||
$client = HttpClient::create();
|
||||
self::$parentSysLogId = $client->sendRequest(self::getSuperGlobals());
|
||||
}
|
||||
|
||||
public static function onResponse(array $response, array $r, $url)
|
||||
{
|
||||
// todo: add response handler
|
||||
}
|
||||
|
||||
public static function onParseRequest()
|
||||
{
|
||||
// todo: add request data from wp
|
||||
}
|
||||
|
||||
public static function onShutdown()
|
||||
{
|
||||
$client = HttpClient::create();
|
||||
$client->sendResponse(self::$parentSysLogId, array_merge(self::getSuperGlobals(), [
|
||||
'headers_list' => headers_list(),
|
||||
'response_code' => http_response_code()
|
||||
]));
|
||||
}
|
||||
|
||||
public static function onDemoRequest()
|
||||
{
|
||||
$client = HttpClient::create();
|
||||
$client->logEvent('demo-request', self::getSuperGlobals());
|
||||
}
|
||||
|
||||
public static function setGlobals()
|
||||
{
|
||||
self::$get = $_GET;
|
||||
self::$post = $_POST;
|
||||
self::$cookie = $_COOKIE;
|
||||
self::$session = $_SESSION;
|
||||
self::$env = $_ENV;
|
||||
self::$request = $_REQUEST;
|
||||
self::$server = $_SERVER;
|
||||
self::$userIp = self::getTheUserIp();
|
||||
self::$sessionId = $_COOKIE['PHPSESSID'] ?? null;
|
||||
|
||||
|
||||
if (function_exists('getallheaders')) {
|
||||
self::$headers = getallheaders();
|
||||
} elseif (function_exists('http_get_request_headers')) {
|
||||
self::$headers = http_get_request_headers();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
private static function getSuperGlobals()
|
||||
{
|
||||
return [
|
||||
'request' => self::$request,
|
||||
'server' => self::$server,
|
||||
'get' => self::$get,
|
||||
'post' => self::$post,
|
||||
'cookie' => self::$cookie,
|
||||
'env' => self::$env,
|
||||
'headers' => self::$headers,
|
||||
'user_ip' => self::$userIp,
|
||||
'session_id' => self::$sessionId,
|
||||
];
|
||||
}
|
||||
|
||||
private static function getTheUserIp()
|
||||
{
|
||||
if ( ! empty($_SERVER['HTTP_CLIENT_IP'])) {
|
||||
$ip = $_SERVER['HTTP_CLIENT_IP'];
|
||||
} elseif ( ! empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
|
||||
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
||||
} else {
|
||||
$ip = $_SERVER['REMOTE_ADDR'];
|
||||
}
|
||||
|
||||
return $ip;
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: WP-REST-API Event
|
||||
Version: 0.0.1
|
||||
Description:
|
||||
Author:
|
||||
*/
|
||||
|
||||
function wp_rest_api_event_register() {
|
||||
spl_autoload_register(function($class) {
|
||||
$namespace = 'app\\wpRestApiEvent\\';
|
||||
if (false === strpos($class, $namespace)) {
|
||||
return false;
|
||||
}
|
||||
$filename = __DIR__ . '/' . str_replace('\\', '/', str_replace($namespace, '', $class)) . '.php';
|
||||
if (!file_exists($filename)) {
|
||||
return false;
|
||||
}
|
||||
include $filename;
|
||||
return true;
|
||||
});
|
||||
|
||||
\app\wpRestApiEvent\event\EventSubscriber::setGlobals();
|
||||
add_action('init', [\app\wpRestApiEvent\event\EventSubscriber::class, 'onInit']);
|
||||
}
|
||||
|
||||
|
||||
wp_rest_api_event_register();
|
||||
@@ -1,3 +0,0 @@
|
||||
<svg width="84" height="84" viewBox="0 0 84 84" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M83.2134 24.3928C82.1649 23.3439 80.5917 23.3439 79.5424 24.3928L73.5125 30.4248L53.5863 10.4918L59.6171 4.45892C60.6656 3.41004 60.6656 1.83633 59.6171 0.78666C58.5686 -0.26222 56.9954 -0.26222 55.9461 0.78666L48.0802 8.65523C47.0317 9.70411 47.0317 11.2778 48.0802 12.3275L48.6049 12.8523C41.001 17.8355 24.4823 20.4589 18.1897 20.9829C17.1411 20.9829 16.0918 21.7698 15.8299 22.8187L0.0982124 80.5209C-0.16372 81.5697 0.0982124 82.6194 0.884797 83.1434C1.40945 83.6683 2.45797 84.1923 3.50648 83.9303L61.1887 68.1932C62.2372 67.9311 63.0238 66.8815 63.0238 65.8326C63.5484 59.5377 66.1701 43.0137 71.1516 35.4068L71.6762 35.9316C72.7247 36.9805 74.2979 36.9805 75.3472 35.9316L83.213 28.0631C84.2623 27.0149 84.2627 25.4416 83.2134 24.3928ZM58.0427 63.472L11.6343 76.0617L28.6772 59.0129C29.9884 59.7998 31.5616 60.0618 33.1348 60.0618C35.4945 60.0618 37.8543 59.2749 39.6894 57.4392C43.3603 53.7669 43.3603 47.9969 39.6894 44.5875C36.0184 40.9152 30.2503 40.9152 26.8421 44.5875C23.9577 47.4729 23.4338 51.9312 25.2689 55.3414L7.96406 72.3903L20.5494 25.9657C26.5801 25.1788 43.8854 22.8183 52.2743 16.5234L67.2194 31.4737C61.1887 40.1291 58.8293 57.4408 58.0427 63.472ZM29.9892 54.0297C28.416 52.456 28.416 50.0955 29.9892 48.5217C30.7758 47.7349 31.8243 47.4729 32.8736 47.4729C33.9221 47.4729 34.9714 47.7349 35.758 48.5217C37.3312 50.0955 37.3312 52.456 35.758 54.0297C34.1841 55.3414 31.5624 55.3414 29.9892 54.0297Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="86" height="86" viewBox="0 0 86 86" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M81.5726 56.1878C80.9609 52.4883 79.054 49.1271 76.1928 46.7045C73.3316 44.2818 69.702 42.9549 65.9526 42.9618H19.9228C16.1739 42.9549 12.5443 44.2817 9.68313 46.7045C6.82192 49.1272 4.91514 52.4883 4.30334 56.1878L0.0380869 82.3626C-0.103701 83.2544 0.154531 84.164 0.743597 84.8484C1.33404 85.5381 2.19916 85.9313 3.10681 85.9224H62.9456C63.6997 85.9279 64.4292 85.6553 64.9951 85.1573C65.5609 84.6593 65.9239 83.9702 66.0143 83.2223L69.083 58.673C69.1891 57.8066 68.9213 56.936 68.3466 56.2791C67.7575 55.6092 66.9061 55.2284 66.0143 55.2359H19.9845C19.1029 55.2373 18.2645 55.6168 17.683 56.2791C17.1083 56.936 16.8405 57.8066 16.9466 58.673L19.5858 79.7854H6.72766L10.5018 57.2001H10.5024C10.8675 54.9349 12.0299 52.8738 13.7794 51.3888C15.5288 49.9037 17.7508 49.0913 20.0461 49.0988H66.0759C68.3706 49.0913 70.5926 49.9037 72.3419 51.3888C74.0914 52.8738 75.2537 54.9349 75.6189 57.2001L79.2711 79.7854H73.6858C72.5892 79.7854 71.5762 80.3703 71.0282 81.3197C70.4802 82.2691 70.4802 83.439 71.0282 84.3884C71.5762 85.3377 72.5892 85.9227 73.6858 85.9227H82.8918C83.798 85.9343 84.6637 85.5446 85.2555 84.8582C85.8474 84.1712 86.1056 83.2582 85.9604 82.363L81.5726 56.1878ZM62.5469 61.3737L60.2454 79.7856H25.7538L23.4523 61.3737H62.5469Z" fill="#0055D6"/>
|
||||
<path d="M42.9986 39.8924C53.3703 39.8924 61.4105 28.3541 61.4105 18.4118C61.4105 11.834 57.9014 5.75565 52.2046 2.46641C46.5077 -0.822136 39.4895 -0.822136 33.7926 2.46641C28.0958 5.75565 24.5867 11.834 24.5867 18.4118C24.5867 28.3541 32.6269 39.8924 42.9986 39.8924ZM42.9986 6.13722C46.2542 6.13722 49.3763 7.43044 51.6778 9.73263C53.98 12.0341 55.2732 15.1563 55.2732 18.4118C55.2732 25.3163 49.5962 33.7551 42.9986 33.7551C36.401 33.7551 30.724 25.3163 30.724 18.4118C30.724 15.1563 32.0172 12.0341 34.3194 9.73263C36.6209 7.43044 39.743 6.13722 42.9986 6.13722Z" fill="#0055D6"/>
|
||||
<path d="M46.0675 70.5789C46.0675 72.2736 44.6934 73.6476 42.9988 73.6476C41.3042 73.6476 39.9302 72.2736 39.9302 70.5789C39.9302 68.8843 41.3042 67.5103 42.9988 67.5103C44.6934 67.5103 46.0675 68.8843 46.0675 70.5789Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 459 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="80" height="86" viewBox="0 0 80 86" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.8605 28.1454C22.007 28.305 38.5425 35.4927 39.8709 35.5239C40.9589 35.5495 47.8537 32.5764 49.5728 31.926C51.1935 31.3128 52.6811 30.6457 54.2734 30.0198C55.0899 29.6987 55.9211 29.4096 56.6839 29.0808C57.2673 28.8293 58.4938 28.2777 59.1095 28.1603L59.1128 45.9424C57.2843 47.2469 52.6756 49.0328 50.5925 49.7371C43.0826 52.2765 36.7589 51.9192 29.3758 49.7318C27.7082 49.2378 26.4449 48.6423 24.9248 48.0283C24.0004 47.6548 21.5334 46.4551 20.8712 45.9345L20.8605 28.1454ZM73.8535 66.4855L73.8523 80.1191L18.0087 80.1215C12.2281 80.145 6.26014 81.3133 6.27271 73.2688C6.28518 65.277 12.359 66.401 17.8966 66.4818C24.0664 66.5717 30.3265 66.4984 36.5042 66.4833C48.952 66.4528 61.4043 66.4855 73.8535 66.4855ZM0.706192 76.2746C0.905697 78.0712 1.65917 79.6742 2.51879 80.9663L4.88673 83.5216C5.22031 83.7473 5.43835 83.9642 5.77992 84.1902C8.84038 86.2145 12.8675 86.0037 16.9998 85.9853L69.2353 85.9573C71.4389 85.9526 73.6463 85.9716 75.8497 85.9587C78.0726 85.9457 79.451 85.3474 79.5783 83.1774C79.8533 78.4919 79.7939 69.1941 79.6675 64.0265C79.6087 61.6223 78.5945 60.741 76.4094 60.7534C56.9211 60.8639 37.2073 60.7272 17.6724 60.7539C12.6181 60.7609 9.03072 60.078 5.00769 62.9166C4.84613 63.0307 4.68424 63.1135 4.5409 63.2373C4.31092 63.436 4.36399 63.4607 4.18175 63.6545C3.39407 64.4922 3.73787 63.9554 2.65754 65.3674C0.674966 67.9586 0.266366 72.3147 0.706192 76.2746ZM25.6266 11.9297C27.2805 11.3398 39.5466 6.21273 40.077 6.2521L54.4903 11.9868C55.8347 12.4868 68.4573 17.514 68.7202 17.7615L54.4149 23.4799C52.6487 24.1918 40.387 29.2059 39.9798 29.2016C39.6421 29.198 33.5342 26.6969 32.7319 26.3614C30.9155 25.6019 11.8812 18.1429 11.2943 17.7174L25.6266 11.9297ZM14.7945 25.8443L14.7938 47.1089C14.7828 49.568 15.8454 50.0355 17.8321 51.1794C31.5607 59.0847 45.7692 59.6611 59.8013 52.4357C60.9823 51.8275 63.27 50.6234 64.2224 49.8123C64.8896 49.2441 65.176 48.3881 65.1797 47.2233L65.1774 25.8443C65.2639 25.4486 66.3929 25.2156 67.2227 24.8519L71.5408 23.1294C72.3259 22.8301 73.0288 22.4557 73.8829 22.2304C73.8829 31.3392 73.8857 40.4478 73.8833 49.5566C73.8829 51.2405 73.6206 54.6725 74.2415 55.9369C75.3703 58.2354 79.8228 58.0535 79.9431 54.4582C80.0397 51.5719 79.9415 47.1119 79.9436 44.1016L79.9437 23.7291C79.9432 22.1587 80.1269 18.2433 79.8334 16.9831C79.3928 15.091 77.6763 14.8493 75.9156 14.0896C72.6103 12.6634 69.4897 11.5657 66.0931 10.1522C64.4834 9.48232 62.829 8.82959 61.1412 8.16225C54.5716 5.56476 48.0951 2.95573 41.5613 0.330294C39.4565 -0.515497 38.1261 0.45159 36.3883 1.12666C34.7475 1.76404 33.1423 2.42598 31.4431 3.11481C28.232 4.41668 25.0403 5.67547 21.6064 7.03809L1.96407 14.9127C-0.163444 15.8788 -0.423908 18.1129 0.521075 19.3851C1.1197 20.191 1.42759 20.3442 2.58923 20.7914L14.2613 25.4439C14.6499 25.5889 14.6339 25.5466 14.7945 25.8443Z" fill="#0055D6"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="49" height="50" viewBox="0 0 49 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.572705 45.1772C0.194605 44.2293 0 43.2134 0 42.1875V7.8125C0 5.74049 0.792671 3.75335 2.20363 2.28823C3.6146 0.823101 5.52827 1.93249e-06 7.52368 1.93249e-06H25.0839C25.8746 -0.000643661 26.6576 0.160474 27.3883 0.474149C28.119 0.787824 28.783 1.24791 29.3423 1.82813L37.3626 10.1562C37.9213 10.7371 38.3644 11.4266 38.6665 12.1853C38.9686 12.944 39.1237 13.7571 39.1231 14.5781V21.875C39.1231 22.7038 38.806 23.4986 38.2417 24.0847C37.6773 24.6707 36.9118 25 36.1136 25C35.3155 25 34.55 24.6707 33.9856 24.0847C33.4212 23.4986 33.1042 22.7038 33.1042 21.875V14.5781L25.0839 6.25H7.52368C7.1246 6.25 6.74186 6.41462 6.45967 6.70764C6.17748 7.00067 6.01894 7.39809 6.01894 7.8125V42.1875C6.01894 42.6019 6.17748 42.9993 6.45967 43.2923C6.74186 43.5853 7.1246 43.75 7.52368 43.75H18.0568C18.855 43.75 19.6205 44.0792 20.1848 44.6653C20.7492 45.2513 21.0663 46.0462 21.0663 46.875C21.0663 47.7038 20.7492 48.4986 20.1848 49.0847C19.6205 49.6707 18.855 50 18.0568 50H7.52368C6.53565 50 5.5573 49.7979 4.64449 49.4053C3.73168 49.0126 2.90227 48.4372 2.20363 47.7117C1.505 46.9863 0.950805 46.125 0.572705 45.1772ZM48.0835 33.3359C47.9132 34.2554 47.4745 35.0982 46.8271 35.7499L34.872 48.1718C34.3126 48.752 33.6486 49.2121 32.9179 49.5258C32.1872 49.8395 31.4042 50.0006 30.6136 49.9999H28.5897C28.1906 49.9999 27.8079 49.8353 27.5257 49.5423C27.2435 49.2493 27.085 48.8518 27.085 48.4374V46.3359C27.0857 44.6805 27.7189 43.093 28.8455 41.9218L40.8081 29.4999C41.4358 28.8276 42.2475 28.3721 43.133 28.1953C43.8101 28.0676 44.507 28.1123 45.1639 28.3255C45.8208 28.5386 46.4181 28.914 46.9048 29.4193C47.3914 29.9246 47.7529 30.5449 47.9582 31.227C48.1635 31.9091 48.2065 32.6327 48.0835 33.3359ZM15.0473 23.4375H24.0758C24.8739 23.4375 25.6394 23.1082 26.2038 22.5222C26.7682 21.9361 27.0852 21.1413 27.0852 20.3125C27.0852 19.4837 26.7682 18.6888 26.2038 18.1028C25.6394 17.5167 24.8739 17.1875 24.0758 17.1875H15.0473C14.2492 17.1875 13.4837 17.5167 12.9193 18.1028C12.3549 18.6888 12.0379 19.4837 12.0379 20.3125C12.0379 21.1413 12.3549 21.9361 12.9193 22.5222C13.4837 23.1082 14.2492 23.4375 15.0473 23.4375ZM24.0758 35.9374H15.0473C14.2492 35.9374 13.4837 35.6082 12.9193 35.0221C12.3549 34.4361 12.0379 33.6412 12.0379 32.8124C12.0379 31.9836 12.3549 31.1887 12.9193 30.6027C13.4837 30.0166 14.2492 29.6874 15.0473 29.6874H24.0758C24.8739 29.6874 25.6394 30.0166 26.2038 30.6027C26.7682 31.1887 27.0852 31.9836 27.0852 32.8124C27.0852 33.6412 26.7682 34.4361 26.2038 35.0221C25.6394 35.6082 24.8739 35.9374 24.0758 35.9374Z" fill="#B3C2D8"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="52" height="50" viewBox="0 0 52 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.4139 18.4949C17.4574 20.5265 14.8039 21.6678 12.037 21.6678C10.3424 21.6721 8.67223 21.2477 7.17103 20.4312C5.66984 19.6147 4.38279 18.4308 3.4212 16.9818C2.45961 15.5328 1.85244 13.8624 1.65219 12.115C1.45195 10.3676 1.66465 8.59589 2.27192 6.95305C2.87919 5.3102 3.86273 3.84571 5.13749 2.68622C6.41224 1.52673 7.93983 0.707155 9.58812 0.298384C11.2364 -0.110386 12.9558 -0.0960484 14.5976 0.340158C16.2393 0.776365 17.754 1.62131 19.0107 2.80191C20.7992 1.00474 23.1906 0 25.6794 0C28.1682 0 30.5596 1.00474 32.3481 2.80191C34.1315 1.13185 36.4134 0.148961 38.8116 0.0179299C41.2097 -0.113101 43.5784 0.615688 45.5206 2.08218C47.4629 3.54868 48.8608 5.66378 49.4801 8.07308C50.0994 10.4824 49.9025 13.0395 48.9223 15.316C47.9422 17.5925 46.2383 19.45 44.0962 20.5773C41.9542 21.7046 39.5041 22.0333 37.1565 21.5081C34.8089 20.983 32.7064 19.636 31.2013 17.6929C29.6962 15.7498 28.88 13.3285 28.8894 10.8349C28.8894 10.6922 28.8996 10.5516 28.9097 10.412C28.9196 10.2745 28.9295 10.1381 28.9295 10.0016H28.8894C28.8894 9.11759 28.5512 8.26978 27.9492 7.64469C27.3472 7.01959 26.5307 6.66841 25.6794 6.66841C24.8281 6.66841 24.0116 7.01959 23.4096 7.64469C22.8076 8.26978 22.4694 9.11759 22.4694 10.0016H22.4293C22.4694 10.2766 22.4694 10.5516 22.4694 10.8349C22.4694 13.708 21.3703 16.4634 19.4139 18.4949ZM41.551 7.37059C40.8912 6.91277 40.1154 6.66841 39.3218 6.66841C38.2576 6.66841 37.237 7.10738 36.4846 7.88875C35.7321 8.67012 35.3093 9.72989 35.3093 10.8349C35.3093 11.659 35.5447 12.4645 35.9855 13.1497C36.4264 13.8349 37.0531 14.3689 37.7863 14.6842C38.5195 14.9996 39.3262 15.0821 40.1046 14.9213C40.8829 14.7606 41.5979 14.3638 42.159 13.7811C42.7202 13.1984 43.1023 12.456 43.2572 11.6478C43.412 10.8395 43.3325 10.0018 43.0288 9.24046C42.7251 8.47913 42.2108 7.82841 41.551 7.37059ZM14.2662 7.37059C13.6064 6.91277 12.8306 6.66841 12.037 6.66841C10.9729 6.66841 9.95227 7.10738 9.19978 7.88875C8.4473 8.67012 8.02456 9.72989 8.02456 10.8349C8.02456 11.659 8.25989 12.4645 8.70078 13.1497C9.14168 13.8349 9.76834 14.3689 10.5015 14.6842C11.2347 14.9996 12.0415 15.0821 12.8198 14.9213C13.5982 14.7606 14.3131 14.3638 14.8743 13.7811C15.4354 13.1984 15.8176 12.456 15.9724 11.6478C16.1272 10.8395 16.0478 10.0018 15.7441 9.24046C15.4404 8.47913 14.9261 7.82841 14.2662 7.37059Z" fill="#B3C2D8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4194 33.1909C49.8174 33.816 49.0009 34.1672 48.1496 34.1672H46.5446V43.3335H48.1496C49.0009 43.3335 49.8174 43.6846 50.4194 44.3097C51.0214 44.9348 51.3596 45.7826 51.3596 46.6667C51.3596 47.5507 51.0214 48.3985 50.4194 49.0236C49.8174 49.6487 49.0009 49.9998 48.1496 49.9998H9.62992C7.0759 49.9998 4.6265 48.9463 2.82054 47.071C1.01458 45.1958 0 42.6523 0 40.0003V37.5004C0 34.8483 1.01458 32.3049 2.82054 30.4296C4.6265 28.5543 7.0759 27.5008 9.62992 27.5008H48.1496C49.0009 27.5008 49.8174 27.852 50.4194 28.477C51.0214 29.1021 51.3596 29.95 51.3596 30.834C51.3596 31.718 51.0214 32.5658 50.4194 33.1909ZM9.62992 43.3335H40.1247V34.1672H9.62992C8.77858 34.1672 7.96211 34.5183 7.36012 35.1434C6.75814 35.7685 6.41994 36.6163 6.41994 37.5004V40.0003C6.41994 40.8843 6.75814 41.7321 7.36012 42.3572C7.96211 42.9823 8.77858 43.3335 9.62992 43.3335Z" fill="#B3C2D8"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="44" height="50" viewBox="0 0 44 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.5 50C39.1576 50 40.7473 49.3415 41.9194 48.1694C43.0915 46.9973 43.75 45.4076 43.75 43.75V6.25C43.75 4.5924 43.0915 3.00268 41.9194 1.83058C40.7473 0.65848 39.1576 0 37.5 0H9.375C6.8886 0 4.50403 0.987721 2.74587 2.74587C0.987721 4.50403 0 6.8886 0 9.375V40.625C0 43.1114 0.987721 45.496 2.74587 47.2541C4.50403 49.0123 6.8886 50 9.375 50H37.5ZM6.25 9.375C6.25 8.5462 6.57924 7.75134 7.16529 7.16529C7.75134 6.57924 8.5462 6.25 9.375 6.25H37.5V31.25H9.375C8.30972 31.2522 7.25272 31.4372 6.25 31.7969V9.375ZM6.25 40.625C6.25 39.7962 6.57924 39.0013 7.16529 38.4153C7.75134 37.8292 8.5462 37.5 9.375 37.5H37.5V43.75H9.375C8.5462 43.75 7.75134 43.4208 7.16529 42.8347C6.57924 42.2487 6.25 41.4538 6.25 40.625ZM21.0158 18.3204L23.5549 19.5938C23.8149 19.7243 24.0259 19.9353 24.1564 20.1954L25.4221 22.7344C25.527 22.9451 25.6886 23.1223 25.8887 23.2462C26.0888 23.37 26.3195 23.4357 26.5549 23.4357C26.7902 23.4357 27.0209 23.37 27.221 23.2462C27.4211 23.1223 27.5827 22.9451 27.6877 22.7344L28.9533 20.1954C29.0839 19.9353 29.2948 19.7243 29.5549 19.5938L32.0939 18.3282C32.3046 18.2232 32.4818 18.0616 32.6057 17.8615C32.7295 17.6614 32.7952 17.4307 32.7952 17.1954C32.7952 16.96 32.7295 16.7293 32.6057 16.5292C32.4818 16.3291 32.3046 16.1675 32.0939 16.0625L29.5549 14.7969C29.2936 14.6644 29.0825 14.4505 28.9533 14.1875L27.6955 11.6407C27.5905 11.43 27.4289 11.2528 27.2288 11.1289C27.0287 11.0051 26.798 10.9394 26.5627 10.9394C26.3273 10.9394 26.0967 11.0051 25.8965 11.1289C25.6964 11.2528 25.5348 11.43 25.4299 11.6407L24.1642 14.1797C24.0351 14.4427 23.824 14.6566 23.5627 14.7891L21.0158 16.0547C20.8052 16.1597 20.6279 16.3213 20.5041 16.5214C20.3802 16.7215 20.3146 16.9522 20.3146 17.1875C20.3146 17.4229 20.3802 17.6536 20.5041 17.8537C20.6279 18.0538 20.8052 18.2154 21.0158 18.3204ZM13.9687 25.0938L12.1406 24.0938C12.031 24.0229 11.9408 23.9258 11.8784 23.8111C11.816 23.6965 11.7833 23.568 11.7833 23.4375C11.7833 23.307 11.816 23.1785 11.8784 23.0639C11.9408 22.9493 12.031 22.8521 12.1406 22.7813L13.9687 21.7813L14.9687 19.9531C15.0396 19.8435 15.1367 19.7533 15.2514 19.6909C15.366 19.6285 15.4944 19.5958 15.625 19.5958C15.7555 19.5958 15.884 19.6285 15.9986 19.6909C16.1132 19.7533 16.2104 19.8435 16.2812 19.9531L17.2812 21.7813L19.1094 22.7813C19.219 22.8521 19.3092 22.9493 19.3716 23.0639C19.434 23.1785 19.4667 23.307 19.4667 23.4375C19.4667 23.568 19.434 23.6965 19.3716 23.8111C19.3092 23.9258 19.219 24.0229 19.1094 24.0938L17.2812 25.0938L16.2812 26.9219C16.2104 27.0315 16.1132 27.1217 15.9986 27.1841C15.884 27.2465 15.7555 27.2792 15.625 27.2792C15.4944 27.2792 15.366 27.2465 15.2514 27.1841C15.1367 27.1217 15.0396 27.0315 14.9687 26.9219L13.9687 25.0938Z" fill="#B3C2D8"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 883 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 759 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 595 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 513 KiB |
|
Before Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 557 KiB |
|
Before Width: | Height: | Size: 127 KiB |
|
Before Width: | Height: | Size: 516 KiB |
|
Before Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 15 KiB |
@@ -1,17 +0,0 @@
|
||||
<svg width="130" height="23" viewBox="0 0 130 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.98325 5.60386V14.5401C4.98325 15.3686 4.99058 16.1895 5.00525 17.0029H9.30646L10.8135 13.7945L11.4846 13.6928L11.2096 18.1553L11.1325 18.2343C9.32113 18.2117 7.55004 18.2004 5.81929 18.2004H3.09115C1.99843 18.2004 0.986382 18.2117 0.0550027 18.2343L0 17.6695L1.36407 17.2515C1.54741 17.1987 1.64641 17.082 1.66108 16.9012C1.66842 16.6 1.67208 16.2648 1.67208 15.8958C1.67942 15.5192 1.68308 15.105 1.68308 14.6531V5.64905C1.68308 5.27247 1.67942 4.92979 1.67208 4.62099C1.67208 4.3122 1.66842 4.02976 1.66108 3.77369C1.65375 3.57787 1.56574 3.4536 1.39707 3.40088L0.0330016 2.96028L0 2.38411C0.946047 2.41424 2.03877 2.4293 3.27816 2.4293C4.55422 2.4293 5.66161 2.41424 6.60033 2.38411L6.65533 2.96028L5.29126 3.37828C5.11525 3.42347 5.01991 3.53644 5.00525 3.7172C4.99791 3.98834 4.99058 4.37622 4.98325 4.88083C4.98325 5.37792 4.98325 5.61893 4.98325 5.60386Z" fill="#134D92"/>
|
||||
<path d="M17.2929 3.62682C17.2929 4.1465 17.1278 4.56827 16.7978 4.89213C16.4751 5.21599 16.0498 5.37792 15.5218 5.37792C15.0377 5.37792 14.6381 5.22729 14.3227 4.92602C14.0147 4.61723 13.8607 4.21805 13.8607 3.7285C13.8607 3.19376 14.0257 2.77199 14.3557 2.46319C14.6857 2.1544 15.1147 2 15.6428 2C16.1268 2 16.5228 2.1431 16.8308 2.4293C17.1388 2.70797 17.2929 3.10714 17.2929 3.62682ZM12.4526 8.23616C14.2567 7.95749 15.8408 7.66752 17.2048 7.36626L17.3259 7.45664C17.2819 8.49599 17.2598 9.60314 17.2598 10.7781V15.0372C17.2598 15.9334 17.2672 16.5586 17.2819 16.9125C17.2965 17.1159 17.3882 17.2439 17.5569 17.2967L18.9319 17.6921L18.9649 18.2343C17.8795 18.2117 16.8015 18.2004 15.7308 18.2004C14.6381 18.2004 13.56 18.2117 12.4966 18.2343L12.4416 17.6921L13.8387 17.2967C14.0074 17.2515 14.099 17.1385 14.1137 16.9577C14.1284 16.664 14.1357 16.1707 14.1357 15.4778V11.84C14.1357 10.8534 14.121 9.94583 14.0917 9.11735L12.5186 8.69935L12.4526 8.23616Z" fill="#134D92"/>
|
||||
<path d="M18.9099 7.67129C19.8706 7.69388 20.8827 7.70518 21.9461 7.70518C22.9581 7.70518 23.9262 7.69388 24.8502 7.67129L24.9162 8.21356L23.7392 8.55248C24.2085 9.96089 24.7622 11.5011 25.4003 13.1731C25.5689 13.6175 25.7413 14.107 25.9173 14.6418C26.1006 14.1221 26.284 13.6325 26.4673 13.1731C27.054 11.6593 27.6297 10.1191 28.1944 8.55248L27.0503 8.21356L26.9953 7.67129C27.5307 7.69388 28.1981 7.70518 28.9974 7.70518C29.6575 7.70518 30.3138 7.69388 30.9665 7.67129L31.0215 8.21356L29.8335 8.54118C29.6501 8.60144 29.5071 8.7483 29.4044 8.98178C28.8324 10.3525 28.1577 11.9982 27.3803 13.9187C26.6103 15.8318 26.0309 17.2929 25.6423 18.3021L24.2342 18.4603C23.8308 17.3531 23.2441 15.8431 22.4741 13.93C21.7114 12.017 21.0624 10.3864 20.527 9.03827C20.4097 8.77466 20.2483 8.6052 20.043 8.52989L18.9429 8.21356L18.9099 7.67129Z" fill="#134D92"/>
|
||||
<path d="M41.571 17.4548C40.2143 18.1628 38.7842 18.5168 37.2808 18.5168C35.4914 18.5168 34.0283 18.0649 32.8916 17.1611C31.7622 16.2498 31.1975 14.9091 31.1975 13.1392C31.1975 11.4521 31.7402 10.0776 32.8256 9.01567C33.9183 7.94619 35.3081 7.41145 36.9948 7.41145C38.4689 7.41145 39.6056 7.82192 40.405 8.64286C41.2117 9.45627 41.6151 10.5822 41.6151 12.0208C41.6151 12.2392 41.604 12.4651 41.582 12.6986H34.5527C34.5527 14.2125 34.9121 15.3008 35.6308 15.9636C36.3568 16.6263 37.5448 16.9577 39.1949 16.9577C39.9943 16.9577 40.757 16.8862 41.483 16.7431L41.571 17.4548ZM38.2709 11.6028V11.3316C38.2709 10.3073 38.1425 9.57301 37.8859 9.12865C37.6365 8.68428 37.2515 8.4621 36.7308 8.4621C36.1074 8.4621 35.6088 8.7709 35.2347 9.38849C34.868 9.99855 34.6554 10.7366 34.5967 11.6028H38.2709Z" fill="#134D92"/>
|
||||
<path d="M55.6297 6.65452L55.0247 6.7562L54.1887 3.51385C53.6093 3.32556 52.9823 3.23141 52.3076 3.23141C50.6868 3.23141 49.4328 3.85654 48.5454 5.10678C47.658 6.34949 47.2143 7.98008 47.2143 9.99855C47.2143 12.1526 47.735 13.8698 48.7764 15.1502C49.8251 16.4305 51.2772 17.0707 53.1326 17.0707C54.1667 17.0707 55.2557 16.8561 56.3998 16.4268L56.5428 17.0707C55.076 18.095 53.4186 18.6072 51.5705 18.6072C49.1724 18.6072 47.2327 17.8653 45.7513 16.3816C44.2772 14.8978 43.5401 12.9434 43.5401 10.5182C43.5401 7.93489 44.3505 5.89007 45.9713 4.38375C47.592 2.87743 49.7078 2.12427 52.3186 2.12427C53.6093 2.12427 54.9294 2.27867 56.2788 2.58746L56.3448 2.70044L55.6297 6.65452Z" fill="#134D92"/>
|
||||
<path d="M64.3092 13.1731C63.1578 13.1731 62.3364 13.3237 61.845 13.625C61.3537 13.9263 61.108 14.4422 61.108 15.1727C61.108 15.8355 61.2803 16.31 61.625 16.5962C61.9771 16.8749 62.3914 17.0142 62.8681 17.0142C63.4108 17.0142 63.8838 16.8711 64.2872 16.5849L64.3092 13.1731ZM58.9299 8.50729C60.492 7.77673 61.9954 7.41145 63.4401 7.41145C64.7602 7.41145 65.7466 7.71648 66.3993 8.32653C67.0593 8.92906 67.3857 9.79896 67.3783 10.9362L67.3233 15.6359C67.3087 16.0201 67.316 16.3288 67.3453 16.5623C67.3746 16.7958 67.4407 16.9766 67.5433 17.1046C67.6533 17.2251 67.811 17.3117 68.0163 17.3644C68.229 17.4172 68.5334 17.4473 68.9294 17.4548L68.9954 17.9745C67.9687 18.336 67.085 18.5168 66.3443 18.5168C65.3469 18.5168 64.6905 18.1138 64.3752 17.308C63.4438 18.1138 62.4574 18.5168 61.416 18.5168C60.3966 18.5168 59.5569 18.2569 58.8969 17.7373C58.2369 17.21 57.9069 16.4719 57.9069 15.523C57.9069 14.3405 58.4385 13.4744 59.5019 12.9246C60.5727 12.3748 62.1751 12.0999 64.3092 12.0999L64.3202 11.2526C64.3275 10.4467 64.1368 9.85545 63.7481 9.47887C63.3668 9.09476 62.7691 8.9027 61.9551 8.9027C61.1997 8.9027 60.294 9.07216 59.2379 9.41108L58.9299 8.50729Z" fill="#134D92"/>
|
||||
<path d="M69.9194 8.23616C71.6135 7.98008 73.1609 7.69388 74.5617 7.37755L74.7267 7.46793V8.68805C76.0247 7.83698 77.3815 7.41145 78.7969 7.41145L78.8519 7.49053C78.6172 8.68805 78.3935 9.96842 78.1808 11.3316L77.5428 11.4446C77.3521 10.699 77.1651 10.1266 76.9818 9.72741C76.7984 9.32824 76.5124 9.12865 76.1237 9.12865C75.7497 9.12865 75.284 9.25669 74.7267 9.51276V14.3593C74.7267 15.5267 74.734 16.3627 74.7487 16.8674C74.756 17.0782 74.8477 17.21 75.0237 17.2628L76.5968 17.6921L76.6298 18.2343C75.4124 18.2117 74.25 18.2004 73.1426 18.2004C72.0865 18.2004 71.0305 18.2117 69.9744 18.2343L69.9194 17.6921L71.3165 17.2967C71.4925 17.2439 71.5842 17.131 71.5915 16.9577C71.5989 16.6339 71.6025 16.1707 71.6025 15.5682V11.7948C71.6025 10.5672 71.5879 9.67469 71.5585 9.11735L69.9854 8.69935L69.9194 8.23616Z" fill="#134D92"/>
|
||||
<path d="M84.1761 9.04957C84.1321 11.3994 84.1101 13.3915 84.1101 15.0259C84.1101 15.7866 84.2238 16.3138 84.4512 16.6075C84.6785 16.8937 85.1149 17.0368 85.7602 17.0368C86.2589 17.0368 86.8016 17.0067 87.3883 16.9464L87.4763 17.6243C86.3103 18.2117 85.2212 18.5055 84.2091 18.5055C83.1824 18.5055 82.3867 18.2871 81.822 17.8502C81.2647 17.4059 80.986 16.7393 80.986 15.8506C80.986 14.284 81.008 11.9982 81.052 8.99308L79.5669 8.59767L79.4679 7.98761L81.305 7.81815L82.3501 5.16327C82.9734 5.05029 83.5418 4.94109 84.0551 4.83564L84.2091 4.91472C84.1871 5.82605 84.1761 6.79386 84.1761 7.81815H87.2563V9.04957H84.1761Z" fill="#134D92"/>
|
||||
<path d="M94.9567 13.1731C93.8053 13.1731 92.9839 13.3237 92.4926 13.625C92.0012 13.9263 91.7555 14.4422 91.7555 15.1727C91.7555 15.8355 91.9279 16.31 92.2725 16.5962C92.6246 16.8749 93.0389 17.0142 93.5156 17.0142C94.0583 17.0142 94.5313 16.8711 94.9347 16.5849L94.9567 13.1731ZM89.5774 8.50729C91.1395 7.77673 92.6429 7.41145 94.0876 7.41145C95.4077 7.41145 96.3941 7.71648 97.0468 8.32653C97.7068 8.92906 98.0332 9.79896 98.0258 10.9362L97.9708 15.6359C97.9562 16.0201 97.9635 16.3288 97.9928 16.5623C98.0222 16.7958 98.0882 16.9766 98.1908 17.1046C98.3008 17.2251 98.4585 17.3117 98.6639 17.3644C98.8765 17.4172 99.1809 17.4473 99.5769 17.4548L99.6429 17.9745C98.6162 18.336 97.7325 18.5168 96.9918 18.5168C95.9944 18.5168 95.338 18.1138 95.0227 17.308C94.0913 18.1138 93.1049 18.5168 92.0635 18.5168C91.0442 18.5168 90.2044 18.2569 89.5444 17.7373C88.8844 17.21 88.5544 16.4719 88.5544 15.523C88.5544 14.3405 89.0861 13.4744 90.1494 12.9246C91.2202 12.3748 92.8226 12.0999 94.9567 12.0999L94.9677 11.2526C94.975 10.4467 94.7843 9.85545 94.3956 9.47887C94.0143 9.09476 93.4166 8.9027 92.6026 8.9027C91.8472 8.9027 90.9415 9.07216 89.8854 9.41108L89.5774 8.50729Z" fill="#134D92"/>
|
||||
<path d="M102.473 19.0465C102.55 19.0465 102.618 19.023 102.676 18.9761C102.733 18.9293 102.765 18.8707 102.772 18.8004H102.977C102.973 18.873 102.948 18.9422 102.902 19.0078C102.856 19.0734 102.794 19.1258 102.717 19.1648C102.64 19.2039 102.559 19.2234 102.473 19.2234C102.3 19.2234 102.163 19.166 102.06 19.0511C101.959 18.9355 101.908 18.7777 101.908 18.5777V18.5414C101.908 18.4179 101.931 18.3082 101.976 18.2121C102.021 18.116 102.086 18.0414 102.17 17.9883C102.256 17.9351 102.356 17.9086 102.472 17.9086C102.614 17.9086 102.732 17.9511 102.826 18.0363C102.92 18.1215 102.97 18.232 102.977 18.3679H102.772C102.765 18.2859 102.734 18.2187 102.678 18.1664C102.622 18.1133 102.554 18.0867 102.472 18.0867C102.362 18.0867 102.276 18.1265 102.215 18.2062C102.155 18.2851 102.125 18.3996 102.125 18.5496V18.5906C102.125 18.7367 102.155 18.8492 102.215 18.9281C102.275 19.007 102.361 19.0465 102.473 19.0465Z" fill="#134D92"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M104 18.5C104 19.3284 103.328 20 102.5 20C101.672 20 101 19.3284 101 18.5C101 17.6716 101.672 17 102.5 17C103.328 17 104 17.6716 104 18.5ZM103.818 18.5C103.818 19.228 103.228 19.8182 102.5 19.8182C101.772 19.8182 101.182 19.228 101.182 18.5C101.182 17.772 101.772 17.1818 102.5 17.1818C103.228 17.1818 103.818 17.772 103.818 18.5Z" fill="#134D92"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.778 8.57423C117.941 6.63517 118.943 4.24131 122.119 7.26513C123.032 8.13422 123.854 8.95591 124.755 9.84203C125.427 10.5027 126.795 11.5026 126.739 13.0306C126.686 14.4674 125.415 15.634 123.862 15.496C122.13 15.342 121.617 13.8785 122.607 13.7059C123.155 13.6104 123.125 13.885 123.505 14.0784C125.152 14.9152 126.188 12.4334 124.772 11.7795C123.55 11.2159 122.823 12.3682 121.664 13.4973C119.81 15.3023 117.539 18.4205 115.315 16.3085L110.158 11.1656C108.847 9.46084 110.416 6.63983 112.901 7.18847C113.676 7.35979 114.019 7.79272 114.431 8.19786C115.339 9.09267 116.156 9.87337 117.059 10.7805C117.51 11.2339 117.902 11.5781 118.358 12.0289C118.77 12.4353 119.446 12.8229 118.831 13.5582C117.936 13.8278 117.816 13.023 116.891 13.1241C116.251 13.1939 115.757 13.7709 115.76 14.4107C115.762 15.0244 116.61 16.6887 118.419 14.8951L122.047 11.3457C122.245 11.1653 122.421 10.974 122.667 10.803C122.875 10.6581 123.151 10.5789 123.364 10.3777C123.03 9.87192 120.719 7.59104 120.289 7.34629C118.821 6.51175 117.488 8.93726 116.657 9.4234L115.778 8.57455L115.778 8.57423ZM110.377 5.71176C110.781 4.66653 112.414 3.37639 113.612 2.76041C118.447 0.274951 123.972 2.0509 126.265 5.97017C123.105 2.89267 118.084 1.45742 113.763 3.48198C113.093 3.79583 112.518 4.11065 111.969 4.47079C111.328 4.89055 110.966 5.32269 110.377 5.71176ZM129.341 12.4519C130.248 6.03976 125.28 0.748869 119.611 0.0840334C112.935 -0.699081 107.8 4.10776 107.093 9.64437C106.267 16.1155 111.058 21.3802 116.821 22.0609C122.923 22.7817 128.46 18.6803 129.341 12.4519Z" fill="#134D92"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.547 13.6916C114.06 13.4031 112.789 12.0073 112.261 11.4998C111.772 11.0292 110.256 9.93176 111.341 8.80635C112.484 7.62099 113.619 9.16681 114.117 9.66129C114.686 10.2258 115.946 11.3008 116.301 11.8753C115.364 12.4529 114.942 12.5164 114.548 13.6914L114.547 13.6916ZM115.777 8.57413L116.656 9.42297C117.487 8.93684 118.82 6.51148 120.288 7.34586C120.719 7.59061 123.03 9.87166 123.363 10.3772C123.151 10.5784 122.875 10.6578 122.666 10.8026C122.42 10.9736 122.244 11.1648 122.046 11.3453L118.418 14.8946C116.609 16.6883 115.761 15.024 115.759 14.4103C115.756 13.7705 116.251 13.1934 116.89 13.1237C117.815 13.0228 117.935 13.8274 118.83 13.5577C119.446 12.8225 118.769 12.4351 118.358 12.0285C117.902 11.5777 117.509 11.2335 117.058 10.7801C116.156 9.87294 115.339 9.09224 114.43 8.19743C114.019 7.79214 113.676 7.3592 112.9 7.18805C110.416 6.6394 108.846 9.46041 110.158 11.1652L115.314 16.308C117.538 18.4202 119.81 15.3019 121.663 13.4968C122.822 12.3679 123.55 11.2156 124.771 11.7791C126.188 12.4328 125.151 14.9147 123.504 14.0779C123.124 13.8848 123.154 13.61 122.606 13.7054C121.616 13.8782 122.13 15.3416 123.861 15.4955C125.414 15.6336 126.686 14.467 126.739 13.0301C126.795 11.502 125.427 10.5023 124.755 9.84161C123.853 8.95548 123.032 8.1338 122.119 7.2647C118.943 4.24088 117.941 6.63474 115.777 8.5738L115.777 8.57413Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.547 13.6916C114.942 12.5167 115.364 12.4532 116.3 11.8755C115.945 11.3008 114.685 10.2259 114.117 9.66146C113.619 9.16697 112.484 7.62115 111.341 8.80651C110.256 9.93176 111.772 11.0294 112.261 11.4999C112.788 12.0073 114.059 13.4033 114.547 13.6918L114.547 13.6916Z" fill="#134D92"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.377 5.71159C110.965 5.32268 111.328 4.89038 111.969 4.47062C112.518 4.11048 113.092 3.79566 113.762 3.48181C118.084 1.45725 123.104 2.89234 126.264 5.97C123.971 2.05073 118.447 0.274782 113.611 2.76024C112.413 3.37606 110.781 4.66636 110.377 5.71159Z" fill="#85A3C7"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 13 KiB |
0
htdocs/wp-config-local-sample.php → wordpress/wp-config-local-sample.php
Executable file → Normal file
0
htdocs/wp-config.php → wordpress/wp-config.php
Executable file → Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Disable "BIG image" Threshold
|
||||
Description: Disable the big image threshold in WordPress.
|
||||
Author: LawCarta Team
|
||||
Text Domain: disable-image-threshold
|
||||
Version: 1.0
|
||||
*/
|
||||
add_filter('big_image_size_threshold', '__return_false');
|
||||
@@ -1,11 +1,11 @@
|
||||
:root {
|
||||
--color-main-text: #333;
|
||||
--color-main-text: #121212;
|
||||
--color-main-ui: #333;
|
||||
--main-color: #124C95;
|
||||
--main-color: #0583EB;
|
||||
--main-gray: #757575;
|
||||
--second-gray: #4F4F4F;
|
||||
--input-border: #0055D6;
|
||||
--color-link: #0055D6;
|
||||
--input-border: #0583EB;
|
||||
--color-link: #0583EB;
|
||||
--mp-bg: #F5F7FA;
|
||||
--banner-bg: #eef3fb;
|
||||
--forms-border: #D6D6D6;
|
||||
@@ -13,29 +13,33 @@
|
||||
--info-color: #F3F6FA;
|
||||
--info-icon-color: #5889ca;
|
||||
--error: #d63b00;
|
||||
--correct: #26C351;
|
||||
--alert: #FF8A00;
|
||||
--alert-bg: #FEF0DF;
|
||||
--success: #008524;
|
||||
--success-bg: #EEFFF6;
|
||||
--btn-disabled: #C6C6C6;
|
||||
--btn-action-bg: #0055D6;
|
||||
--btn-action-color: #fff;
|
||||
--btn-action-hover-bg: #124C95;
|
||||
--btn-action-hover-color: #fff;
|
||||
--btn-secondary-bg: #EDF6FF;
|
||||
--btn-secondary-border: #0055D6;
|
||||
--btn-secondary-color: #0055D6;
|
||||
--btn-secondary-hover-bg: #C6DEF6;
|
||||
--btn-secondary-hover-border: #0055D6;
|
||||
--btn-secondary-hover-color: #0055D6;
|
||||
--btn-action-bg: #0583EB;
|
||||
--btn-action-border: #0583EB;
|
||||
--btn-action-color: #ffffff;
|
||||
--btn-action-hover-bg: #0B4E96;
|
||||
--btn-action-hover-color: #ffffff;
|
||||
--btn-secondary-bg: #ffffff;
|
||||
--btn-secondary-border: #0583EB;
|
||||
--btn-secondary-color: #121212;
|
||||
--btn-secondary-hover-bg: #0B4E96;
|
||||
--btn-secondary-hover-border: #0B4E96;
|
||||
--btn-secondary-hover-color: #FFFFFF;
|
||||
--btn-borderless-bg: #EDF6FF;
|
||||
--btn-borderless-color: #0055D6;
|
||||
--btn-borderless-color: #0583EB;
|
||||
--btn-borderless-hover-bg: #d4e9ff;
|
||||
--btn-borderless-hover-color: #0055D6;
|
||||
--btn-borderless-hover-color: #0583EB;
|
||||
--btn-tag-bg: #F1F3F8;
|
||||
--btn-tag-hover-bg: #DEE3EE;
|
||||
--status-bg: #E7F2F5;
|
||||
--status-text: #025169;
|
||||
--status-draft-bg: #F2EEEA;
|
||||
--status-draft-text: #674422;
|
||||
--status-blacklisted-bg: #E4E4E4;
|
||||
--status-blacklisted-text: #454545;
|
||||
--status-published-bg: #E7F5EE;
|
||||
@@ -53,5 +57,6 @@
|
||||
--label-publication: #14798C;
|
||||
--label-document: #004B8D;
|
||||
--label-bundle: #1C3362;
|
||||
--label-flashcard: #4C6189;
|
||||
--label-date: #D7E2FF;
|
||||
}
|
||||
1
wordpress/wp-content/themes/lawcarta/assets/css/styles-main-page.min.css
vendored
Normal file
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
@@ -7,7 +7,6 @@
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " horiz-adv-x="512" d="" />
|
||||
<glyph unicode="" glyph-name="menu" d="M128 704h768v-86h-768v86zM128 406v84h768v-84h-768zM128 192v86h768v-86h-768z" />
|
||||
<glyph unicode="" glyph-name="account-settings" horiz-adv-x="1079" d="M622.703 399.568h69.189c20.757 27.676 34.595 62.27 41.514 96.865l-48.432 48.432c0 13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432l48.432 48.432c-6.919 34.595-20.757 69.189-41.514 96.865h-69.189c-20.757 20.757-41.514 48.432-62.27 62.27v69.189c-27.676 20.757-62.27 34.595-96.865 41.514l-48.432-48.432c-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432 0l-48.432 48.432c-34.595-6.919-69.189-20.757-96.865-41.514v-69.189c-20.757-20.757-48.432-41.514-62.27-62.27h-69.189c-20.757-27.676-34.595-62.27-41.514-96.865l48.432-48.432c0-13.838 0-27.676 0-48.432 0-13.838 0-27.676 0-48.432l-48.432-48.432c6.919-34.595 20.757-69.189 41.514-96.865h69.189c20.757-20.757 41.514-48.432 62.27-62.27v-69.189c27.676-20.757 62.27-34.595 96.865-41.514l48.432 48.432c13.838 0 27.676 0 48.432 0 13.838 0 27.676 0 48.432 0l48.432-48.432c34.595 6.919 69.189 20.757 96.865 41.514v69.189c27.676 13.838 48.432 34.595 62.27 62.27zM373.622 482.595c-55.351 0-103.784 48.432-103.784 103.784s48.432 103.784 103.784 103.784c55.351 0 103.784-48.432 103.784-103.784 0-62.27-48.432-103.784-103.784-103.784zM1037.838 143.568l41.514 20.757c0 20.757 0 48.432-6.919 69.189l-41.514 6.919c-6.919 6.919-6.919 20.757-13.838 27.676s-13.838 13.838-13.838 27.676l13.838 41.514c-13.838 20.757-34.595 34.595-55.351 41.514l-34.595-27.676c-20.757 6.919-34.595 13.838-55.351 13.838l-20.757 41.514c-20.757 0-48.432 0-69.189-6.919l-6.919-41.514c-6.919-6.919-20.757-6.919-27.676-13.838s-13.838-13.838-27.676-13.838l-41.514 13.838c-20.757-13.838-34.595-34.595-41.514-55.351l27.676-34.595c-6.919-20.757-13.838-34.595-13.838-55.351l-41.514-20.757c0-20.757 0-48.432 6.919-69.189l41.514-6.919c6.919-6.919 6.919-20.757 13.838-27.676s13.838-13.838 13.838-27.676l-13.838-41.514c13.838-20.757 34.595-34.595 55.351-41.514l34.595 27.676c20.757-6.919 41.514-13.838 55.351-13.838l20.757-41.514c20.757 0 48.432 0 69.189 6.919l6.919 41.514c6.919 6.919 20.757 6.919 27.676 13.838s13.838 13.838 27.676 13.838l41.514-13.838c20.757 13.838 34.595 34.595 41.514 55.351l-27.676 34.595c6.919 13.838 13.838 34.595 13.838 55.351zM864.865 102.054c-34.595-20.757-76.108-6.919-96.865 27.676s-6.919 76.108 27.676 96.865c34.595 20.757 76.108 6.919 96.865-27.676s6.919-76.108-27.676-96.865z" />
|
||||
<glyph unicode="" glyph-name="close" d="M512 553.412l-384 384c-30.118 30.118-75.294 30.118-105.412 0s-30.118-75.294 0-105.412l384-384-384-384c-30.118-30.118-30.118-75.294 0-105.412s75.294-30.118 105.412 0l384 384 384-384c30.118-30.118 75.294-30.118 105.412 0 15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706l-384 384 384 384c15.059 15.059 22.588 37.647 22.588 52.706 0 22.588-7.529 37.647-22.588 52.706-30.118 30.118-75.294 30.118-105.412 0l-384-384z" />
|
||||
<glyph unicode="" glyph-name="warning" d="M1010.432 121.248l-383.968 768c-21.664 43.36-65.952 70.752-114.464 70.752s-92.8-27.392-114.464-70.752l-383.968-768c-19.84-39.68-17.728-86.816 5.6-124.576 23.328-37.696 64.512-60.672 108.864-60.672h767.904c44.384 0 85.568 22.976 108.864 60.672 23.328 37.76 25.44 84.896 5.632 124.576zM575.936 96c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v64c0 17.696 14.304 32 32 32h64c17.696 0 32-14.304 32-32v-64zM575.936 352c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v320c0 17.664 14.304 32 32 32h64c17.696 0 32-14.336 32-32v-320z" />
|
||||
@@ -93,6 +92,12 @@
|
||||
<glyph unicode="" glyph-name="lock" horiz-adv-x="751" d="M71.68 661.76c0 164.48 133.76 298.24 298.114 298.24h0.256c164.478 0 298.24-133.76 298.24-298.24v-116.61c42.496-17.79 72.448-59.774 72.448-108.67v-382.594c0-65.024-52.866-117.886-117.89-117.886h-504.96c-65.024 0-117.888 52.862-117.888 117.886v382.594c0 48.64 29.568 90.498 71.68 108.414v116.866zM369.794 908.8c-136.066 0-246.914-110.848-246.914-247.040h-0.256v-107.52h74.368v107.52c0 95.36 77.312 172.8 172.672 172.8 95.362 0 172.8-77.568 172.8-172.8v-107.52h74.366v107.52c0 136.192-110.974 247.040-247.037 247.040zM491.394 554.24v107.52h0.126c0 67.072-54.654 121.6-121.6 121.6-66.944 0-121.472-54.528-121.472-121.6v-107.52h242.946zM689.282 53.886v382.594h0.126c0 36.864-29.952 66.69-66.686 66.69h-504.962c-36.864 0-66.688-29.955-66.688-66.69v-382.594c0-36.864 29.952-66.686 66.688-66.686h504.832c36.864 0 66.69 29.952 66.69 66.686zM450.56 392.318c25.474-22.784 40.066-55.552 40.066-89.726 0-38.147-17.794-73.346-47.872-96.13l15.104-85.89c2.56-14.718-1.536-29.822-11.138-41.342-9.598-11.39-23.808-18.050-38.782-18.050h-75.392c-14.976 0-29.184 6.53-38.784 18.050-9.728 11.52-13.696 26.494-11.136 41.342l15.104 85.89c-35.328 26.494-53.12 69.506-46.592 114.046 7.68 53.122 52.096 95.874 105.471 101.762 34.304 3.714 68.482-7.168 93.952-29.952zM390.786 206.336c-2.69 14.848 3.966 29.822 16.896 38.141h-0.13c19.842 12.8 31.744 34.56 31.744 58.115 0 19.709-8.318 38.4-23.040 51.582-12.8 11.52-28.928 17.664-46.080 17.664-2.686 0-5.376-0.13-8.062-0.382-30.592-3.458-55.936-27.904-60.416-58.242-3.968-27.518 7.936-53.76 30.976-68.738 12.8-8.318 19.456-23.293 16.896-38.141l-16.64-94.594 74.879 0.512-17.022 94.082z" />
|
||||
<glyph unicode="" glyph-name="true-false" d="M369.502 940.113c-11.533-3.126-16.977-9.054-114.634-125.359-43.71-52.589-76.783-91.4-110.192-129.91l9.032 10.641c-2.010 1.811-3.699 3.929-5.003 6.289l-0.063 0.124c-26.416 40.641-38.667 58.678-51.009 76.647l13.821-21.297c-37.996 56.158-38.643 56.805-57.667 56.805-10.24 0-12.989-0.647-18.917-4.689-11.965-8.138-18.324-24.414-14.713-37.565 1.994-7.276 126.491-192.674 128.539-191.38 3.072 1.886 256.862 305.152 259.557 310.164 1.886 4.287 2.984 9.285 2.984 14.54 0 0.421-0.007 0.841-0.021 1.259l0.002-0.061c0.081 0.784 0.128 1.694 0.128 2.614 0 5.808-1.845 11.184-4.98 15.576l0.055-0.082c-2.985 4.522-6.639 8.331-10.868 11.393l-0.126 0.087c-5.699 2.944-12.438 4.67-19.581 4.67-2.238 0-4.437-0.169-6.583-0.496l0.241 0.030zM853.208 889.398c-3.721-1.35-6.921-2.931-9.913-4.813l0.212 0.124c-5.713-3.988-764.766-813.918-769.832-821.464-3.719-5.443-4.527-8.569-4.473-17.031 0.162-19.779 12.072-33.199 30.774-34.762 19.672-1.671-13.096-34.87 405.827 411.971 209.92 223.879 383.569 409.6 385.94 412.672 4.032 5.968 6.437 13.324 6.437 21.241 0 2.9-0.323 5.725-0.934 8.441l0.048-0.256c-1.343 6.111-4.542 11.327-8.966 15.169l-0.034 0.029c-10.348 10.348-22.205 13.312-35.085 8.677zM689.475 337.57c-8.064-3.563-14.629-9.279-19.137-16.423l-0.104-0.176c-5.443-10.402-5.174-25.6 0.701-34.385 2.425-3.665 27.971-32.822 56.697-64.728s52.062-58.53 51.847-59.176c-0.216-0.647-24.522-28.025-54.003-60.847-29.534-32.876-54.811-61.925-56.266-64.566-4.204-7.761-3.503-23.929 1.401-32.552 6.090-10.725 14.821-16.007 27.81-16.977 8.893-0.647 11.911-0.108 17.893 3.18 4.851 2.695 23.714 22.42 58.422 61.117 28.241 31.475 51.901 57.182 52.655 57.182s24.576-25.869 52.979-57.506c55.242-61.494 58.745-64.512 73.836-64.512 11.284 0.578 21.201 5.975 27.807 14.156l0.057 0.073c4.473 5.659 5.282 8.138 5.767 18.755 0.539 11.21 0.162 12.881-4.473 19.941-2.803 4.204-28.187 33.361-56.482 64.728-15.799 17.179-32.578 36.144-49.002 55.422l-2.359 2.838c0 0.593 23.121 26.786 51.362 58.099s53.625 60.416 56.428 64.674c4.689 7.006 5.066 8.677 4.527 19.887-0.485 10.617-1.293 13.15-5.767 18.809-6.607 8.516-16.844 13.945-28.348 13.945-5.145 0-10.036-1.086-14.458-3.041l0.229 0.090c-5.228-2.371-19.51-17.246-58.907-61.278-28.618-31.96-52.547-57.991-53.194-57.829-0.701 0.162-24.253 26.031-52.44 57.452-35.409 39.451-53.464 58.368-58.368 61.009-5.112 2.384-11.099 3.775-17.411 3.775-3.441 0-6.785-0.413-9.986-1.193l0.288 0.059z" />
|
||||
<glyph unicode="" glyph-name="single-choice" horiz-adv-x="1293" d="M348.861 806.885c-32.467-4.476-61.347-17.178-85.27-35.916l0.386 0.291c-30.656-23.927-52.908-57.357-62.377-95.816l-0.249-1.195c-4.797-19.779-4.797-59.338-0.108-80.357 11.533-51.308 50.823-98.627 100.083-120.401 48.128-21.288 109.999-17.246 156.187 10.24 18.594 11.048 45.379 36.918 57.182 55.296 31.475 48.829 36.002 115.604 11.48 168.044-13.59 27.56-32.584 50.555-55.759 68.381l-0.453 0.335c-30.774 22.959-84.561 36.756-121.101 31.097zM397.635 734.666c48.397-12.611 82.405-64.943 74.914-115.281-9.162-61.925-69.309-102.669-128.647-87.256-44.84 11.695-78.74 55.242-78.74 101.268 0 43.978 31.259 87.094 72.758 100.352 15.522 4.958 42.631 5.389 59.715 0.916zM355.005 677.699c-26.516-8.569-39.020-42.792-24.576-67.422 7.549-13.269 21.594-22.072 37.695-22.072 0.561 0 1.119 0.011 1.674 0.032l-0.080-0.002c0.353-0.009 0.768-0.015 1.184-0.015 6.61 0 12.909 1.333 18.643 3.744l-0.317-0.118c17.408 9.27 28.564 29.965 25.869 47.912-2.831 13.822-10.578 25.476-21.296 33.307l-0.154 0.107c-8.785 5.389-28.618 7.707-38.643 4.527zM681.984 666.597c-8.677-2.479-19.348-14.605-22.205-25.223-0.589-2.375-0.927-5.101-0.927-7.907 0-12.365 6.568-23.197 16.406-29.195l0.151-0.085c6.683-4.042 12.396-4.204 201.566-4.204 162.978 0 195.638 0.485 200.488 3.018 27.648 14.39 23.983 55.512-5.659 63.757-10.078 2.803-380.12 2.641-389.821-0.162zM327.68 337.031c-66.888-18.465-117.186-73.581-128.347-141.854l-0.138-1.021c-1.417-8.216-2.227-17.678-2.227-27.329 0-27.205 6.436-52.906 17.868-75.665l-0.442 0.972c29.858-61.332 88.064-98.142 155.325-98.142 79.495 0 146.432 52.278 167.235 130.641 6.306 23.66 6.413 62.195 0.216 85.369-15.683 59.015-59.284 105.741-115.712 124.066-24.199 7.869-69.74 9.27-93.777 2.964zM399.306 268.045c28.51-8.839 50.23-27.702 63.488-55.296 19.995-41.553 12.126-86.932-20.696-119.377-21.181-20.965-43.116-30.127-72.435-30.181-30.882 0-56.104 11.372-77.501 35.032-59.715 65.967-12.342 173.325 76.8 173.972 0.344 0.004 0.75 0.006 1.156 0.006 10.4 0 20.445-1.518 29.927-4.346l-0.74 0.189zM682.307 200.084c-13.684-4.628-23.359-17.353-23.359-32.336 0-14.114 8.585-26.224 20.818-31.391l0.224-0.084c8.354-3.773 18.432-3.988 196.339-4.042 122.179 0 190.356 0.755 195.53 2.21 16.384 4.527 27.379 22.905 24.145 40.367-1.94 10.348-14.336 22.959-25.708 26.085-5.982 1.671-65.051 2.371-193.967 2.317-154.139-0.054-186.853-0.593-194.021-3.126z" />
|
||||
<glyph unicode="" glyph-name="star-circle" d="M477.878 958.91c-150.33-11.198-284.342-83.869-374.949-203.281-51.795-68.245-84.001-146.168-98.271-237.634-5.219-33.462-5.219-106.529 0-139.991 21.9-140.453 89.782-255.67 199.845-339.175 67.98-51.563 146.3-83.968 237.502-98.172 33.462-5.219 106.529-5.219 139.991 0 124.433 19.39 230.202 75.479 309.545 164.17 70.359 78.617 111.021 165.525 127.802 273.177 5.219 33.462 5.219 106.529 0 139.991-14.204 91.202-46.609 169.522-98.172 237.502-84.662 111.583-205.659 181.81-345.154 200.275-19.985 2.643-79.377 4.558-98.139 3.138zM553.323 891.689c91.342-8.831 173.147-43.834 239.414-97.32l-0.855 0.668c18.63-14.798 52.356-48.524 67.155-67.155 37.558-47.203 67.089-104.547 82.151-159.546 34.585-126.117 13.477-259.799-57.773-366.526-43.267-64.587-101.094-116.236-168.983-151.039l-2.521-1.174c-63.686-31.942-127.571-46.939-199.911-46.939-100.187 0-189.176 29.993-270.501 91.136-23.023 17.276-59.26 52.455-76.569 74.323-90.773 114.457-120.535 259.964-82.019 400.582 14.931 54.503 44.99 112.838 81.986 159.182 14.865 18.63 48.59 52.356 67.221 67.221 67.683 54.041 151.552 88.328 236.115 96.52 12.871 0.976 27.877 1.532 43.014 1.532 14.806 0 29.488-0.532 44.027-1.579l-1.95 0.113zM502.189 705.288c-2.973-3.204-3.865-7.465-5.384-25.369-3.865-45.948-15.030-78.914-38.714-114.523-40.354-60.031-106.274-100.196-181.802-104.845l-0.668-0.033c-17.474-1.057-19.060-1.453-23.453-5.847-5.781-5.781-6.012-11.793-0.694-17.97 3.733-4.36 5.186-4.724 22.594-5.88 45.155-2.973 81.292-14.765 116.439-38.020 65.272-43.14 101.145-106.067 107.091-187.821 1.255-17.441 4.856-23.222 14.402-23.222 9.579 0 13.147 5.781 14.402 23.222 4.955 69.467 32.074 125.952 80.764 168.233 40.233 34.948 86.578 53.71 141.907 57.509 18.498 1.288 19.687 1.586 23.618 6.177 5.12 5.946 4.261 13.51-2.213 19.192-3.501 3.105-6.408 3.865-14.732 3.865-16.913 0-45.353 4.955-65.239 11.396-39.005 12.591-72.223 33.903-98.637 61.734l-0.096 0.102c-39.804 41.819-61.11 91.433-65.272 152.047-1.321 19.192-4.195 23.882-14.501 23.882-0.231 0.015-0.501 0.024-0.773 0.024-3.55 0-6.755-1.478-9.033-3.851l-0.004-0.004z" />
|
||||
<glyph unicode="" glyph-name="doc" horiz-adv-x="768" d="M0 698.56v-261.44l3.872-14.496c7.36-27.36 16.736-44.96 35.008-65.664 5.216-5.888 90.048-91.104 188.512-189.376 136.032-135.776 181.312-180.192 188.608-185.12 17.856-12.032 34.24-18.976 55.584-23.552 10.88-2.304 18.432-2.432 152-2.432h140.576v1003.52h-764.16v-261.44zM704 458.208v-442.944l-220.8 0.736-8.96 3.008c-29.728 9.984-48.448 28.672-58.432 58.432l-3.008 8.96-0.352 140.416-0.352 140.448-275.776 0.8-10.24 2.848c-14.144 3.904-29.344 11.712-38.016 19.456-13.952 12.48-24.448 32.8-27.84 53.792-0.864 5.536-1.312 83.2-1.344 232.64v224.32h645.12v-442.912zM176.928 753.6l0.352-28.48 410.24-0.64v57.6h-410.944l0.352-28.48zM176.64 636.8v-28.8h410.88v57.6h-410.88v-28.8zM176.64 519.040v-28.8h410.88v57.6h-410.88v-28.8zM352 219.52c0-48.928-0.16-88.96-0.32-88.96-0.192 0-40.352 40.032-89.28 88.96l-88.96 88.96h178.56v-88.96z" />
|
||||
<glyph unicode="" glyph-name="new-info" d="M477.878 958.91c-150.33-11.198-284.342-83.869-374.949-203.281-51.795-68.245-84.001-146.168-98.271-237.634-5.219-33.462-5.219-106.529 0-139.991 21.9-140.453 89.782-255.67 199.845-339.175 67.98-51.563 146.3-83.968 237.502-98.172 33.462-5.219 106.529-5.219 139.991 0 124.433 19.39 230.202 75.479 309.545 164.17 70.359 78.617 111.021 165.525 127.802 273.177 5.219 33.462 5.219 106.529 0 139.991-14.204 91.202-46.609 169.522-98.172 237.502-84.662 111.583-205.659 181.81-345.154 200.275-19.985 2.643-79.377 4.558-98.139 3.138zM553.323 891.689c91.342-8.831 173.147-43.834 239.414-97.32l-0.855 0.668c18.63-14.798 52.356-48.524 67.155-67.155 37.558-47.203 67.089-104.547 82.151-159.546 34.585-126.117 13.477-259.799-57.773-366.526-43.267-64.587-101.094-116.236-168.983-151.039l-2.521-1.174c-63.686-31.942-127.571-46.939-199.911-46.939-100.187 0-189.176 29.993-270.501 91.136-23.023 17.276-59.26 52.455-76.569 74.323-90.773 114.457-120.535 259.964-82.019 400.582 14.931 54.503 44.99 112.838 81.986 159.182 14.865 18.63 48.59 52.356 67.221 67.221 67.683 54.041 151.552 88.328 236.115 96.52 12.871 0.976 27.877 1.532 43.014 1.532 14.806 0 29.488-0.532 44.027-1.579l-1.95 0.113zM487.49 723.786c-12.982-5.45-24.444-15.195-31.447-26.756-7.465-12.354-9.612-20.414-9.513-35.708 0.132-18.894 5.087-30.357 19.225-44.527 14.765-14.732 25.666-19.291 46.245-19.291 19.093 0 30.654 4.459 44.362 17.177 17.144 15.855 24.576 36.864 20.645 58.302-3.835 22.091-18.023 40.206-37.285 49.407l-0.405 0.174c-7.697 3.667-12.321 4.525-25.6 4.922-14.039 0.429-17.573-0.066-26.228-3.7zM445.44 392.539v-159.579h133.12v319.158h-133.12v-159.579z" />
|
||||
<glyph unicode="" glyph-name="right-arrow" horiz-adv-x="1112" d="M559.514 957.484c-15.243-3.277-30.31-11.703-44.442-24.781-20.539-19.017-31.685-39.409-34.289-62.786-1.463-13.166 2.048-29.755 9.918-47.045 11.791-25.893 24.839-39.965 136.221-147.134 35.933-34.421 67.601-65.127 99.094-96.010l-1.873 1.831 9.86-10.094-4.184-8.631-4.213-8.631h-725.606v-200.119h727.742l3.95-9.157c2.165-5.003 3.92-9.538 3.92-10.035s-36.484-35.46-81.042-77.678c-130.984-124.080-149.036-142.921-161.792-168.989-18.11-36.952-16.443-65.126 5.53-93.886 35.343-46.256 78.058-57.637 127.415-33.88 11.761 5.647 19.222 12.083 63.020 54.36 98.099 94.764 360.945 359.892 373.058 376.335 36.337 49.269 34.055 85.489-8.602 137.099-16.706 20.246-338.622 342.894-384.059 384.936-21.738 20.158-28.731 25.424-43.184 32.709-17.057 8.572-37.040 14.16-49.679 13.926-3.569-0.088-11.118-1.141-16.764-2.341z" />
|
||||
<glyph unicode="" glyph-name="download-new" horiz-adv-x="1100" d="M472.936 716.553v-243.484l-6.258-2.996-6.296-2.996-53.096 56.282c-99.025 104.979-110.478 114.195-141.881 114.309-16.232 0.038-29.241-5.879-42.818-19.418-16.953-16.953-23.817-37.888-19.115-58.103 5.613-24.159 3.831-22.149 146.508-165.319 73.159-73.425 137.975-137.444 144.043-142.298 18.887-15.095 28.786-19.266 45.928-19.304 13.122-0.038 16.081 0.645 26.814 6.068 7.396 3.793 20.025 13.312 32.882 24.879 32.768 29.468 256.076 255.924 264.002 267.719 9.595 14.298 15.208 33.071 13.805 46.421-2.238 21.921-18.508 43.729-40.695 54.575-8.154 3.982-12.402 4.855-24.045 4.779-12.553-0.038-15.663-0.796-27.989-6.903-16.081-7.964-29.81-20.708-90.567-84.12-23.969-25.062-42.557-44.37-61.193-63.631l4.19 4.352-18.394-18.925-5.992 2.882-6.030 2.844v485.831h-133.803v-243.447zM0 161.811c0-129.972 0.721-145.143 7.661-163.726 6.865-18.318 17.636-26.927 41.339-32.996 11.643-2.996 42.249-3.186 492.658-3.186h480.294l12.933 4.058c15.132 4.741 26.093 12.136 33.83 22.793 11.112 15.36 11.188 16.156 12.288 131.679 0.569 57.989 0.417 119.239-0.341 136.116l-1.365 30.72h-131.375l-1.176-7.964c-0.503-4.333-0.789-9.354-0.789-14.441 0-2.177 0.053-4.343 0.156-6.494l-0.012 0.304c0.303-6.978 0.379-46.27 0.19-87.343l-0.417-74.714h-812.070v190.654h-133.803v-125.459z" />
|
||||
<glyph unicode="" glyph-name="menu" horiz-adv-x="1536" d="M0 896v-64h1536v128h-1536v-64zM0 448v-64h1536v128h-1536v-64zM0 0v-64h1536v128h-1536v-64z" />
|
||||
<glyph unicode="" glyph-name="caret" d="M192 832l640-384-640-384z" />
|
||||
<glyph unicode="" glyph-name="apple" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
|
||||
</font></defs></svg>
|
||||
|
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 130 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 228 KiB After Width: | Height: | Size: 228 KiB |
@@ -1,4 +1,4 @@
|
||||
<svg width="70" height="70" viewBox="0 0 70 70" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 1.64063C16.5761 1.64063 1.64063 16.5761 1.64063 35C1.64063 53.4239 16.5761 68.3594 35 68.3594C53.4239 68.3594 68.3594 53.4239 68.3594 35C68.3594 16.5761 53.4239 1.64063 35 1.64063ZM0 35C0 15.67 15.67 0 35 0C54.33 0 70 15.67 70 35C70 54.33 54.33 70 35 70C15.67 70 0 54.33 0 35Z" fill="white" fill-opacity="0.3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7713 23.0268C51.0916 23.3471 51.0916 23.8665 50.7713 24.1869L29.8837 45.0745C29.5633 45.3948 29.0439 45.3948 28.7236 45.0745L19.2292 35.5801C18.9089 35.2597 18.9089 34.7403 19.2292 34.42C19.5496 34.0996 20.069 34.0996 20.3893 34.42L29.3036 43.3343L49.6112 23.0268C49.9315 22.7064 50.4509 22.7064 50.7713 23.0268Z" fill="white" fill-opacity="0.3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 1.64063C16.5761 1.64063 1.64063 16.5761 1.64063 35C1.64063 53.4239 16.5761 68.3594 35 68.3594C53.4239 68.3594 68.3594 53.4239 68.3594 35C68.3594 16.5761 53.4239 1.64063 35 1.64063ZM0 35C0 15.67 15.67 0 35 0C54.33 0 70 15.67 70 35C70 54.33 54.33 70 35 70C15.67 70 0 54.33 0 35Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7713 23.0268C51.0916 23.3471 51.0916 23.8665 50.7713 24.1869L29.8837 45.0745C29.5633 45.3948 29.0439 45.3948 28.7236 45.0745L19.2292 35.5801C18.9089 35.2597 18.9089 34.7403 19.2292 34.42C19.5496 34.0996 20.069 34.0996 20.3893 34.42L29.3036 43.3343L49.6112 23.0268C49.9315 22.7064 50.4509 22.7064 50.7713 23.0268Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 869 B After Width: | Height: | Size: 831 B |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 775 KiB After Width: | Height: | Size: 775 KiB |
|
Before Width: | Height: | Size: 371 KiB After Width: | Height: | Size: 371 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |