Add new image file 'zobal.png' to the fronty images directory

This commit is contained in:
2026-02-27 01:28:42 +01:00
parent a3c63733c3
commit b760497333
52 changed files with 1408 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
{
"permissions": {
"allow": [
"Bash(php:*)",
"mcp__plugin_serena_serena__list_memories",
"mcp__plugin_serena_serena__read_memory",
"mcp__plugin_serena_serena__edit_memory",
"WebFetch(domain:rm.rzeszow.pl)",
"Bash(rm:*)",
"mcp__plugin_serena_serena__list_dir",
"mcp__plugin_serena_serena__find_file",
"mcp__plugin_serena_serena__get_symbols_overview"
]
}
}

1
.gitignore vendored
View File

@@ -0,0 +1 @@
.serena

4
.vscode/ftp-kr.json vendored
View File

@@ -12,6 +12,8 @@
"ignoreRemoteModification": true,
"ignore": [
".git",
"/.vscode"
"/.vscode",
"/.serena",
"/.claude"
]
}

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjU6Ik1lZGlhIjt9

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjk6IlN5cGlhbG5pYSI7fQ==

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjU6Ik1lYmxlIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjc6IktvbnRha3QiO30=

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjE0OiJNZWJsZSBwb2tvam93ZSI7fQ==

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjE2OiJaZXN0YXd5IHN0b8WCb3dlIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjE1OiJTdHJvbmEgZ8WCw7N3bmEiO30=

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjEwOiJXeXBvY3p5bmtpIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjc6Ikt1Y2huaWEiO30=

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjg6Ik8gZmlybWllIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjU6IkJpdXJvIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjg6IlByb21vY2plIjt9

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjY6IkZyb250eSI7fQ==

View File

@@ -0,0 +1 @@
YToyOntpOjA7aToxNzcyMjMzNzM0O2k6MTtzOjEwOiJEemllY2nEmWNlIjt9

12
files/config.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
$database['host'] = 'mysql.2.ires.pl';
$database['user'] = 'rm_rzeszow';
$database['password'] = 'NLRT9A55Hm9u3NSL';
$database['name'] = 'rm_rzeszow';
$config['cache_expire_long'] = 60 * 60 * 24;
$config['cache_expire'] = 60 * 60;
$config['cache_expire_short'] = 60;
$config['update_delay'] = 24;
$config['page'] = 'rm.rzeszow.pl';
$config['dev'] = 0;
?>

36
files/htaccess.conf Normal file
View File

@@ -0,0 +1,36 @@
RewriteEngine On
RewriteBase /
Options +FollowSymlinks
Options -Indexes
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=permanent]
ErrorDocument 404 http://www.{PAGE}/
RewriteRule ^admin/strona_glowna$ admin/index.php [L]
RewriteRule ^szablon,([^-]+)$ index.php?template=$1 [L]
RewriteRule ^lang,([^-]+)$ index.php?rw=change_language&id=$1 [L]
RewriteRule ^s,([0-9]+),([^,]+)$ index.php?rw=change_site&id=$1 [L]
RewriteRule ^s,([0-9]+),([0-9]+),([^,]+)$ index.php?rw=change_site&id=$1&bs=$2 [L]
RewriteRule ^a,([0-9]+),([^,]+)$ index.php?art=$1 [L]
RewriteRule ^rejestracja$ index.php?rw=change_site&type=registration [L]
RewriteRule ^odzyskaj_haslo$ index.php?rw=change_site&type=password_recovery [L]
RewriteRule ^wyszukiwarka$ index.php?rw=change_site&type=search [L]
RewriteRule ^([0-9]+),wyszukiwarka$ index.php?rw=change_site&type=search&bs=$1 [L]
RewriteRule ^mapa_strony$ index.php?rw=change_site&type=sitemap [L]
RewriteRule ^pobierz,([0-9]+)$ index.php?download=$1 [L]
<files htaccess.conf>
Order deny,allow
deny from all
</files>
<files database.conf>
Order deny,allow
deny from all
</files>

