Done
|
|
@ -12,7 +12,6 @@ class Handler extends ExceptionHandler
|
||||||
'current_password',
|
'current_password',
|
||||||
'password',
|
'password',
|
||||||
'password_confirmation',
|
'password_confirmation',
|
||||||
NotFoundException::class,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -25,6 +24,9 @@ public function register(): void
|
||||||
if($e instanceof NotFoundException){
|
if($e instanceof NotFoundException){
|
||||||
return $e->response();
|
return $e->response();
|
||||||
}
|
}
|
||||||
|
elseif ($e instanceof ServerErrorException) {
|
||||||
|
return $e->response();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,14 @@
|
||||||
|
|
||||||
class NotFoundException extends Exception {
|
class NotFoundException extends Exception {
|
||||||
// Custom message for the exception
|
// Custom message for the exception
|
||||||
public function __construct($message = "Not Found", $code = 404, Exception $previous = null) {
|
public function __construct($message = "Resource not found", $code = 404, Exception $previous = null) {
|
||||||
parent::__construct($message, $code, $previous);
|
parent::__construct($message, $code, $previous);
|
||||||
}
|
}
|
||||||
public function response(){
|
public function response(){
|
||||||
return response()->json([
|
return response()->json([
|
||||||
"message" => $this->message
|
"message" => $this->message,
|
||||||
]);
|
"success" => false
|
||||||
|
|
||||||
|
],$this->code);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
21
app/Exceptions/ServerErrorException.php
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Exceptions;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
|
|
||||||
|
class ServerErrorException extends Exception
|
||||||
|
{
|
||||||
|
public function __construct($message = "Internal Server Error", $code = 500, Exception $previous = null)
|
||||||
|
{
|
||||||
|
parent::__construct($message, $code, $previous);
|
||||||
|
}
|
||||||
|
public function response(): JsonResponse
|
||||||
|
{
|
||||||
|
return response()->json([
|
||||||
|
"message" => $this->message,
|
||||||
|
"success" => false
|
||||||
|
], $this->code);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -33,14 +33,6 @@ public function sendError($message, $status = 400)
|
||||||
], $status);
|
], $status);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function handeldata($data){
|
|
||||||
|
|
||||||
if(!$data){
|
|
||||||
return $this->sendError("error", 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->sendResponse("sucssefuly", ["data" => $data]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
20
app/Http/Controllers/Dashboard/HomeController.php
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Dashboard;
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Services\HomeService;
|
||||||
|
|
||||||
|
class HomeController extends Controller{
|
||||||
|
|
||||||
|
public function __construct(protected HomeService $service) {
|
||||||
|
|
||||||
|
}
|
||||||
|
public function index(){
|
||||||
|
|
||||||
|
$data = $this->service->getHomeStatics();
|
||||||
|
|
||||||
|
return $this->sendResponse(("get_data_successfully") ,$data);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -13,9 +13,9 @@ class ProjectController extends Controller
|
||||||
{
|
{
|
||||||
public function __construct(private ProjectService $service) {}
|
public function __construct(private ProjectService $service) {}
|
||||||
|
|
||||||
public function index()
|
public function index(Request $request)
|
||||||
{
|
{
|
||||||
$data = $this->service->getAll();
|
$data = $this->service->getallWithfillter($request);
|
||||||
$resource = ProjectResource::collection($data);
|
$resource = ProjectResource::collection($data);
|
||||||
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,12 @@ public function index()
|
||||||
$resource = ContactUsResource::collection($data);
|
$resource = ContactUsResource::collection($data);
|
||||||
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
||||||
|
|
||||||
|
}
|
||||||
|
public function create(AddContactUsRequest $request){
|
||||||
|
$validatedData = $request->validated();
|
||||||
|
$this->service->create($validatedData) ;
|
||||||
|
|
||||||
|
return $this->sendResponse("added_sucssefully");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,9 @@ class ProjectController extends Controller
|
||||||
{
|
{
|
||||||
public function __construct(private ProjectService $service) {}
|
public function __construct(private ProjectService $service) {}
|
||||||
|
|
||||||
public function index()
|
public function index(Request $request)
|
||||||
{
|
{
|
||||||
$data = $this->service->getAllWithRelations();
|
$data = $this->service->getAllWithRelations($request);
|
||||||
|
|
||||||
$resource = WebProjectResource::collection($data);
|
$resource = WebProjectResource::collection($data);
|
||||||
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
namespace App\Http\Controllers\website;
|
namespace App\Http\Controllers\website;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Http\Requests\Quotation\AddQuotationRequest;
|
||||||
use App\Http\Requests\RequestQuotation\AddRequestQuotationRequest;
|
use App\Http\Requests\RequestQuotation\AddRequestQuotationRequest;
|
||||||
use App\Http\Requests\RequestQuotation\EditRequestQuotationRequest;
|
use App\Http\Requests\RequestQuotation\EditRequestQuotationRequest;
|
||||||
use App\Http\Resources\dashboard\QuotationResource;
|
use App\Http\Resources\dashboard\QuotationResource;
|
||||||
|
|
@ -18,5 +19,12 @@ public function index()
|
||||||
$resource = QuotationResource::collection($data);
|
$resource = QuotationResource::collection($data);
|
||||||
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
return $this->sendResponse("get_data_sucssefuly",["data"=>$resource]);
|
||||||
|
|
||||||
|
}
|
||||||
|
public function create(AddQuotationRequest $request){
|
||||||
|
$validatedData = $request->validated();
|
||||||
|
$this->service->create($validatedData) ;
|
||||||
|
|
||||||
|
return $this->sendResponse("added_sucssefully");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'name' => ['required', 'string', 'max:255'],
|
'name' => ['required', 'string', 'max:255'],
|
||||||
'description' => ['required', 'string', 'max:255'],
|
'description' => ['required', 'string', 'max:255'],
|
||||||
'image' => ['required', 'image', 'max:255'],
|
'image' => ['required', 'image'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'name' => ["nullable",'string', 'max:255'],
|
'name' => ["nullable",'string', 'max:255'],
|
||||||
'description' => ["nullable",'string', 'max:255'],
|
'description' => ["nullable",'string', 'max:255'],
|
||||||
'image' => ["nullable",'image', 'max:255'],
|
'image' => ["nullable",'image'],
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,9 @@
|
||||||
|
|
||||||
use App\Http\Requests\Base\BaseFormRequest;
|
use App\Http\Requests\Base\BaseFormRequest;
|
||||||
use App\Models\Project;
|
use App\Models\Project;
|
||||||
|
use App\Models\ProjectImage;
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
use Illuminate\Validation\Rule;
|
use Illuminate\Validation\Rule;
|
||||||
|
|
||||||
class AddProjectImageRequest extends BaseFormRequest
|
class AddProjectImageRequest extends BaseFormRequest
|
||||||
|
|
@ -13,9 +15,23 @@ public function rules(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'image' => 'required|image',
|
'image' => 'required|image',
|
||||||
'type' => 'required|string|in:website,mobile',
|
'is_active' => [
|
||||||
'is_active' => 'required|boolean',
|
'required',
|
||||||
|
'boolean',
|
||||||
|
function ($attribute, $value, $fail) {
|
||||||
|
$project_id = $this->input('project_id');
|
||||||
|
// Check if is_active is true and no other record with is_active is true for the same project_id
|
||||||
|
if ($value === "0" && !ProjectImage::where('is_active', true)->where('project_id', $project_id)->exists()) {
|
||||||
|
$fail('At least one project must be active.');
|
||||||
|
}
|
||||||
|
// Check if is_active is true and there is already another record with is_active true for the same project_id
|
||||||
|
if ($value === "1" && ProjectImage::where('is_active', true)->where('project_id', $project_id)->exists()) {
|
||||||
|
$fail('Only one project can be active at a time.');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
],
|
||||||
'project_id' => 'required|exists:projects,id',
|
'project_id' => 'required|exists:projects,id',
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,8 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'title' => ['required', 'string', 'max:255'],
|
'title' => ['required', 'string', 'max:255'],
|
||||||
'description' => ['required', 'string', 'max:255'],
|
'description' => ['required', 'string', 'max:255'],
|
||||||
'logo' => ['required', 'image', 'max:255'],
|
'logo' => ['required', 'image'],
|
||||||
|
'type' => 'required|string|in:website,mobile',
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ public function rules(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'image' => 'nullable|image',
|
'image' => 'nullable|image',
|
||||||
'type' => 'nullable|string|in:website,mobile',
|
|
||||||
'is_active' => 'nullable|boolean',
|
'is_active' => 'nullable|boolean',
|
||||||
'project_id' => 'nullable|exists:projects,id',
|
'project_id' => 'nullable|exists:projects,id',
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,8 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'title' => ['nullable', 'string', 'max:255'],
|
'title' => ['nullable', 'string', 'max:255'],
|
||||||
'description' => ['nullable', 'string', 'max:255'],
|
'description' => ['nullable', 'string', 'max:255'],
|
||||||
'logo' => ['nullable', 'image', 'max:255'],
|
'logo' => ['nullable', 'image'],
|
||||||
|
'type' => 'nullable|string|in:website,mobile',
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@ public function rules(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'name' => 'required|string',
|
'name' => 'required|string',
|
||||||
'phone' => 'required|string',
|
'phone' => 'required|numeric',
|
||||||
'email' => 'required|email',
|
'email' => 'required|email',
|
||||||
'message' => 'required|string',
|
'message' => 'required|string',
|
||||||
'attachment' => 'required|file|mimes:pdf,doc,docx,txt|max:2048',
|
'attachment' => 'required|file|mimes:pdf,doc,docx,txt',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@ public function rules(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'name' => 'nullable|string',
|
'name' => 'nullable|string',
|
||||||
'phone' => 'nullable|string',
|
'phone' => 'nullable|numeric',
|
||||||
'email' => 'nullable|email',
|
'email' => 'nullable|email',
|
||||||
'message' => 'nullable|string',
|
'message' => 'nullable|string',
|
||||||
'attachment' => 'nullable|file|mimes:pdf,doc,docx,txt|max:2048',
|
'attachment' => 'nullable|file|mimes:pdf,doc,docx,txt',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'title' => ['required', 'string', 'max:255'],
|
'title' => ['required', 'string', 'max:255'],
|
||||||
'description' => ['required', 'string', 'max:255'],
|
'description' => ['required', 'string', 'max:255'],
|
||||||
'image' => ['required', 'image', 'max:255'],
|
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ public function rules(): array
|
||||||
return [
|
return [
|
||||||
'title' => ['nullable', 'string', 'max:255'],
|
'title' => ['nullable', 'string', 'max:255'],
|
||||||
'description' => ["nullable", 'string', 'max:255'],
|
'description' => ["nullable", 'string', 'max:255'],
|
||||||
'image' => ["nullable", 'image', 'max:255'],
|
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@ public function toArray(Request $request): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
|
|
||||||
'key' => $this->key,
|
'key' => $this->key,
|
||||||
'value' => $this->value,
|
'value' => $this->value,
|
||||||
'type' => $this->type,
|
'type' => $this->type,
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ public function toArray(Request $request): array
|
||||||
return [
|
return [
|
||||||
"id"=> $this->id,
|
"id"=> $this->id,
|
||||||
'project_id' => $this->project_id,
|
'project_id' => $this->project_id,
|
||||||
'type' => $this->type,
|
|
||||||
'is_active' => $this->is_active,
|
'is_active' => $this->is_active,
|
||||||
'image' => $this->image,
|
'image' => $this->image,
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,8 @@ public function toArray(Request $request): array
|
||||||
'title' => $this->title,
|
'title' => $this->title,
|
||||||
'description' => $this->description,
|
'description' => $this->description,
|
||||||
'logo' => $this->logo ,
|
'logo' => $this->logo ,
|
||||||
|
'type' => $this->type,
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@ public function toArray(Request $request): array
|
||||||
"id"=> $this->id,
|
"id"=> $this->id,
|
||||||
'title' => $this->title,
|
'title' => $this->title,
|
||||||
'description' => $this->description,
|
'description' => $this->description,
|
||||||
'image' => $this->image ,
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,8 @@ public function toArray(Request $request): array
|
||||||
"id"=> $this->id,
|
"id"=> $this->id,
|
||||||
'title' => $this->title,
|
'title' => $this->title,
|
||||||
'description' => $this->description,
|
'description' => $this->description,
|
||||||
'logo' => $this->logo ? env('APP_BASE_URL') . $this->logo : null,
|
'logo' => $this->logo ,
|
||||||
|
'type' => $this->type,
|
||||||
'images' => ProjectImageResource::collection($this->whenLoaded('images')),
|
'images' => ProjectImageResource::collection($this->whenLoaded('images')),
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,5 +12,5 @@ class Developer extends Model
|
||||||
"name",
|
"name",
|
||||||
"description",
|
"description",
|
||||||
"image"
|
"image"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ class Project extends Model
|
||||||
"title",
|
"title",
|
||||||
"description",
|
"description",
|
||||||
"logo",
|
"logo",
|
||||||
|
"type"
|
||||||
|
|
||||||
];
|
];
|
||||||
public function images()
|
public function images()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ class ProjectImage extends Model
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
"image",
|
"image",
|
||||||
'type',
|
|
||||||
'is_active',
|
'is_active',
|
||||||
"project_id"
|
"project_id"
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,5 @@ class Service extends Model
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
"title",
|
"title",
|
||||||
"description",
|
"description",
|
||||||
"image",
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
26
app/Services/HomeService.php
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
namespace App\Services;
|
||||||
|
|
||||||
|
use App\Models\ContactUs;
|
||||||
|
use App\Models\Developer;
|
||||||
|
use App\Models\Quotation;
|
||||||
|
|
||||||
|
class HomeService {
|
||||||
|
|
||||||
|
public function getHomeStatics () {
|
||||||
|
|
||||||
|
$data = [];
|
||||||
|
|
||||||
|
$data['developer_count'] = Developer::count();
|
||||||
|
|
||||||
|
$data['contact_us_count'] = ContactUs::count();
|
||||||
|
|
||||||
|
$data['quotation_count'] = Quotation::count();
|
||||||
|
|
||||||
|
|
||||||
|
// $data['last_developer'] = Developer::limit(3)->latest()->get();
|
||||||
|
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -34,7 +34,6 @@ public function create($data)
|
||||||
parent::create([
|
parent::create([
|
||||||
'project_id' => $data['project_id'],
|
'project_id' => $data['project_id'],
|
||||||
'is_active' => $data['is_active'],
|
'is_active' => $data['is_active'],
|
||||||
'type' => $data['type'],
|
|
||||||
"image" => $image
|
"image" => $image
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,12 +16,33 @@ public function __construct()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function getAllWithRelations()
|
public function getAllWithRelations($request)
|
||||||
{
|
{
|
||||||
$data = Project::with("images")->get();
|
$filter = $request->input('type');
|
||||||
|
|
||||||
|
if (!empty($filter)) {
|
||||||
|
$data = Project::with('images')->where('type', $filter)->get();
|
||||||
|
} else {
|
||||||
|
$data = Project::with('images')->get();
|
||||||
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public function getallWithfillter($request)
|
||||||
|
{
|
||||||
|
$filter = $request->input('type');
|
||||||
|
|
||||||
|
if (!empty($filter)) {
|
||||||
|
$data = Project::where('type', $filter)->get();
|
||||||
|
} else {
|
||||||
|
$data = Project::all();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
public function create($data)
|
public function create($data)
|
||||||
{
|
{
|
||||||
$logo = ImageService::upload_image($data['logo'], "Project");
|
$logo = ImageService::upload_image($data['logo'], "Project");
|
||||||
|
|
@ -29,7 +50,9 @@ public function create($data)
|
||||||
parent::create([
|
parent::create([
|
||||||
'title' => $data['title'],
|
'title' => $data['title'],
|
||||||
'description' => $data['description'],
|
'description' => $data['description'],
|
||||||
'logo' => $logo
|
'logo' => $logo,
|
||||||
|
'type' => $data['type'],
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,9 @@ public function __construct() {
|
||||||
|
|
||||||
public function create($data)
|
public function create($data)
|
||||||
{
|
{
|
||||||
$image = ImageService::upload_image($data['image'], "service");
|
|
||||||
|
|
||||||
parent::create([
|
parent::create([
|
||||||
'title' => $data['title'],
|
'title' => $data['title'],
|
||||||
'description' => $data['description'],
|
'description' => $data['description'],
|
||||||
'image' => $image
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
@ -30,12 +27,6 @@ public function create($data)
|
||||||
|
|
||||||
public function update($id ,$data)
|
public function update($id ,$data)
|
||||||
{
|
{
|
||||||
if (isset($data['image']) && !empty($data['image'])) {
|
|
||||||
$Oldimage = Service::find($id)->image ;
|
|
||||||
$updated_image = ImageService::update_image($data['image'],$Oldimage, 'service');
|
|
||||||
$data['image'] = $updated_image;
|
|
||||||
}
|
|
||||||
|
|
||||||
parent::update($id,$data);
|
parent::update($id,$data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'paths' => ['api/*', 'sanctum/csrf-cookie'],
|
'paths' => ['/*', 'sanctum/csrf-cookie'],
|
||||||
|
|
||||||
'allowed_methods' => ['*'],
|
'allowed_methods' => ['*'],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ public function up(): void
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('title');
|
$table->string('title');
|
||||||
$table->text('description');
|
$table->text('description');
|
||||||
$table->string('image');
|
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ public function up(): void
|
||||||
$table->string('title');
|
$table->string('title');
|
||||||
$table->text('description');
|
$table->text('description');
|
||||||
$table->string('logo');
|
$table->string('logo');
|
||||||
|
$table->enum('type', ['website', 'mobile']);
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ public function up(): void
|
||||||
Schema::create('project_images', function (Blueprint $table) {
|
Schema::create('project_images', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('image');
|
$table->string('image');
|
||||||
$table->enum('type', ['website', 'mobile']);
|
|
||||||
$table->boolean('is_active')->default(false);
|
$table->boolean('is_active')->default(false);
|
||||||
$table->unsignedBigInteger('project_id');
|
$table->unsignedBigInteger('project_id');
|
||||||
$table->foreign('project_id')->references('id')->on('projects')->onDelete('cascade');
|
$table->foreign('project_id')->references('id')->on('projects')->onDelete('cascade');
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="176.444" height="45.254" viewBox="0 0 176.444 45.254">
|
||||||
|
<g id="Group_18080" data-name="Group 18080" transform="translate(-54.787 -650.268)">
|
||||||
|
<path id="Path_12978" data-name="Path 12978" d="M129.855,672.6q0-10.544,0-21.087c0-1.018.183-1.206,1.193-1.206,4.483,0,8.966-.02,13.448.031a15.6,15.6,0,0,1,6.859,1.588,9.592,9.592,0,0,1,5.045,5.653,14.473,14.473,0,0,1,.4,7.91,8.957,8.957,0,0,1-4.445,6.018c-.455.263-.69.439-.071.8,3.62,2.1,5.182,5.39,5.41,9.427a13.3,13.3,0,0,1-1.241,6.985c-1.755,3.405-4.734,5.123-8.347,5.935a16.164,16.164,0,0,1-3.562.353q-6.723,0-13.448,0c-1.065,0-1.233-.152-1.234-1.242Q129.847,683.178,129.855,672.6Zm7.434,9.176c0,2.012.008,4.024-.006,6.036,0,.484.1.754.672.747,2.241-.029,4.484.042,6.723-.049a5.385,5.385,0,0,0,4.774-2.936,8,8,0,0,0,.811-4.6c-.32-3.847-2.666-5.991-6.519-6q-2.713-.007-5.426,0c-1.027,0-1.029,0-1.029.993Q137.285,678.868,137.288,681.771Zm0-18.768h.008c0,1.809.023,3.618-.013,5.426-.012.6.172.814.773.806,1.859-.026,3.72.031,5.579-.023,3.914-.113,5.976-2.024,6.273-5.745.317-3.953-2.079-6.644-6.041-6.736-1.961-.045-3.923,0-5.885-.026-.536-.007-.709.194-.7.719C137.3,659.284,137.285,661.144,137.285,663Z" transform="translate(-17.532 -0.007)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12979" data-name="Path 12979" d="M219.169,688.21c.308-1.415.583-2.667.853-3.921,1.237-5.746,2.482-11.491,3.7-17.242a1.059,1.059,0,0,1,1.245-1q2.214.066,4.432,0a1.1,1.1,0,0,1,1.313,1.015c1.462,6.739,2.959,13.469,4.446,20.2.059.265.129.528.2.806.416-.13.371-.461.425-.711q2.161-10.074,4.307-20.151c.229-1.073.335-1.154,1.427-1.145,1.706.012,3.413.018,5.12.041.777.012.994.277.813.984q-3.912,15.273-7.822,30.548a1.187,1.187,0,0,1-1.384,1.057q-2.6-.085-5.2,0c-.842.026-1.171-.342-1.347-1.1q-1.933-8.328-3.907-16.645c-.134-.569-.272-1.139-.419-1.7-.047-.179,0-.469-.291-.446-.223.018-.18.282-.216.44q-.823,3.609-1.629,7.222c-.84,3.748-1.689,7.494-2.507,11.248-.149.684-.441,1-1.178.985-1.783-.039-3.567-.032-5.35-.005a1.04,1.04,0,0,1-1.174-.918q-2.36-9.364-4.753-18.721-1.421-5.586-2.85-11.17c-.441-1.715-.374-1.814,1.4-1.813,1.452,0,2.9,0,4.356,0,1.074,0,1.167.069,1.38,1.094q2.073,9.938,4.146,19.875A2.074,2.074,0,0,0,219.169,688.21Z" transform="translate(-35.593 -3.685)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12980" data-name="Path 12980" d="M81.085,694.407a1.083,1.083,0,0,1-1.125.6Q67.92,694.989,55.88,695c-.961,0-1.092-.163-1.092-1.3q0-19.988,0-39.978c0-.714,0-1.426.005-2.14.011-1.129.164-1.281,1.285-1.281q11.888,0,23.775-.01a1.492,1.492,0,0,1,1.22.484l.011.368c-.011,1.375-.03,2.749-.034,4.124,0,1.308-.123,1.445-1.434,1.445-5.476,0-10.951.018-16.427-.018-.8-.005-.976.242-.969,1q.055,5.347,0,10.7c-.008.784.228.993.995.984,3.412-.038,6.825-.017,10.238-.016,1.049,0,1.212.159,1.214,1.179q0,1.987,0,3.973c0,1.037-.169,1.212-1.186,1.212q-5.12,0-10.239,0c-1,0-1,.005-1,1.028,0,3.642.019,7.284-.021,10.926-.008.783.226.977.994.973,5.5-.033,11-.019,16.5-.015,1.228,0,1.332.124,1.335,1.373,0,1.426.021,2.851.031,4.278A.14.14,0,0,1,81.085,694.407Z" transform="translate(0 -0.005)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12981" data-name="Path 12981" d="M187.725,684.834c-2.7,0-5.4.021-8.1-.014-.671-.008-.887.183-.842.861a9.464,9.464,0,0,0,.8,4.16,5.876,5.876,0,0,0,10,.187c.963-1.514.963-1.513,2.7-1.074q1.626.413,3.252.822c.829.211.976.487.715,1.336a11.294,11.294,0,0,1-9.942,7.842,15.648,15.648,0,0,1-7.008-.717,10.908,10.908,0,0,1-7-8.07,38.986,38.986,0,0,1-.871-11.383,18.275,18.275,0,0,1,1.063-6.293c1.8-4.3,5.188-6.458,9.7-7a18.16,18.16,0,0,1,4.573.067c5.309.714,8.428,4.012,9.551,8.964a44.32,44.32,0,0,1,.713,9.5c.005.705-.47.807-1.037.806Q191.853,684.829,187.725,684.834Zm-3.612-5.328c1.579,0,3.159,0,4.738,0,.408,0,.694-.069.669-.581a13.437,13.437,0,0,0-.511-3.7,4.673,4.673,0,0,0-4.332-3.411,4.794,4.794,0,0,0-4.962,2.434,10.155,10.155,0,0,0-.916,4.82c-.018.451.342.431.652.431Q181.782,679.507,184.114,679.505Z" transform="translate(-27.223 -3.53)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12982" data-name="Path 12982" d="M266.265,680.291c0-3.789-.015-7.049.013-10.309.005-.632-.178-.867-.819-.825-.711.046-1.426.016-2.139,0-.8-.015-1.067-.266-1.075-1.041-.012-1.222,0-2.445,0-3.667a.814.814,0,0,1,.929-.939c.713,0,1.429-.036,2.138.014s.991-.174.976-.934c-.042-2.112-.012-4.227,0-6.341,0-.943.156-1.1,1.123-1.105q2.445-.016,4.89-.008c.923,0,1.118.2,1.121,1.118,0,2.114.025,4.228,0,6.342-.01.676.175.955.9.93,1.424-.05,2.852-.02,4.278-.012.875,0,1.081.211,1.088,1.081.007,1.172.008,2.343-.005,3.515-.009.812-.235,1.043-1.052,1.051-1.477.014-2.955.026-4.431-.007-.6-.013-.788.191-.785.791.024,5.221.02,10.441.026,15.662a6,6,0,0,0,.031.609c.257,2.494,1.246,3.441,3.74,3.444,2.1,0,1.99.061,1.981,2.048,0,1.121-.01,2.241,0,3.362,0,.56-.186.984-.794,1a23.947,23.947,0,0,1-7.505-.581,5.8,5.8,0,0,1-4.532-5.8C266.148,686.384,266.318,683.071,266.265,680.291Z" transform="translate(-48.45 -1.137)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12983" data-name="Path 12983" d="M89.093,651.136l-.011-.368c.123-.5.527-.483.911-.484,1.885,0,3.77.025,5.654-.015a1.415,1.415,0,0,1,1.42.9q3.621,6.829,7.281,13.636c.108.2.238.391.356.586.947,2.151,2.282,4.094,3.351,6.182.148.289.155.708.55.85l-.121.191c-1.288,2.412-2.637,4.793-3.8,7.272-1.045,1.594-1.833,3.33-2.733,5-1.66,3.083-3.284,6.187-4.9,9.291a1.337,1.337,0,0,1-1.367.844c-1.908-.05-3.819-.021-5.729-.026-.417,0-.852.007-.859-.595a.141.141,0,0,0,0-.131c.094-.151.2-.3.28-.453q5.139-10.211,10.285-20.419a1.476,1.476,0,0,0,0-1.495c-2.634-5.186-5.228-10.392-7.867-15.574C90.9,654.592,90.111,652.8,89.093,651.136Z" transform="translate(-8.01)" fill="#e91e27"/>
|
||||||
|
<path id="Path_12984" data-name="Path 12984" d="M109.443,686.694c1.16-2.479,2.509-4.86,3.8-7.272,1.273,2.489,2.557,4.972,3.817,7.467q3.492,6.912,6.961,13.834c.4.8.262,1.065-.629,1.07-1.884.012-3.768-.02-5.651.018a1.315,1.315,0,0,1-1.37-.843c-1.442-3-2.906-5.994-4.361-8.99Q110.724,689.336,109.443,686.694Z" transform="translate(-12.765 -6.809)" fill="#416cb3"/>
|
||||||
|
<path id="Path_12985" data-name="Path 12985" d="M113.366,672.424c-.4-.142-.4-.561-.55-.85-1.068-2.088-2.4-4.031-3.351-6.182,2.271-4.67,4.557-9.332,6.8-14.017a1.647,1.647,0,0,1,1.763-1.1c1.756.066,3.516.013,5.274.023.98.005,1.149.271.7,1.159q-4.339,8.628-8.7,17.245C114.672,669.953,114.113,671.238,113.366,672.424Z" transform="translate(-12.77 -0.002)" fill="#416cb3"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 392 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 392 KiB |
|
After Width: | Height: | Size: 366 KiB |
|
After Width: | Height: | Size: 392 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 392 KiB |