201
files/rss.xml Normal file
View File

@@ -0,0 +1,201 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Rekord Meble Rzeszów</title>
<link>http://rm.rzeszow.pl/</link>
<description></description>
<language>pl</language><copyright>Copyright © Rekord Meble Rzeszów</copyright>
<lastBuildDate>10/15/2023 18:13</lastBuildDate>
<item>
<title>Forni</title>
<link>http://rm.rzeszow.pl/http://www.forni.it/ita/</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Media</title>
<link>http://rm.rzeszow.pl/a,79,media</link>
<description>
...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Fronty</title>
<link>http://rm.rzeszow.pl/a,78,fronty</link>
<description>
Nasza firma jest dystrybutorem frontów kuchennych na Podkarpaciu , Ukrainie i Słovacji renomowanych producentów polskich i zagranicznych. ...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Versaille</title>
<link>http://rm.rzeszow.pl/ac-versaille</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Florence</title>
<link>http://rm.rzeszow.pl/ac-florence</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Atena</title>
<link>http://rm.rzeszow.pl/si-atena</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Aphrodite</title>
<link>http://rm.rzeszow.pl/si-aphrodite</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Alessia</title>
<link>http://rm.rzeszow.pl/si-alessia</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Serena</title>
<link>http://rm.rzeszow.pl/si-serena</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>SI- Sovrana</title>
<link>http://rm.rzeszow.pl/si-sovrana</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ga- Rubens</title>
<link>http://rm.rzeszow.pl/ga-rubens</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ga- Canova Classic</title>
<link>http://rm.rzeszow.pl/ga-canova-classic</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ga- Bronzino Classic</title>
<link>http://rm.rzeszow.pl/ga-bronzino-classic</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Raffaello</title>
<link>http://rm.rzeszow.pl/ac-raffaello</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Liberty</title>
<link>http://rm.rzeszow.pl/ac-liberty</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Donatello</title>
<link>http://rm.rzeszow.pl/ac-donatello</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Rossini</title>
<link>http://rm.rzeszow.pl/ac-rossini</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Tiziano</title>
<link>http://rm.rzeszow.pl/ac-tiziano</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Versailles</title>
<link>http://rm.rzeszow.pl/ac-versailles</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Miro</title>
<link>http://rm.rzeszow.pl/ac-miro</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ac- Tiziano</title>
<link>http://rm.rzeszow.pl/ac-tiziano-1</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ga- Proposta n41</title>
<link>http://rm.rzeszow.pl/ga-proposta-n41</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ms- Alexandra</title>
<link>http://rm.rzeszow.pl/ms-alexandra</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Ms- Gioia</title>
<link>http://rm.rzeszow.pl/ms-gioia</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Kocca</title>
<link>http://rm.rzeszow.pl/kocca</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Kicco</title>
<link>http://rm.rzeszow.pl/kicco</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>DL</title>
<link>http://rm.rzeszow.pl/dl</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Codi</title>
<link>http://rm.rzeszow.pl/codi</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Bimbo</title>
<link>http://rm.rzeszow.pl/bimbo</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
<item>
<title>Klasyczne</title>
<link>http://rm.rzeszow.pl/klasyczne</link>
<description>...</description>
<pubDate>15/10/2023 18:13</pubDate>
</item>
</channel>
</rss>

483
files/sitemap.xml Normal file
View File

@@ -0,0 +1,483 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/aqua</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/dali</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/a,3,o-firmie</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/doga</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/erika</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/etruska</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/imperial</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/licia</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/mia</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/miro-revolution</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/panera</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/penelope</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/volare</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/aries</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/bridge</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/corporate</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/eidos</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/kamos</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/leader</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/miro</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/open-space</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/president</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/simposio</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/tower</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/vista</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/imperial-1</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/reception-miro</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/reception</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-giotto</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ga-canova-classic</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ga-rubens</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/si-sovrana</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/toscania-night</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/si-alessia</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/si-serena</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-tiziano</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-rossini</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-giotto-1</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-donatello</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-liberty</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-raffaello</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ga-bronzino-classic</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/bomar-meble</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/mito-box</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/narozniki</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/nowoczesne</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/klasyczne</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/bimbo</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/codi</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/dl</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/kicco</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/kocca</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ms-gioia</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ms-alexandra</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ga-proposta-n41</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-tiziano-1</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-miro</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-versailles</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/si-aphrodite</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/si-atena</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-florence</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/ac-versaille</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/a,78,fronty</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/a,79,media</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
<url>
<loc>http://rm.rzeszow.pl/http://www.forni.it/ita/</loc>
<lastmod>2023-10-15</lastmod>
<changefreq>daily</changefreq>
<priority>1</priority>
</url>
</urlset>

View File

@@ -14,6 +14,9 @@ body {
font-family: Verdana;
font-size: 12px;
line-height: 20px;
min-height: 100vh;
display: flex;
flex-direction: column;
}
a img {
@@ -30,31 +33,30 @@ a img {
}
#top {
height: 167px;
padding-top: 70px;
}
.contact_top {
background: url('/upload/slider/slide01.jpg') center -15px;
height: auto;
padding-top: 0;
}
#menu_top_container {
background: #252527;
height: 90px;
overflow: hidden;
}
#menu_top_container #home {
position: relative;
top: -21px;
display: block;
height: 157px;
width: 312px;
height: 90px;
width: 200px;
float: left;
}
#menu_top_container #home img {
height: 100%;
width: auto;
}
#menu_1_0 {
float: left;
margin-left: 50px;
float: right;
margin-top: 30px;
position: relative;
z-index: 100;
@@ -106,40 +108,61 @@ a img {
color: #FEBD1C !important;
}
#hidden_container {
/* ===== Baner ofertowy (strona główna) ===== */
#offer-banner {
clear: both;
}
#goto {
display: block;
background: #FFF;
height: 80px;
line-height: 80px;
padding: 0 30px;
text-align: center;
color: #cc0000;
width: 310px;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
top: 70%;
margin-top: -50px;
float: right;
font-family: "Roboto", sans-serif;
font-weight: bold;
text-transform: uppercase;
border: 5px solid #252527;
font-size: 26px;
z-index: 1;
background: rgba(0, 0, 0, 0.45);
}
#goto:hover {
color: #FFF;
background: #252527;
border: 5px solid #FFF;
#offer-banner .container {
text-align: center;
width: auto;
}
#offer-banner .offer-main {
font-family: "Roboto", sans-serif;
font-size: 26px;
font-weight: 300;
color: #ffffff;
margin: 0;
line-height: 1.5;
}
#offer-banner .offer-main strong {
display: block;
font-family: "Roboto", sans-serif;
font-size: 38px;
font-weight: 700;
color: #FEBD1C;
text-transform: uppercase;
letter-spacing: 3px;
margin-top: 8px;
}
#offer-banner .offer-highlight {
font-family: "Roboto", sans-serif;
font-size: 18px;
font-weight: 500;
color: #ffffff;
margin: 20px 0 0;
letter-spacing: 1px;
border-top: 2px solid #c20f25;
display: inline-block;
padding-top: 16px;
}
#footer {
background: #252527;
min-height: 100px;
padding: 30px;
position: relative;
z-index: 1;
}
#footer #mini_contact {
@@ -223,6 +246,9 @@ a img {
clear: both;
background: #FFF;
padding: 30px 0;
flex: 1;
position: relative;
z-index: 1;
}
#site-title,
@@ -277,6 +303,10 @@ h3 {
border: 1px solid #494949;
}
#contact .nc-wrapper img {
border: 0;
}
#grid {
margin: 35px 0;
}
@@ -449,3 +479,425 @@ h3 {
float: left;
margin-top: -30px;
}
/* ===== Nowy kontakt - karty ===== */
.nc-wrapper {
clear: both;
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid #e4e4e4;
}
.nc-grid {
display: flex;
flex-direction: row;
gap: 30px;
}
.nc-card {
flex: 1;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nc-card:hover {
box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
transform: translateY(-3px);
}
.nc-card-header {
background: #252527;
color: #fff;
padding: 20px 25px;
font-family: "Roboto", sans-serif;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.nc-card-body {
padding: 25px;
}
.nc-info-row {
display: flex;
align-items: flex-start;
margin-bottom: 16px;
line-height: 1.6;
}
.nc-info-row:last-child {
margin-bottom: 0;
}
.nc-icon {
width: 36px;
height: 36px;
min-width: 36px;
background: #c20f25;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 14px;
margin-top: 2px;
}
.nc-icon svg {
width: 16px;
height: 16px;
fill: #fff;
}
.nc-info-content {
font-family: "Roboto", sans-serif;
font-size: 13px;
color: #5f5f5f;
}
.nc-info-content strong {
color: #28292b;
font-weight: 500;
}
.nc-info-content a {
color: #c20f25;
font-weight: 600;
text-decoration: none;
transition: color 0.2s;
}
.nc-info-content a:hover {
color: #8a0a1a;
text-decoration: underline;
}
.nc-section-title {
margin: 18px 0 8px;
font-family: "Roboto", sans-serif;
font-size: 13px;
font-weight: 500;
color: #28292b;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.nc-dept {
background: #f8f8f8;
border-left: 3px solid #c20f25;
padding: 12px 16px;
margin-bottom: 12px;
border-radius: 0 4px 4px 0;
}
.nc-dept:last-child {
margin-bottom: 0;
}
.nc-dept-name {
font-family: "Roboto", sans-serif;
font-size: 13px;
font-weight: 600;
color: #28292b;
margin-bottom: 4px;
}
.nc-dept-detail {
font-family: "Roboto", sans-serif;
font-size: 12px;
color: #5f5f5f;
}
.nc-dept-detail a {
color: #c20f25;
font-weight: 600;
text-decoration: none;
}
.nc-dept-detail a:hover {
text-decoration: underline;
}
.nc-hours {
display: inline-flex;
align-items: center;
background: #252527;
color: #fff;
padding: 8px 18px;
border-radius: 20px;
font-family: "Roboto", sans-serif;
font-size: 12px;
margin-top: 10px;
}
.nc-hours svg {
width: 14px;
height: 14px;
fill: #FEBD1C;
margin-right: 8px;
}
.nc-photo {
display: block;
margin-top: 20px;
border-radius: 6px;
overflow: hidden;
position: relative;
}
.nc-photo img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
border: 0 !important;
}
.nc-photo:hover img {
transform: scale(1.03);
}
.nc-photo-label {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
color: #fff;
padding: 20px 15px 12px;
font-family: "Roboto", sans-serif;
font-size: 12px;
letter-spacing: 0.5px;
}
.nc-redirect-notice {
margin-top: 20px;
padding: 18px 20px;
background: linear-gradient(135deg, #fff8e1, #fff3cd);
border: 2px solid #d4a017;
border-radius: 8px;
text-align: center;
font-family: "Roboto", sans-serif;
font-size: 14px;
line-height: 1.6;
color: #5a4e00;
}
.nc-redirect-notice .nc-redirect-icon {
margin-bottom: 8px;
}
.nc-redirect-notice p {
margin: 0;
}
.nc-redirect-notice strong {
font-size: 15px;
color: #7a6600;
}
.nc-closed-info {
margin-bottom: 5px;
}
/* ===== Responsive ===== */
@media (max-width: 1060px) {
.container {
width: auto;
padding: 0 15px;
box-sizing: border-box;
}
}
@media (max-width: 768px) {
/* --- Header / Nav --- */
#menu_top_container {
height: auto;
padding: 10px 0;
}
#menu_top_container #home {
top: 0;
height: auto;
width: 180px;
float: none;
display: block;
margin: 0 auto 10px;
}
#menu_top_container #home img {
width: 100%;
height: auto;
}
#menu_1_0 {
float: none;
margin-top: 0;
text-align: center;
}
#menu_1_0 li {
display: inline-block;
float: none;
}
#menu_1_0 .menu_li_1_0 a {
padding: 0 8px;
font-size: 11px;
}
#menu_1_0 .menu_li_1_0 ul {
width: 200px;
}
/* --- Baner ofertowy --- */
#offer-banner .offer-main {
font-size: 18px;
}
#offer-banner .offer-main strong {
font-size: 24px;
letter-spacing: 1px;
}
#offer-banner .offer-highlight {
font-size: 14px;
}
/* --- Content --- */
#main_subpages {
padding: 20px 0;
}
#contact_left,
#contact_right {
width: auto;
float: none;
border-left: 0;
padding-left: 0;
margin-right: 0;
}
/* --- Nowy kontakt karty --- */
.nc-grid {
flex-direction: column;
}
.nc-wrapper {
margin-top: 30px;
padding-top: 20px;
}
/* --- Grid (galeria) --- */
#grid li {
float: none;
width: auto !important;
margin-right: 0;
margin-bottom: 15px;
}
#grid li img {
width: 100%;
height: auto;
}
#grid .details {
width: auto;
position: relative;
}
/* --- Galeria zdjęć --- */
.gallery_picture {
width: calc(50% - 20px);
height: auto;
box-sizing: border-box;
}
.gallery_picture div {
width: 100%;
height: auto;
}
/* --- Footer --- */
#footer {
padding: 20px 15px;
}
#footer #mini_contact {
float: none;
margin-bottom: 15px;
}
#footer #copyright {
float: none;
clear: both;
}
#rzetelna_firma {
float: none;
clear: both;
margin-top: 15px;
}
#rzetelna_firma img {
margin-left: 0;
margin-right: 10px;
}
/* --- Goto button --- */
#goto {
float: none;
width: auto;
height: 50px;
line-height: 50px;
font-size: 18px;
margin-top: 0;
top: auto;
}
/* --- Slider (Promocje) --- */
#slider-container {
width: 100% !important;
}
/* --- Meble/Fronty fixed links --- */
#meble,
#fronty {
position: static;
margin-top: 0;
height: 60px;
line-height: 60px;
font-size: 20px;
}
/* --- Facebook widget --- */
#facebook {
display: none;
}
/* --- Tabela frontów --- */
.fronts {
font-size: 11px;
}
.fronts img {
max-width: 100%;
height: auto;
}
/* --- Obrazki ogólne --- */
img {
max-width: 100%;
height: auto;
}
}
#visit_counter {
display: none;
}

View File

@@ -1,4 +0,0 @@
<? global $lang; ?>
<div id="visit_counter">
<a><?=$this -> _visit_counter;?></a>
</div>

94
update_kontakt.php Normal file
View File

@@ -0,0 +1,94 @@
<?php
/**
* Skrypt aktualizacji szablonu Kontakt w bazie danych.
* Podejście: budujemy docelowy HTML z kawałków oryginalnego szablonu.
* Uruchom: php update_kontakt.php
*/
require_once 'files/config.php';
$db = new PDO(
'mysql:host=' . $database['host'] . ';dbname=' . $database['name'] . ';charset=utf8',
$database['user'],
$database['password']
);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$html = file_get_contents('_current_layout.html');
$q = '\\"'; // escaped quote - tak są zapisane w bazie
// Strategia: wycinamy fragmenty z oryginalnego HTML
// Część 1: od początku do <div id="contact"> (włącznie z otwierającym divem)
$contactStart = strpos($html, '<div id=' . $q . 'contact' . $q . '>');
$part1 = substr($html, 0, $contactStart);
$part1 .= '<div id=' . $q . 'contact' . $q . '>';
// Część 2: od "<!-- NOWY WYGLĄD KONTAKTU -->" do "Salony meblowe" nc-card (wycinamy tę kartę)
$newContactStart = strpos($html, '<!-- NOWY WYGLĄD KONTAKTU -->');
// Część 3: karta "Siedziba główna" (zostawiamy jak jest)
// Szukamy od newContactStart do "Salony meblowe"
$salonStart = strpos($html, 'Salony meblowe', $newContactStart);
// Cofamy się do <div class=\"nc-card\"> przed "Salony meblowe"
$salonCardStart = strrpos(substr($html, 0, $salonStart), '<div class=' . $q . 'nc-card' . $q . '>');
// Od NOWY WYGLĄD do początku karty Salony
$part2 = "\n " . substr($html, $newContactStart, $salonCardStart - $newContactStart);
// Część 4: nowa karta Żołynia (zastępuje starą kartę Salony meblowe)
$part3 = '<div class=' . $q . 'nc-card' . $q . '>
<div class=' . $q . 'nc-card-header' . $q . '>Salon meblowy &ndash; Żołynia</div>
<div class=' . $q . 'nc-card-body' . $q . '>
<div class=' . $q . 'nc-closed-info' . $q . '>
<div class=' . $q . 'nc-info-row' . $q . ' style=' . $q . 'text-decoration: line-through; opacity: 0.5;' . $q . '>
<div class=' . $q . 'nc-icon' . $q . '><svg viewBox=' . $q . '0 0 24 24' . $q . '><path d=' . $q . 'M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z' . $q . '/></svg></div>
<div class=' . $q . 'nc-info-content' . $q . '><strong>Żołynia ul. Rynek</strong><br>Dom Handlowy 1P</div>
</div>
<div class=' . $q . 'nc-info-row' . $q . ' style=' . $q . 'text-decoration: line-through; opacity: 0.5;' . $q . '>
<div class=' . $q . 'nc-icon' . $q . '><svg viewBox=' . $q . '0 0 24 24' . $q . '><path d=' . $q . 'M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' . $q . '/></svg></div>
<div class=' . $q . 'nc-info-content' . $q . '><strong>tel/fax: 17 224-32-89</strong></div>
</div>
<div class=' . $q . 'nc-info-row' . $q . ' style=' . $q . 'text-decoration: line-through; opacity: 0.5;' . $q . '>
<div class=' . $q . 'nc-icon' . $q . '><svg viewBox=' . $q . '0 0 24 24' . $q . '><path d=' . $q . 'M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z' . $q . '/></svg></div>
<div class=' . $q . 'nc-info-content' . $q . '><a href=' . $q . 'mailto:zolynia.rekord@op.pl' . $q . '>zolynia.rekord@op.pl</a></div>
</div>
</div>
<div class=' . $q . 'nc-redirect-notice' . $q . '>
<div class=' . $q . 'nc-redirect-icon' . $q . '>
<svg viewBox=' . $q . '0 0 24 24' . $q . ' width=' . $q . '32' . $q . ' height=' . $q . '32' . $q . '><path d=' . $q . 'M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z' . $q . ' fill=' . $q . '#d4a017' . $q . '/></svg>
</div>
<p>Wszystkich dotychczasowych Klientów salonu w Żołyni<br>(asortyment BRW, Signal Meble, Halmar)<br><strong>serdecznie zapraszamy do naszej siedziby w Czarnej &ndash; w atrakcyjnych cenach!</strong></p>
</div>
</div>
</div>
';
// Część 5: od "<!-- KONIEC NOWEGO WYGLĄDU -->" do końca pliku
$endComment = strpos($html, '<!-- KONIEC NOWEGO WYGLĄDU -->');
// Musimy znaleźć zamknięcie nc-grid i nc-wrapper przed komentarzem
$part4 = ' </div>
</div>
';
$part5 = substr($html, $endComment);
// Składamy końcowy HTML
$finalHtml = $part1 . $part2 . $part3 . $part4 . $part5;
// Weryfikacja przed zapisem
echo "Sprawdzenia:\n";
echo " contact_left usunięty: " . (strpos($finalHtml, 'contact_left') === false ? "OK" : "FAIL") . "\n";
echo " contact_right usunięty: " . (strpos($finalHtml, 'contact_right') === false ? "OK" : "FAIL") . "\n";
echo " nc-redirect-notice: " . (strpos($finalHtml, 'nc-redirect-notice') !== false ? "OK" : "FAIL") . "\n";
echo " Siedziba główna: " . (strpos($finalHtml, 'Siedziba główna') !== false ? "OK" : "FAIL") . "\n";
echo " Salon meblowy Żołynia: " . (strpos($finalHtml, 'Salon meblowy') !== false ? "OK" : "FAIL") . "\n";
echo " line-through: " . (strpos($finalHtml, 'line-through') !== false ? "OK" : "FAIL") . "\n";
echo " footer: " . (strpos($finalHtml, 'footer') !== false ? "OK" : "FAIL") . "\n";
// Zapisz do pliku do podglądu
file_put_contents('_updated_layout.html', $finalHtml);
echo "\nZapisano podgląd do _updated_layout.html\n";
// Aktualizacja bazy
$stmt = $db->prepare("UPDATE pp_layouts SET html = :html WHERE id = 2");
$stmt->execute(['html' => $finalHtml]);
echo "Baza danych zaktualizowana.\n";

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" id="Warstwa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1133.363px" height="467.732px" viewBox="0 0 1133.363 467.732" enable-background="new 0 0 1133.363 467.732"
xml:space="preserve">
<path fill="#97979B" d="M1066.494,378.99h19.535v19.859h-19.535V378.99z M1053.475,384.201v14.648h-43.944
c-18.442,0-27.665-9.224-27.665-27.673v-40.69c0-18.448,9.223-27.673,27.665-27.673h43.944v14.653h-43.944
c-8.685,0-13.027,4.343-13.027,13.02v40.69c0,8.686,4.343,13.024,13.027,13.024H1053.475z M946.047,378.99h19.538v19.859h-19.538
V378.99z M879.319,358.159c-18.448,0-27.664-9.226-27.664-27.673c0-18.448,9.216-27.673,27.664-27.673h43.944v14.653h-43.944
c-8.685,0-13.02,4.343-13.02,13.02c0,8.68,4.335,13.019,13.02,13.019h24.417c18.449,0,27.665,9.225,27.665,27.672
c0,18.449-9.216,27.673-27.665,27.673h-45.41v-14.648h45.41c8.678,0,13.02-4.339,13.02-13.024c0-8.68-4.342-13.018-13.02-13.018
H879.319z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1F8DCD" d="M673.672,326.93v-16.605c0-0.745,0.115-1.4,0.162-2.112
c-2.214-2.369-4.437-4.729-6.696-7.096c-0.493,2.791-0.764,5.834-0.764,9.208v9.387C668.834,322.114,671.265,324.523,673.672,326.93
"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1F8DCD" d="M738.541,387.25h-9.819c2.006,2.438,3.982,4.875,5.934,7.297h5.196
c1.25,0,2.455-0.031,3.617-0.098C741.849,392.055,740.224,389.661,738.541,387.25"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1F8DCD" d="M685.709,321.161v18.001c11.633,12.056,22.592,24.094,32.872,36.05
h11.308C716.838,357.479,702.075,339.393,685.709,321.161"/>
<g>
<defs>
<rect id="SVGID_1_" x="30.11" y="9.659" width="1064.952" height="450.073"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1F8DCD" d="M743.978,406.447
c13.382,17.468,25.167,34.633,35.138,51.266c-7.312-16.625-16.787-34.055-28.25-52.032
C748.677,406.052,746.387,406.316,743.978,406.447"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1F8DCD" d="M609.665,268.199
c19.081,2.021,30.672,12.267,34.104,30.059c3.588,3.306,7.142,6.614,10.645,9.922c0.186-6.44,1.18-12.147,2.991-17.083
c-42.497-43.136-93.237-86.322-150.217-126.532C302.35,20.009,94.688-31.477,43.461,49.594
c-22.813,36.099-10.743,92.412,27.73,156.53c-20.607-46.85-24.032-87.294-6.247-115.438
c51.23-81.074,258.894-29.585,463.73,114.971C557.335,225.877,584.422,246.851,609.665,268.199"/>
</g>
<path fill="#1F8DCD" d="M797.866,220.084h19.335v180.482h-19.335V220.084z M660.352,310.325c0-24.349,12.179-36.527,36.527-36.527
h42.973c24.356,0,36.528,12.178,36.528,36.527v54.143c0,24.067-12.172,36.099-36.528,36.099h-42.973
c-24.349,0-36.527-12.175-36.527-36.523V310.325z M739.852,381.234c11.463,0,17.192-5.583,17.192-16.767v-54.143
c0-11.458-5.729-17.188-17.192-17.188h-42.973c-11.462,0-17.185,5.73-17.185,17.188v53.718c0,11.462,5.723,17.191,17.185,17.191
H739.852z M542.179,432.8h-19.335V310.325c0-24.349,12.17-36.527,36.526-36.527h42.976c24.348,0,36.52,12.178,36.52,36.527v53.718
c0,24.349-12.172,36.523-36.52,36.523h-47.278v-19.332h47.278c11.46,0,17.185-5.729,17.185-17.191v-53.718
c0-11.458-5.725-17.188-17.185-17.188H559.37c-11.452,0-17.191,5.73-17.191,17.188V432.8z"/>
<path fill="#97979B" d="M456.23,273.798h10.751v-53.71h17.832v53.71h22.991v19.335h-22.991V400.57h-17.832V293.133H456.23V273.798z
M441.199,400.57h-19.335v-90.241c0-11.464-5.731-17.195-17.199-17.195h-60.158V400.57h-19.342V273.798h79.5
c24.356,0,36.534,12.178,36.534,36.531V400.57z M187.656,310.329c0-24.353,12.179-36.531,36.527-36.531h42.974
c24.35,0,36.526,12.178,36.526,36.531v54.146c0,24.063-12.177,36.095-36.526,36.095h-42.974c-24.349,0-36.527-12.179-36.527-36.527
V310.329z M267.157,381.234c11.461,0,17.191-5.588,17.191-16.759v-54.146c0-11.464-5.73-17.195-17.191-17.195h-42.974
c-11.462,0-17.184,5.731-17.184,17.195v53.714c0,11.458,5.722,17.191,17.184,17.191H267.157z M138.243,400.57h-19.342v-90.241
c0-24.353,12.177-36.531,36.532-36.531h15.04v19.335h-15.04c-11.461,0-17.19,5.731-17.19,17.195V400.57z M63.04,400.57V256.615
c0-24.357,13.604-36.527,40.826-36.527v19.332c-14.326,0-21.491,5.735-21.491,17.195v17.183h21.491v19.335H82.375V400.57H63.04z"/>
<path fill="#97979B" d="M1094.188,71.737c10.158,0,17.524,8.202,17.524,18.213c0,10.153-7.366,18.36-17.376,18.22
c-10.297,0-17.8-8.067-17.8-18.22c0-10.011,7.503-18.213,17.516-18.213H1094.188z M1094.188,67.148
c-13.071,0-23.491,10.153-23.491,22.802c0,12.938,10.42,22.949,23.491,22.949c13.212,0,23.369-10.012,23.369-22.949
c0-12.649-10.157-22.802-23.221-22.802H1094.188z M1090.719,82.45c0.557-0.146,1.527-0.286,2.915-0.286
c3.341,0,4.867,1.393,4.867,3.478c0,2.364-2.361,3.336-5.283,3.336h-2.499V82.45z M1090.579,92.731h2.502
c2.922,0,4.31,1.118,4.726,3.618c0.694,2.645,1.119,4.589,1.814,5.422h5.696c-0.553-0.695-0.971-2.083-1.671-5.562
c-0.688-3.054-1.943-4.867-4.165-5.561v-0.277c2.777-0.833,4.729-2.785,4.729-5.422c0-2.089-0.975-3.896-2.23-4.871
c-1.667-1.11-3.617-1.808-7.927-1.808c-3.749,0-6.672,0.424-8.754,0.836v22.664h5.28V92.731z"/>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 441 KiB

After

Width:  |  Height:  |  Size: 168 KiB