SELECT 
  cscart_bm_snapping.grid_id as grid_id, 
  cscart_bm_snapping.block_id as block_id, 
  IFNULL(
    dynamic_object_content.content, 
    default_content.content
  ) as content, 
  IFNULL(
    dynamic_object_content.object_id, 
    default_content.object_id
  ) AS object_id, 
  IFNULL(
    dynamic_object_content.object_type, 
    default_content.object_type
  ) AS object_type, 
  cscart_bm_block_statuses.object_ids as object_ids, 
  cscart_bm_snapping.*, 
  cscart_bm_blocks.*, 
  cscart_bm_blocks_descriptions.* 
FROM 
  cscart_bm_snapping 
  LEFT JOIN cscart_bm_blocks ON cscart_bm_blocks.block_id = cscart_bm_snapping.block_id 
  LEFT JOIN cscart_bm_block_statuses ON cscart_bm_snapping.snapping_id = cscart_bm_block_statuses.snapping_id 
  AND cscart_bm_block_statuses.object_type LIKE 'categories' 
  LEFT JOIN cscart_bm_blocks_descriptions ON cscart_bm_blocks.block_id = cscart_bm_blocks_descriptions.block_id 
  LEFT JOIN cscart_bm_blocks_content AS default_content ON cscart_bm_blocks.block_id = default_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = default_content.lang_code 
  AND default_content.snapping_id = 0 
  AND default_content.object_id = 0 
  AND default_content.object_type like '' 
  LEFT JOIN cscart_bm_blocks_content AS dynamic_object_content ON cscart_bm_blocks.block_id = dynamic_object_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = dynamic_object_content.lang_code 
  AND dynamic_object_content.object_id = 712 
  AND dynamic_object_content.object_type like 'categories' 
WHERE 
  cscart_bm_snapping.grid_id IN (
    2562, 2561, 2575, 2563, 2564, 2565, 2567, 
    2568, 2569, 2570, 2571, 816, 2572, 2573
  ) 
  AND cscart_bm_blocks_descriptions.lang_code = 'ru' 
ORDER BY 
  cscart_bm_snapping.order, 
  cscart_bm_snapping.block_id

Query time 0.00138

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "158.18"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "35.39"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_bm_snapping",
            "access_type": "range",
            "possible_keys": [
              "grid_id"
            ],
            "key": "grid_id",
            "used_key_parts": [
              "grid_id"
            ],
            "key_length": "4",
            "rows_examined_per_scan": 34,
            "rows_produced_per_join": 34,
            "filtered": "100.00",
            "index_condition": "(`dev2`.`cscart_bm_snapping`.`grid_id` in (2562,2561,2575,2563,2564,2565,2567,2568,2569,2570,2571,816,2572,2573))",
            "cost_info": {
              "read_cost": "28.91",
              "eval_cost": "3.40",
              "prefix_cost": "32.31",
              "data_read_per_join": "26K"
            },
            "used_columns": [
              "snapping_id",
              "block_id",
              "grid_id",
              "wrapper",
              "user_class",
              "order",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_block_statuses",
            "access_type": "ref",
            "possible_keys": [
              "snapping_id"
            ],
            "key": "snapping_id",
            "used_key_parts": [
              "snapping_id"
            ],
            "key_length": "4",
            "ref": [
              "dev2.cscart_bm_snapping.snapping_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.50",
              "eval_cost": "3.40",
              "prefix_cost": "44.21",
              "data_read_per_join": "3K"
            },
            "used_columns": [
              "snapping_id",
              "object_ids",
              "object_type"
            ],
            "attached_condition": "<if>(is_not_null_compl(cscart_bm_block_statuses), ((`dev2`.`cscart_bm_snapping`.`snapping_id` = `dev2`.`cscart_bm_block_statuses`.`snapping_id`) and (`dev2`.`cscart_bm_block_statuses`.`object_type` like 'categories')), true)"
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "dev2.cscart_bm_snapping.block_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.50",
              "eval_cost": "3.40",
              "prefix_cost": "56.11",
              "data_read_per_join": "6K"
            },
            "used_columns": [
              "block_id",
              "lang_code",
              "name"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "dev2.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "12.14",
              "eval_cost": "3.40",
              "prefix_cost": "71.65",
              "data_read_per_join": "7K"
            },
            "used_columns": [
              "block_id",
              "type",
              "properties",
              "company_id",
              "storefront_id"
            ]
          }
        },
        {
          "table": {
            "table_name": "default_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "snapping_id",
              "lang_code",
              "object_id"
            ],
            "key_length": "18",
            "ref": [
              "dev2.cscart_bm_snapping.block_id",
              "const",
              "dev2.cscart_bm_blocks_descriptions.lang_code",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "22.10",
              "eval_cost": "3.40",
              "prefix_cost": "97.15",
              "data_read_per_join": "7K"
            },
            "used_columns": [
              "snapping_id",
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ],
            "attached_condition": "<if>(is_not_null_compl(default_content), (`dev2`.`default_content`.`object_type` like ''), true)"
          }
        },
        {
          "table": {
            "table_name": "dynamic_object_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "dev2.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 35,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "22.10",
              "eval_cost": "3.54",
              "prefix_cost": "122.79",
              "data_read_per_join": "7K"
            },
            "used_columns": [
              "snapping_id",
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ],
            "attached_condition": "<if>(is_not_null_compl(dynamic_object_content), ((`dev2`.`dynamic_object_content`.`object_id` = 712) and (`dev2`.`dynamic_object_content`.`lang_code` = `dev2`.`cscart_bm_blocks_descriptions`.`lang_code`) and (`dev2`.`dynamic_object_content`.`object_type` like 'categories')), true)"
          }
        }
      ]
    }
  }
}

Result

grid_id block_id content object_id object_type object_ids snapping_id wrapper user_class order status type properties company_id storefront_id lang_code name
2563 4 0 3312 0 A geo_maps_customer_location a:2:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Яндекс карта
2575 103 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"37";}} 0 3341 0 D banners a:4:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"150px";s:22:"abt__ut2_demo_block_id";s:8:"banner_1";} 0 1 ru Рекламный баннер
2561 410 0 3309 diler_caitgory 0 A main a:1:{s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Главное содержимое
2564 413 a:1:{s:7:"content";s:987:"<div class="menu-top"> <a class="ty-text-links__a" href="/finansovye-uslugi/bankovskie-garantii">Банковские гарантии</a> <a class="ty-text-links__a" href="/finansovye-uslugi/strahovanie">Страхование</a> <a class="ty-text-links__a" href="/finansovye-uslugi/lizing">Лизинг</a> <a class="ty-text-links__a" href="/finansovye-uslugi/akkreditivy">Аккредитив</a> <a class="ty-text-links__a" href="/finansovye-uslugi/faktoring">Факторинг</a> <a class="ty-text-links__a" href="/finansovye-uslugi/kredity">Кредиты</a> <a class="ty-text-links__a menu-fio" href="https://auth.finleo.ru">Регистрация</a> {if in_array("7", $auth.usergroup_ids)} <a class="ty-text-links__a menu-fio" href="/vendor.php">Панель продавца</a> {else} <a class="ty-text-links__a menu-fio" href="/index.php?dispatch=companies.apply_for_vendor">Стать продавцом</a> {/if} </div>";} 0 3313 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Верхнее меню
2565 414 0 3314 top-logo 0 D template a:3:{s:8:"template";s:32:"blocks/static_templates/logo.tpl";s:11:"enable_link";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Логотип
2567 416 a:1:{s:4:"menu";s:1:"2";} 0 3316 blocks/wrappers/onclick_dropdown.tpl top-menu-grid-vetrtical 0 D menu a:3:{s:8:"template";s:33:"blocks/menu/dropdown_vertical.tpl";s:25:"right_to_left_orientation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru ☰  Каталог
2570 420 a:1:{s:7:"content";s:541:"<ul id="demo_store_links"> <li class="ty-footer-menu__item"><a href="/about/">О проекте</a></li> <li class="ty-footer-menu__item"><a href="/contacts/">Контакты</a></li> <li class="ty-footer-menu__item"><a href="/actions/">Акции</a></li> <li class="ty-footer-menu__item"><a href="/blog/">Блог</a></li> <li class="ty-footer-menu__item"><a href="/agentspro/">Агентам</a></li> <li class="ty-footer-menu__item"><a href="https://marketplace.finleo.ru/vacancy/" target="_blank">Вакансии</a></li> </ul>";} 0 3322 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Компания
2573 423 a:1:{s:7:"content";s:4973:"<div class="footer-media"> <p class="ty-footer-general__header cm-combination">Мы в соцсетях</p> <div class="footer-media-soc"> <a href="https://t.me/finleo" target="_blank" class="footer-media-soc__icon"> <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Telegram</title> <rect width="50" height="50" rx="25" fill="white"></rect> <path d="M22.2501 25.6446L30.6799 33.0628C30.7774 33.1486 30.8956 33.2076 31.0228 33.234C31.15 33.2605 31.2819 33.2534 31.4055 33.2135C31.5292 33.1737 31.6403 33.1024 31.7281 33.0066C31.8159 32.9108 31.8774 32.7939 31.9064 32.6673L35.4327 17.2798C35.4632 17.1468 35.4568 17.008 35.4142 16.8783C35.3716 16.7486 35.2944 16.633 35.191 16.544C35.0876 16.4549 34.9618 16.3958 34.8272 16.3729C34.6927 16.35 34.5544 16.3643 34.4274 16.4142L17.1252 23.2115C16.9744 23.2708 16.8468 23.3773 16.7616 23.515C16.6764 23.6528 16.638 23.8145 16.6523 23.9759C16.6667 24.1372 16.7328 24.2896 16.841 24.4103C16.9492 24.5309 17.0935 24.6133 17.2523 24.645L22.2501 25.6446Z" stroke="#2AA1DA" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> <path d="M22.25 25.6446L35.0105 16.4287" stroke="#2AA1DA" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> <path d="M26.46 29.3494L23.5303 32.2791C23.4254 32.384 23.2918 32.4554 23.1463 32.4843C23.0008 32.5133 22.85 32.4984 22.713 32.4417C22.5759 32.3849 22.4588 32.2888 22.3764 32.1654C22.294 32.0421 22.25 31.8971 22.25 31.7487V25.6445" stroke="#2AA1DA" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> </svg> </a> <a href="https://vk.com/finleo" target="_blank" class="footer-media-soc__icon"> <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Вконтакте</title> <rect width="50" height="50" rx="25" fill="white"></rect> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.4671 14H33.0329C34.9477 14 36.5 15.5523 36.5 17.4671V33.0329C36.5 34.9477 34.9477 36.5 33.0329 36.5H17.4671C15.5523 36.5 14 34.9477 14 33.0329V17.4671C14 15.5523 15.5523 14 17.4671 14Z" fill="white"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M25.0613 29.7507H25.9816C25.9816 29.7507 26.2596 29.7201 26.4017 29.5672C26.5323 29.4266 26.5281 29.1629 26.5281 29.1629C26.5281 29.1629 26.5101 27.9279 27.0832 27.7461C27.6484 27.5668 28.3739 28.9396 29.1429 29.4675C29.7244 29.8668 30.1663 29.7794 30.1663 29.7794L32.2227 29.7507C32.2227 29.7507 33.2984 29.6843 32.7883 28.8386C32.7466 28.7695 32.4912 28.213 31.2593 27.0695C29.9698 25.8727 30.1426 26.0664 31.6958 23.9962C32.6417 22.7355 33.0198 21.9659 32.9017 21.6362C32.7891 21.3222 32.0933 21.4051 32.0933 21.4051L29.778 21.4195C29.778 21.4195 29.6063 21.3961 29.4791 21.4722C29.3546 21.5467 29.2748 21.7206 29.2748 21.7206C29.2748 21.7206 28.9082 22.6961 28.4196 23.5259C27.3886 25.2765 26.9763 25.3692 26.8078 25.2603C26.4157 25.0069 26.5137 24.2426 26.5137 23.6994C26.5137 22.0028 26.771 21.2955 26.0126 21.1123C25.7609 21.0516 25.5756 21.0114 24.9319 21.0049C24.1057 20.9965 23.4066 21.0074 23.0107 21.2014C22.7473 21.3304 22.544 21.6177 22.6679 21.6343C22.821 21.6547 23.1674 21.7278 23.3511 21.9778C23.5885 22.3007 23.5802 23.0255 23.5802 23.0255C23.5802 23.0255 23.7165 25.0227 23.2618 25.2707C22.9497 25.4408 22.5216 25.0935 21.6024 23.5052C21.1316 22.6917 20.7759 21.7923 20.7759 21.7923C20.7759 21.7923 20.7074 21.6243 20.5851 21.5343C20.4367 21.4253 20.2295 21.3908 20.2295 21.3908L18.0292 21.4051C18.0292 21.4051 17.699 21.4144 17.5777 21.558C17.4697 21.6859 17.569 21.95 17.569 21.95C17.569 21.95 19.2915 25.9799 21.2419 28.0107C23.0306 29.8729 25.0613 29.7507 25.0613 29.7507Z" fill="#4C75A3"></path> </svg> </a> <a href="https://dzen.ru/finleo" target="_blank" class="footer-media-soc__icon"> <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Дзен</title> <rect width="50" height="50" rx="25" fill="white"></rect> <path d="M27.7 27.7C25.5 29.97 25.34 32.8 25.15 39C30.93 39 34.92 38.98 36.98 36.98C38.98 34.92 39 30.74 39 25.15C32.8 25.35 29.97 25.5 27.7 27.7ZM11 25.15C11 30.74 11.02 34.92 13.02 36.98C15.08 38.98 19.07 39 24.85 39C24.65 32.8 24.5 29.97 22.3 27.7C20.03 25.5 17.2 25.34 11 25.15ZM24.85 11C19.08 11 15.08 11.02 13.02 13.02C11.02 15.08 11 19.26 11 24.85C17.2 24.65 20.03 24.5 22.3 22.3C24.5 20.03 24.66 17.2 24.85 11ZM27.7 22.3C25.5 20.03 25.34 17.2 25.15 11C30.93 11 34.92 11.02 36.98 13.02C38.98 15.08 39 19.26 39 24.85C32.8 24.65 29.97 24.5 27.7 22.3Z" fill="#2C3036"></path> </svg> </a> </div> </div>";} 0 3325 0 A html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Футер медиа
2573 424 0 3326 0 D template a:2:{s:8:"template";s:56:"addons/newsletters/blocks/static_templates/subscribe.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Подписаться
2565 432 a:1:{s:7:"content";s:17036:"<a href="/" class="logo"> <svg width="56" height="65" viewBox="0 0 123 139" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M59.1121 137.56C36.6521 127.56 19.5321 111.82 9.61209 92.03C-0.56791 71.72 -2.70791 47.95 3.41209 23.28L3.83209 21.59L5.17209 20.49C20.9518 7.46661 40.7135 0.23594 61.1721 0H61.2621C81.7207 0.23594 101.482 7.46661 117.262 20.49L118.602 21.59L119.022 23.28C125.142 47.95 123.022 71.72 112.802 92.03C102.882 111.82 85.8021 127.56 63.3021 137.56L61.1621 138.51L59.1121 137.56Z" fill="white"/> <path d="M114.013 24.54C99.167 12.25 80.5458 5.43914 61.2734 5.25C41.9976 5.43685 23.3725 12.2478 8.52339 24.54C-3.47661 73 18.4234 113.7 61.2534 132.76C104.113 113.7 126.043 73 114.013 24.54Z" fill="#FF2022"/> <path d="M109.9 57.9501C103.907 50.0188 96.6702 43.1096 88.47 37.4901C95.73 45.1301 102.29 55.8301 108.35 68.6501C107.128 74.6497 105.131 80.4651 102.41 85.9501C94.13 64.2801 86.23 47.9501 78.77 40.8301C80.5293 43.7513 81.8501 46.9151 82.69 50.2201C78.459 50.8197 74.3743 52.1925 70.64 54.2701C69.8071 56.3355 69.2295 58.4948 68.92 60.7001C70.9096 64.718 72.0919 69.0872 72.4 73.5601L74.01 76.6401L78.3 77.9301L77.95 87.2301L72.95 91.3101C69.6157 90.5527 66.3926 89.3697 63.36 87.7901C63.2236 86.1029 63.4138 84.4053 63.92 82.7901C66.8931 81.7143 69.6775 80.1753 72.17 78.2301C70.4471 77.114 68.5255 76.34 66.51 75.9501C64.9872 77.0651 63.3556 78.0233 61.64 78.8101C59.9212 78.0235 58.2863 77.0653 56.76 75.9501C54.7423 76.3657 52.8238 77.167 51.11 78.3101C53.6042 80.2528 56.3881 81.7916 59.36 82.8701C59.8559 84.46 60.0493 86.1289 59.93 87.7901C57.0143 89.231 53.8946 90.2158 50.68 90.7101L45.33 87.2001C44.8267 84.1543 44.4928 81.0829 44.33 78.0001L46.79 72.0001L42.11 73.2901C39.3764 69.8089 37.1447 65.9614 35.48 61.8601C35.8913 59.794 36.446 57.7591 37.14 55.7701C38.0396 55.353 39.0185 55.1347 40.01 55.1301C41.1829 56.4396 42.5286 57.5834 44.01 58.5301C45.5927 58.4177 47.1398 58.0072 48.57 57.3201C49.4248 58.3064 49.9555 59.5319 50.09 60.8301C50.1535 63.2818 49.8157 65.7274 49.09 68.0701C51.0291 65.9044 52.5756 63.4172 53.66 60.7201C53.5231 58.5388 53.0439 56.3925 52.24 54.3601C49.5568 52.7999 46.6689 51.6218 43.66 50.8601C41.8028 51.3495 39.9871 51.9848 38.23 52.7601C39.69 49.1001 41.5 45.4101 43.37 41.4301C37.9875 47.2719 33.5507 53.9187 30.22 61.1301C32.95 69.0601 36.29 73.9401 40.33 79.2801C40.3243 82.5561 40.5582 85.8282 41.03 89.0701L45.84 92.0001C45.7692 94.1293 45.964 96.2591 46.42 98.3401C49.98 100.68 52.54 102.73 55.83 103.98C58.4158 109.612 60.2644 115.555 61.33 121.66C63.8491 116.048 65.8832 110.23 67.41 104.27C70.583 102.57 73.5493 100.51 76.25 98.1301C76.5276 96.7842 76.6716 95.4143 76.68 94.0401C78.761 92.3957 80.611 90.4785 82.18 88.3401C82.68 85.0401 82.27 81.9501 82.45 78.8101C85.1 75.0701 88.67 71.2201 90.73 67.1501C93.63 75.6601 94.98 86.0201 95.51 97.3501C92.1243 102.075 88.2532 106.432 83.96 110.35L82.96 111.2C83.5529 105.085 83.3715 98.9197 82.42 92.8501C80.1632 101.887 77.0387 110.684 73.09 119.12C69.3219 121.787 65.3343 124.128 61.17 126.12C56.5377 123.93 52.0812 121.386 47.84 118.51C40.91 109.24 36.65 98.0801 34.15 85.6901C33.7422 93.5449 34.4152 101.418 36.15 109.09C31.594 104.716 27.5543 99.8341 24.11 94.5401C24.2761 85.6772 25.0244 76.8348 26.35 68.0701C23.3788 73.926 21.0776 80.0984 19.49 86.4701C16.9787 81.4262 15.0207 76.1253 13.65 70.6601C18.45 58.7601 24.65 47.5501 34 37.8501C26.7 42.2801 19.4 51.0301 12.1 62.9501C11.92 61.7301 11.76 60.5101 11.63 59.2801C11.0805 53.9369 11.0169 48.5548 11.44 43.2001C15.6093 39.7522 20.1389 36.7649 24.95 34.2901C20.5858 34.5684 16.2781 35.426 12.14 36.8401C12.56 33.8601 13.12 30.8601 13.82 27.8401C15.9827 26.1192 18.2323 24.5104 20.56 23.0201C29.0037 24.9875 37.251 27.7188 45.2 31.1801C39.3125 26.7214 32.9985 22.8559 26.35 19.6401C29.198 18.1368 32.1409 16.8207 35.16 15.7001C38.6499 14.4336 42.23 13.4308 45.87 12.7001C50.5822 17.9765 54.5153 23.8998 57.55 30.2901C56.2848 23.924 54.3784 17.7022 51.86 11.7201C54.9757 11.3357 58.1108 11.1287 61.25 11.1001C64.4766 11.1287 67.6987 11.3457 70.9 11.7501C68.282 18.1815 66.1266 24.7917 64.45 31.5301C67.917 24.7972 72.1664 18.497 77.11 12.7601C80.599 13.4986 84.031 14.4844 87.38 15.7101C90.1182 16.7176 92.7901 17.8966 95.38 19.2401C85.3711 24.9655 75.8014 31.4266 66.75 38.5701C78.89 33.1701 93.24 26.6401 102.6 23.5701C104.24 24.7001 105.89 25.9301 107.6 27.2701C108.18 29.7501 108.66 32.2468 109.04 34.7601C105.244 34.352 101.428 34.1584 97.61 34.1801C102.013 36.1911 106.14 38.7587 109.89 41.8201C110.35 47.1868 110.353 52.5828 109.9 57.9501Z" fill="white"/> <path d="M88.112 64.0099C85.9326 67.7502 83.3287 71.2266 80.352 74.3699C78.7831 74.1724 77.2406 73.8035 75.752 73.2699C75.1668 69.0723 74.1032 64.9556 72.582 60.9999C73.3606 60.039 73.9847 58.9628 74.432 57.8099C75.628 58.4038 76.9467 58.7086 78.282 58.6999C79.6153 57.5015 80.7853 56.1331 81.762 54.6298C82.9226 54.5206 84.0931 54.5915 85.232 54.8399C86.4767 57.7997 87.4409 60.8699 88.112 64.0099Z" fill="white"/> <path d="M70.8809 96.4499C68.0193 98.7345 64.8812 100.65 61.5409 102.15C57.9433 100.599 54.623 98.4708 51.7109 95.8499C54.417 93.1894 57.7337 91.2323 61.3709 90.1499C64.785 91.856 67.9785 93.9716 70.8809 96.4499Z" fill="white"/> </svg> <svg width="179" height="61" viewBox="0 0 179 61" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7.268 21.583H19.9494V24.6041H7.268V21.583ZM7.61929 34.5454H4.10645V9.95554H21.4599V13.0117H7.61929V34.5454ZM34.6014 34.5454V9.95554H38.1142V34.5454H34.6014ZM53.6727 34.5454V9.95554H56.5532L72.8177 30.1544H71.3071V9.95554H74.82V34.5454H71.9394L55.675 14.3466H57.1855V34.5454H53.6727ZM90.3768 34.5454V9.95554H93.8897V31.4892H107.203V34.5454H90.3768ZM122.628 20.5643H135.274V23.5502H122.628V20.5643ZM122.944 31.4892H137.276V34.5454H119.431V9.95554H136.784V13.0117H122.944V31.4892ZM162.227 34.8264C160.354 34.8264 158.609 34.5103 156.993 33.878C155.4 33.2457 154.019 32.3675 152.848 31.2433C151.677 30.0958 150.764 28.7609 150.108 27.2387C149.452 25.7165 149.124 24.0537 149.124 22.2505C149.124 20.4472 149.452 18.7845 150.108 17.2622C150.764 15.74 151.677 14.4168 152.848 13.2927C154.019 12.1452 155.4 11.2553 156.993 10.623C158.585 9.99067 160.33 9.67451 162.227 9.67451C164.101 9.67451 165.822 9.99067 167.391 10.623C168.983 11.2319 170.365 12.1101 171.536 13.2576C172.73 14.3817 173.644 15.7049 174.276 17.2271C174.932 18.7493 175.26 20.4238 175.26 22.2505C175.26 24.0772 174.932 25.7516 174.276 27.2738C173.644 28.7961 172.73 30.1309 171.536 31.2785C170.365 32.4026 168.983 33.2808 167.391 33.9131C165.822 34.522 164.101 34.8264 162.227 34.8264ZM162.227 31.7C163.585 31.7 164.838 31.4658 165.986 30.9974C167.157 30.5291 168.164 29.8733 169.007 29.0303C169.873 28.1638 170.541 27.1567 171.009 26.0092C171.501 24.8617 171.747 23.6088 171.747 22.2505C171.747 20.8922 171.501 19.6393 171.009 18.4917C170.541 17.3442 169.873 16.3489 169.007 15.5058C168.164 14.6393 167.157 13.9719 165.986 13.5035C164.838 13.0351 163.585 12.8009 162.227 12.8009C160.845 12.8009 159.569 13.0351 158.398 13.5035C157.251 13.9719 156.244 14.6393 155.377 15.5058C154.511 16.3489 153.831 17.3442 153.34 18.4917C152.871 19.6393 152.637 20.8922 152.637 22.2505C152.637 23.6088 152.871 24.8617 153.34 26.0092C153.831 27.1567 154.511 28.1638 155.377 29.0303C156.244 29.8733 157.251 30.5291 158.398 30.9974C159.569 31.4658 160.845 31.7 162.227 31.7Z" class="logo__title"/> <path d="M1.56667 56.3198V48.9429H2.43083L5.73992 54.5177H5.27622L8.54316 48.9429H9.40732L9.41786 56.3198H8.40616L8.39562 50.5342H8.63801L5.72938 55.4241H5.24461L2.3149 50.5342H2.57836V56.3198H1.56667ZM10.9261 56.3198L14.2668 48.9429H15.3101L18.6613 56.3198H17.5548L14.5724 49.533H14.9939L12.0115 56.3198H10.9261ZM12.3488 54.4756L12.6333 53.6325H16.7855L17.0911 54.4756H12.3488ZM20.1687 56.3198V48.9429H23.0457C23.6921 48.9429 24.2436 49.0447 24.7003 49.2485C25.1569 49.4522 25.5082 49.7473 25.7541 50.1337C26 50.5201 26.123 50.9803 26.123 51.5143C26.123 52.0482 26 52.5084 25.7541 52.8948C25.5082 53.2742 25.1569 53.5693 24.7003 53.78C24.2436 53.9838 23.6921 54.0857 23.0457 54.0857H20.7483L21.2226 53.5903V56.3198H20.1687ZM21.2226 53.6957L20.7483 53.1688H23.0141C23.6886 53.1688 24.1979 53.0248 24.5422 52.7367C24.8935 52.4487 25.0691 52.0412 25.0691 51.5143C25.0691 50.9873 24.8935 50.5798 24.5422 50.2918C24.1979 50.0037 23.6886 49.8597 23.0141 49.8597H20.7483L21.2226 49.3328V53.6957ZM32.7867 56.3198L30.1099 52.684L30.9636 52.1571L33.9881 56.3198H32.7867ZM27.8231 56.3198V48.9429H28.8559V56.3198H27.8231ZM28.5397 53.074V52.1466H30.9319V53.074H28.5397ZM31.0584 52.7473L30.0889 52.5997L32.734 48.9429H33.8616L31.0584 52.7473ZM36.2615 52.1255H40.0554V53.0213H36.2615V52.1255ZM36.3563 55.403H40.6561V56.3198H35.3025V48.9429H40.5085V49.8597H36.3563V55.403ZM44.0522 56.3198V49.5857L44.3157 49.8597H41.5335V48.9429H47.6142V49.8597H44.8321L45.085 49.5857V56.3198H44.0522ZM49.1293 56.3198V48.9429H55.484V56.3198H54.4512V49.5857L54.7041 49.8597H49.9091L50.1726 49.5857V56.3198H49.1293ZM57.5782 56.4041C57.4728 56.4041 57.3675 56.3971 57.2621 56.3831C57.1567 56.369 57.0408 56.3479 56.9143 56.3198L56.9881 55.3819C57.1005 55.41 57.2129 55.4241 57.3253 55.4241C57.6344 55.4241 57.8803 55.3011 58.063 55.0552C58.2457 54.8093 58.3792 54.4369 58.4635 53.9381C58.5548 53.4393 58.6145 52.8105 58.6426 52.0517L58.7585 48.9429H63.954V56.3198H62.9213V49.5857L63.1742 49.8597H59.433L59.6649 49.5752L59.5805 52.0201C59.5595 52.7508 59.5103 53.3901 59.433 53.9381C59.3557 54.4861 59.2398 54.9428 59.0852 55.3081C58.9307 55.6735 58.7304 55.9475 58.4845 56.1301C58.2457 56.3128 57.9436 56.4041 57.5782 56.4041ZM67.445 52.1255H71.2389V53.0213H67.445V52.1255ZM67.5399 55.403H71.8396V56.3198H66.486V48.9429H71.6921V49.8597H67.5399V55.403ZM73.7287 56.3198V48.9429H74.7721V54.6337L79.135 48.9429H80.1045V56.3198H79.0718V50.6396L74.6983 56.3198H73.7287ZM76.9008 48.4265C76.3247 48.4265 75.8786 48.3 75.5624 48.0471C75.2533 47.7942 75.0952 47.4394 75.0882 46.9827H75.8364C75.8435 47.2567 75.9418 47.471 76.1315 47.6255C76.3212 47.7731 76.5777 47.8469 76.9008 47.8469C77.217 47.8469 77.4699 47.7731 77.6596 47.6255C77.8563 47.471 77.9582 47.2567 77.9652 46.9827H78.7029C78.6959 47.4394 78.5343 47.7942 78.2181 48.0471C77.909 48.3 77.4699 48.4265 76.9008 48.4265ZM85.9372 56.4041C85.3752 56.4041 84.8553 56.3128 84.3775 56.1301C83.9068 55.9404 83.4958 55.677 83.1445 55.3397C82.8003 54.9955 82.5298 54.595 82.3331 54.1384C82.1363 53.6817 82.038 53.1793 82.038 52.6313C82.038 52.0833 82.1363 51.581 82.3331 51.1243C82.5298 50.6677 82.8038 50.2707 83.1551 49.9335C83.5064 49.5892 83.9174 49.3258 84.3881 49.1431C84.8658 48.9534 85.3857 48.8586 85.9478 48.8586C86.5169 48.8586 87.0403 48.9569 87.518 49.1536C88.0028 49.3433 88.4138 49.6279 88.751 50.0073L88.066 50.6712C87.785 50.3761 87.4688 50.1583 87.1176 50.0178C86.7663 49.8703 86.3904 49.7965 85.9899 49.7965C85.5754 49.7965 85.189 49.8667 84.8307 50.0073C84.4794 50.1478 84.1738 50.3445 83.9138 50.5974C83.6539 50.8503 83.4501 51.1524 83.3026 51.5037C83.1621 51.848 83.0918 52.2239 83.0918 52.6313C83.0918 53.0388 83.1621 53.4182 83.3026 53.7695C83.4501 54.1138 83.6539 54.4124 83.9138 54.6653C84.1738 54.9182 84.4794 55.1149 84.8307 55.2554C85.189 55.3959 85.5754 55.4662 85.9899 55.4662C86.3904 55.4662 86.7663 55.3959 87.1176 55.2554C87.4688 55.1079 87.785 54.8831 88.066 54.581L88.751 55.2449C88.4138 55.6243 88.0028 55.9123 87.518 56.1091C87.0403 56.3058 86.5133 56.4041 85.9372 56.4041ZM98.4019 55.8245V49.8597H95.1666L95.1139 51.4089C95.0928 51.9288 95.0577 52.4276 95.0085 52.9053C94.9663 53.3831 94.9031 53.8152 94.8188 54.2016C94.7345 54.581 94.6151 54.8936 94.4605 55.1395C94.313 55.3854 94.1233 55.5365 93.8914 55.5927L92.7533 55.403C93.0273 55.4241 93.2521 55.3327 93.4277 55.129C93.6104 54.9182 93.7509 54.6266 93.8493 54.2543C93.9546 53.8749 94.0319 53.4358 94.0811 52.937C94.1303 52.4311 94.1654 51.8901 94.1865 51.314L94.2603 48.9429H99.4452V55.8245H98.4019ZM92.4898 57.9322L92.5003 55.403H100.531V57.9322H99.5506V56.3198H93.4804L93.4699 57.9322H92.4898ZM101.858 56.4041C101.752 56.4041 101.647 56.3971 101.542 56.3831C101.436 56.369 101.32 56.3479 101.194 56.3198L101.268 55.3819C101.38 55.41 101.492 55.4241 101.605 55.4241C101.914 55.4241 102.16 55.3011 102.343 55.0552C102.525 54.8093 102.659 54.4369 102.743 53.9381C102.834 53.4393 102.894 52.8105 102.922 52.0517L103.038 48.9429H108.234V56.3198H107.201V49.5857L107.454 49.8597H103.713L103.944 49.5752L103.86 52.0201C103.839 52.7508 103.79 53.3901 103.713 53.9381C103.635 54.4861 103.519 54.9428 103.365 55.3081C103.21 55.6735 103.01 55.9475 102.764 56.1301C102.525 56.3128 102.223 56.4041 101.858 56.4041ZM115.139 56.3198V53.917L115.413 54.17H113.105C112.508 54.17 111.992 54.0681 111.556 53.8644C111.127 53.6606 110.797 53.369 110.565 52.9897C110.341 52.6032 110.228 52.1395 110.228 51.5986C110.228 51.0365 110.351 50.5588 110.597 50.1653C110.843 49.7649 111.191 49.4628 111.64 49.259C112.09 49.0482 112.613 48.9429 113.211 48.9429H116.172V56.3198H115.139ZM110.228 56.3198L112.051 53.7063H113.126L111.345 56.3198H110.228ZM115.139 53.5798V49.5541L115.413 49.8597H113.253C112.62 49.8597 112.136 50.0073 111.798 50.3023C111.461 50.5904 111.293 51.019 111.293 51.588C111.293 52.129 111.451 52.547 111.767 52.8421C112.09 53.1372 112.564 53.2847 113.189 53.2847H115.413L115.139 53.5798ZM121.773 56.3198V48.9429H127.337V49.8386H122.816V51.9463H125.113C125.991 51.9463 126.659 52.129 127.116 52.4943C127.572 52.8597 127.801 53.3901 127.801 54.0857C127.801 54.8023 127.551 55.3538 127.052 55.7402C126.561 56.1266 125.854 56.3198 124.934 56.3198H121.773ZM122.816 55.4873H124.892C125.503 55.4873 125.963 55.3714 126.272 55.1395C126.589 54.9077 126.747 54.5634 126.747 54.1067C126.747 53.2215 126.128 52.7789 124.892 52.7789H122.816V55.4873ZM129.715 56.3198V48.9429H130.758V54.6337L135.121 48.9429H136.091V56.3198H135.058V50.6396L130.685 56.3198H129.715ZM137.814 55.5189L138.182 54.739C138.506 54.992 138.86 55.1817 139.247 55.3081C139.64 55.4346 140.03 55.5013 140.417 55.5084C140.803 55.5084 141.158 55.4557 141.481 55.3503C141.811 55.2449 142.075 55.0868 142.271 54.876C142.468 54.6653 142.566 54.4053 142.566 54.0962C142.566 53.7168 142.412 53.4288 142.103 53.232C141.801 53.0353 141.379 52.937 140.838 52.937H139.194V52.0833H140.764C141.235 52.0833 141.6 51.9885 141.86 51.7988C142.127 51.6021 142.261 51.3316 142.261 50.9873C142.261 50.7274 142.18 50.5096 142.018 50.3339C141.864 50.1513 141.65 50.0143 141.376 49.9229C141.109 49.8316 140.803 49.7859 140.459 49.7859C140.121 49.7789 139.774 49.8246 139.415 49.9229C139.057 50.0143 138.713 50.1618 138.383 50.3656L138.045 49.5014C138.495 49.2485 138.962 49.0728 139.447 48.9745C139.939 48.8691 140.413 48.8375 140.87 48.8796C141.326 48.9148 141.737 49.0201 142.103 49.1958C142.475 49.3644 142.77 49.5892 142.988 49.8703C143.213 50.1443 143.325 50.4745 143.325 50.8609C143.325 51.2122 143.234 51.5248 143.051 51.7988C142.869 52.0658 142.616 52.273 142.292 52.4206C141.969 52.5611 141.593 52.6313 141.165 52.6313L141.207 52.3468C141.699 52.3468 142.124 52.4276 142.482 52.5892C142.847 52.7438 143.128 52.9651 143.325 53.2531C143.529 53.5412 143.631 53.8749 143.631 54.2543C143.631 54.6126 143.539 54.9323 143.357 55.2133C143.174 55.4873 142.925 55.7191 142.609 55.9088C142.299 56.0915 141.945 56.225 141.544 56.3093C141.151 56.3936 140.736 56.4217 140.301 56.3936C139.865 56.3655 139.433 56.2812 139.004 56.1407C138.583 56.0002 138.186 55.7929 137.814 55.5189ZM150.911 48.9429H151.965V56.3198H150.911V48.9429ZM146.675 56.3198H145.621V48.9429H146.675V56.3198ZM151.006 53.0318H146.569V52.115H151.006V53.0318ZM155.459 52.1255H159.253V53.0213H155.459V52.1255ZM155.554 55.403H159.853V56.3198H154.5V48.9429H159.706V49.8597H155.554V55.403ZM165.031 56.4041C164.469 56.4041 163.949 56.3128 163.471 56.1301C163 55.9404 162.589 55.677 162.238 55.3397C161.894 54.9955 161.623 54.595 161.427 54.1384C161.23 53.6817 161.131 53.1793 161.131 52.6313C161.131 52.0833 161.23 51.581 161.427 51.1243C161.623 50.6677 161.897 50.2707 162.249 49.9335C162.6 49.5892 163.011 49.3258 163.482 49.1431C163.959 48.9534 164.479 48.8586 165.041 48.8586C165.61 48.8586 166.134 48.9569 166.612 49.1536C167.096 49.3433 167.507 49.6279 167.845 50.0073L167.16 50.6712C166.879 50.3761 166.562 50.1583 166.211 50.0178C165.86 49.8703 165.484 49.7965 165.083 49.7965C164.669 49.7965 164.283 49.8667 163.924 50.0073C163.573 50.1478 163.267 50.3445 163.007 50.5974C162.747 50.8503 162.544 51.1524 162.396 51.5037C162.256 51.848 162.185 52.2239 162.185 52.6313C162.185 53.0388 162.256 53.4182 162.396 53.7695C162.544 54.1138 162.747 54.4124 163.007 54.6653C163.267 54.9182 163.573 55.1149 163.924 55.2554C164.283 55.3959 164.669 55.4662 165.083 55.4662C165.484 55.4662 165.86 55.3959 166.211 55.2554C166.562 55.1079 166.879 54.8831 167.16 54.581L167.845 55.2449C167.507 55.6243 167.096 55.9123 166.612 56.1091C166.134 56.3058 165.607 56.4041 165.031 56.4041ZM168.333 56.3198L171.674 48.9429H172.717L176.069 56.3198H174.962L171.98 49.533H172.401L169.419 56.3198H168.333ZM169.756 54.4756L170.041 53.6325H174.193L174.498 54.4756H169.756Z" class="logo__text"/> </svg> </a>";} 0 3335 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Логотип
816 433 a:1:{s:7:"content";s:31:"<div id="fix-footer"> </div>";} 0 3336 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Мобильный фиксированный футер
2562 439 a:1:{s:7:"content";s:5081:"<p></p><p>&nbsp; &nbsp; &lt;div class="select-sign"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href="/login/" class=" cm-dialog-opener cm-dialog-auto-size "&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"></svg><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;g clip-path="url(#clip0_1833_25920)"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M8.8125 15.9375L12.75 12L8.8125 8.0625" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M2.25 12H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M12.75 3.75H18C18.1989 3.75 18.3897 3.82902 18.5303 3.96967C18.671 4.11032 18.75 4.30109 18.75 4.5V19.5C18.75 19.6989 18.671 19.8897 18.5303 20.0303C18.3897 20.171 18.1989 20.25 18 20.25H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/g&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;clipPath id="clip0_1833_25920"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;rect width="24" height="24" fill="white"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/clipPath&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/svg&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;FINLEO&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;маркетплейс&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/a&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;noindex&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; <a itemprop="url" target="_blank" href="https://crm.finleo.ru/signin" rel="nofolow"></a><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"></svg><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;g clip-path="url(#clip0_1833_25920)"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M8.8125 15.9375L12.75 12L8.8125 8.0625" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M2.25 12H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M12.75 3.75H18C18.1989 3.75 18.3897 3.82902 18.5303 3.96967C18.671 4.11032 18.75 4.30109 18.75 4.5V19.5C18.75 19.6989 18.671 19.8897 18.5303 20.0303C18.3897 20.171 18.1989 20.25 18 20.25H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/g&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;clipPath id="clip0_1833_25920"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;rect width="24" height="24" fill="white"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/clipPath&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/svg&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;FINLEO&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;финкабинет&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/a&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/noindex&gt;<br>&nbsp; &nbsp; &lt;/div&gt;<br>&lt;script&gt;<br>$("#signin").click(function() {<br>$(".select-sign").toggleClass("active");<br>})</p> <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(document).mouseup(function (e) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var div = $(".select-sign");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (!div.is(e.target)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; && div.has(e.target).length === 0) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(".select-sign").toggleClass("active", false);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br>&lt;/script&gt;</p><p></p>";} 0 3352 0 D html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru custom-hr
2575 452 0 3517 0 A fl_category_relinking_blog a:2:{s:8:"template";s:48:"addons/custom/blocks/category_relinking_blog.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Статьи
2563 465 a:1:{s:7:"content";s:341:"{$category_content = $category_data.content|default:''|unserialize} {if isset($category_content.phone)} <div class="st-phone"><a href="tel:{str_replace(" ", '', $category_content.phone)}"><span>{$category_content.phone}</span></a></div> {else} <div class="st-phone"><a href="tel:88003502126"><span>8 800 350 21 26</span></a></div> {/if}";} 0 3530 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Номер телефона
816 468 0 3533 0 A template a:2:{s:8:"template";s:40:"blocks/static_templates/sign_sidebar.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Сайдбар "В чем разница?"
2568 480 0 3546 0 A template a:2:{s:8:"template";s:40:"blocks/static_templates/menu_compare.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Сравнение
2567 495 0 3570 0 A burger a:2:{s:8:"template";s:32:"blocks/menu/component/burger.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Новое меню
816 177 a:1:{s:7:"content";s:17496:"<div class="footer-policy"> <a href="/" class="logo"> <svg width="31" height="35" viewBox="0 0 123 139" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M59.1121 137.56C36.6521 127.56 19.5321 111.82 9.61209 92.03C-0.56791 71.72 -2.70791 47.95 3.41209 23.28L3.83209 21.59L5.17209 20.49C20.9518 7.46661 40.7135 0.23594 61.1721 0H61.2621C81.7207 0.23594 101.482 7.46661 117.262 20.49L118.602 21.59L119.022 23.28C125.142 47.95 123.022 71.72 112.802 92.03C102.882 111.82 85.8021 127.56 63.3021 137.56L61.1621 138.51L59.1121 137.56Z" fill="white"></path> <path d="M114.013 24.54C99.167 12.25 80.5458 5.43914 61.2734 5.25C41.9976 5.43685 23.3725 12.2478 8.52339 24.54C-3.47661 73 18.4234 113.7 61.2534 132.76C104.113 113.7 126.043 73 114.013 24.54Z" fill="#FF2022"></path> <path d="M109.9 57.9501C103.907 50.0188 96.6702 43.1096 88.47 37.4901C95.73 45.1301 102.29 55.8301 108.35 68.6501C107.128 74.6497 105.131 80.4651 102.41 85.9501C94.13 64.2801 86.23 47.9501 78.77 40.8301C80.5293 43.7513 81.8501 46.9151 82.69 50.2201C78.459 50.8197 74.3743 52.1925 70.64 54.2701C69.8071 56.3355 69.2295 58.4948 68.92 60.7001C70.9096 64.718 72.0919 69.0872 72.4 73.5601L74.01 76.6401L78.3 77.9301L77.95 87.2301L72.95 91.3101C69.6157 90.5527 66.3926 89.3697 63.36 87.7901C63.2236 86.1029 63.4138 84.4053 63.92 82.7901C66.8931 81.7143 69.6775 80.1753 72.17 78.2301C70.4471 77.114 68.5255 76.34 66.51 75.9501C64.9872 77.0651 63.3556 78.0233 61.64 78.8101C59.9212 78.0235 58.2863 77.0653 56.76 75.9501C54.7423 76.3657 52.8238 77.167 51.11 78.3101C53.6042 80.2528 56.3881 81.7916 59.36 82.8701C59.8559 84.46 60.0493 86.1289 59.93 87.7901C57.0143 89.231 53.8946 90.2158 50.68 90.7101L45.33 87.2001C44.8267 84.1543 44.4928 81.0829 44.33 78.0001L46.79 72.0001L42.11 73.2901C39.3764 69.8089 37.1447 65.9614 35.48 61.8601C35.8913 59.794 36.446 57.7591 37.14 55.7701C38.0396 55.353 39.0185 55.1347 40.01 55.1301C41.1829 56.4396 42.5286 57.5834 44.01 58.5301C45.5927 58.4177 47.1398 58.0072 48.57 57.3201C49.4248 58.3064 49.9555 59.5319 50.09 60.8301C50.1535 63.2818 49.8157 65.7274 49.09 68.0701C51.0291 65.9044 52.5756 63.4172 53.66 60.7201C53.5231 58.5388 53.0439 56.3925 52.24 54.3601C49.5568 52.7999 46.6689 51.6218 43.66 50.8601C41.8028 51.3495 39.9871 51.9848 38.23 52.7601C39.69 49.1001 41.5 45.4101 43.37 41.4301C37.9875 47.2719 33.5507 53.9187 30.22 61.1301C32.95 69.0601 36.29 73.9401 40.33 79.2801C40.3243 82.5561 40.5582 85.8282 41.03 89.0701L45.84 92.0001C45.7692 94.1293 45.964 96.2591 46.42 98.3401C49.98 100.68 52.54 102.73 55.83 103.98C58.4158 109.612 60.2644 115.555 61.33 121.66C63.8491 116.048 65.8832 110.23 67.41 104.27C70.583 102.57 73.5493 100.51 76.25 98.1301C76.5276 96.7842 76.6716 95.4143 76.68 94.0401C78.761 92.3957 80.611 90.4785 82.18 88.3401C82.68 85.0401 82.27 81.9501 82.45 78.8101C85.1 75.0701 88.67 71.2201 90.73 67.1501C93.63 75.6601 94.98 86.0201 95.51 97.3501C92.1243 102.075 88.2532 106.432 83.96 110.35L82.96 111.2C83.5529 105.085 83.3715 98.9197 82.42 92.8501C80.1632 101.887 77.0387 110.684 73.09 119.12C69.3219 121.787 65.3343 124.128 61.17 126.12C56.5377 123.93 52.0812 121.386 47.84 118.51C40.91 109.24 36.65 98.0801 34.15 85.6901C33.7422 93.5449 34.4152 101.418 36.15 109.09C31.594 104.716 27.5543 99.8341 24.11 94.5401C24.2761 85.6772 25.0244 76.8348 26.35 68.0701C23.3788 73.926 21.0776 80.0984 19.49 86.4701C16.9787 81.4262 15.0207 76.1253 13.65 70.6601C18.45 58.7601 24.65 47.5501 34 37.8501C26.7 42.2801 19.4 51.0301 12.1 62.9501C11.92 61.7301 11.76 60.5101 11.63 59.2801C11.0805 53.9369 11.0169 48.5548 11.44 43.2001C15.6093 39.7522 20.1389 36.7649 24.95 34.2901C20.5858 34.5684 16.2781 35.426 12.14 36.8401C12.56 33.8601 13.12 30.8601 13.82 27.8401C15.9827 26.1192 18.2323 24.5104 20.56 23.0201C29.0037 24.9875 37.251 27.7188 45.2 31.1801C39.3125 26.7214 32.9985 22.8559 26.35 19.6401C29.198 18.1368 32.1409 16.8207 35.16 15.7001C38.6499 14.4336 42.23 13.4308 45.87 12.7001C50.5822 17.9765 54.5153 23.8998 57.55 30.2901C56.2848 23.924 54.3784 17.7022 51.86 11.7201C54.9757 11.3357 58.1108 11.1287 61.25 11.1001C64.4766 11.1287 67.6987 11.3457 70.9 11.7501C68.282 18.1815 66.1266 24.7917 64.45 31.5301C67.917 24.7972 72.1664 18.497 77.11 12.7601C80.599 13.4986 84.031 14.4844 87.38 15.7101C90.1182 16.7176 92.7901 17.8966 95.38 19.2401C85.3711 24.9655 75.8014 31.4266 66.75 38.5701C78.89 33.1701 93.24 26.6401 102.6 23.5701C104.24 24.7001 105.89 25.9301 107.6 27.2701C108.18 29.7501 108.66 32.2468 109.04 34.7601C105.244 34.352 101.428 34.1584 97.61 34.1801C102.013 36.1911 106.14 38.7587 109.89 41.8201C110.35 47.1868 110.353 52.5828 109.9 57.9501Z" fill="white"></path> <path d="M88.112 64.0099C85.9326 67.7502 83.3287 71.2266 80.352 74.3699C78.7831 74.1724 77.2406 73.8035 75.752 73.2699C75.1668 69.0723 74.1032 64.9556 72.582 60.9999C73.3606 60.039 73.9847 58.9628 74.432 57.8099C75.628 58.4038 76.9467 58.7086 78.282 58.6999C79.6153 57.5015 80.7853 56.1331 81.762 54.6298C82.9226 54.5206 84.0931 54.5915 85.232 54.8399C86.4767 57.7997 87.4409 60.8699 88.112 64.0099Z" fill="white"></path> <path d="M70.8809 96.4499C68.0193 98.7345 64.8812 100.65 61.5409 102.15C57.9433 100.599 54.623 98.4708 51.7109 95.8499C54.417 93.1894 57.7337 91.2323 61.3709 90.1499C64.785 91.856 67.9785 93.9716 70.8809 96.4499Z" fill="white"></path> </svg> <svg width="116" height="61" viewBox="0 0 179 61" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7.268 21.583H19.9494V24.6041H7.268V21.583ZM7.61929 34.5454H4.10645V9.95554H21.4599V13.0117H7.61929V34.5454ZM34.6014 34.5454V9.95554H38.1142V34.5454H34.6014ZM53.6727 34.5454V9.95554H56.5532L72.8177 30.1544H71.3071V9.95554H74.82V34.5454H71.9394L55.675 14.3466H57.1855V34.5454H53.6727ZM90.3768 34.5454V9.95554H93.8897V31.4892H107.203V34.5454H90.3768ZM122.628 20.5643H135.274V23.5502H122.628V20.5643ZM122.944 31.4892H137.276V34.5454H119.431V9.95554H136.784V13.0117H122.944V31.4892ZM162.227 34.8264C160.354 34.8264 158.609 34.5103 156.993 33.878C155.4 33.2457 154.019 32.3675 152.848 31.2433C151.677 30.0958 150.764 28.7609 150.108 27.2387C149.452 25.7165 149.124 24.0537 149.124 22.2505C149.124 20.4472 149.452 18.7845 150.108 17.2622C150.764 15.74 151.677 14.4168 152.848 13.2927C154.019 12.1452 155.4 11.2553 156.993 10.623C158.585 9.99067 160.33 9.67451 162.227 9.67451C164.101 9.67451 165.822 9.99067 167.391 10.623C168.983 11.2319 170.365 12.1101 171.536 13.2576C172.73 14.3817 173.644 15.7049 174.276 17.2271C174.932 18.7493 175.26 20.4238 175.26 22.2505C175.26 24.0772 174.932 25.7516 174.276 27.2738C173.644 28.7961 172.73 30.1309 171.536 31.2785C170.365 32.4026 168.983 33.2808 167.391 33.9131C165.822 34.522 164.101 34.8264 162.227 34.8264ZM162.227 31.7C163.585 31.7 164.838 31.4658 165.986 30.9974C167.157 30.5291 168.164 29.8733 169.007 29.0303C169.873 28.1638 170.541 27.1567 171.009 26.0092C171.501 24.8617 171.747 23.6088 171.747 22.2505C171.747 20.8922 171.501 19.6393 171.009 18.4917C170.541 17.3442 169.873 16.3489 169.007 15.5058C168.164 14.6393 167.157 13.9719 165.986 13.5035C164.838 13.0351 163.585 12.8009 162.227 12.8009C160.845 12.8009 159.569 13.0351 158.398 13.5035C157.251 13.9719 156.244 14.6393 155.377 15.5058C154.511 16.3489 153.831 17.3442 153.34 18.4917C152.871 19.6393 152.637 20.8922 152.637 22.2505C152.637 23.6088 152.871 24.8617 153.34 26.0092C153.831 27.1567 154.511 28.1638 155.377 29.0303C156.244 29.8733 157.251 30.5291 158.398 30.9974C159.569 31.4658 160.845 31.7 162.227 31.7Z" class="logo__title"></path> <path d="M1.56667 56.3198V48.9429H2.43083L5.73992 54.5177H5.27622L8.54316 48.9429H9.40732L9.41786 56.3198H8.40616L8.39562 50.5342H8.63801L5.72938 55.4241H5.24461L2.3149 50.5342H2.57836V56.3198H1.56667ZM10.9261 56.3198L14.2668 48.9429H15.3101L18.6613 56.3198H17.5548L14.5724 49.533H14.9939L12.0115 56.3198H10.9261ZM12.3488 54.4756L12.6333 53.6325H16.7855L17.0911 54.4756H12.3488ZM20.1687 56.3198V48.9429H23.0457C23.6921 48.9429 24.2436 49.0447 24.7003 49.2485C25.1569 49.4522 25.5082 49.7473 25.7541 50.1337C26 50.5201 26.123 50.9803 26.123 51.5143C26.123 52.0482 26 52.5084 25.7541 52.8948C25.5082 53.2742 25.1569 53.5693 24.7003 53.78C24.2436 53.9838 23.6921 54.0857 23.0457 54.0857H20.7483L21.2226 53.5903V56.3198H20.1687ZM21.2226 53.6957L20.7483 53.1688H23.0141C23.6886 53.1688 24.1979 53.0248 24.5422 52.7367C24.8935 52.4487 25.0691 52.0412 25.0691 51.5143C25.0691 50.9873 24.8935 50.5798 24.5422 50.2918C24.1979 50.0037 23.6886 49.8597 23.0141 49.8597H20.7483L21.2226 49.3328V53.6957ZM32.7867 56.3198L30.1099 52.684L30.9636 52.1571L33.9881 56.3198H32.7867ZM27.8231 56.3198V48.9429H28.8559V56.3198H27.8231ZM28.5397 53.074V52.1466H30.9319V53.074H28.5397ZM31.0584 52.7473L30.0889 52.5997L32.734 48.9429H33.8616L31.0584 52.7473ZM36.2615 52.1255H40.0554V53.0213H36.2615V52.1255ZM36.3563 55.403H40.6561V56.3198H35.3025V48.9429H40.5085V49.8597H36.3563V55.403ZM44.0522 56.3198V49.5857L44.3157 49.8597H41.5335V48.9429H47.6142V49.8597H44.8321L45.085 49.5857V56.3198H44.0522ZM49.1293 56.3198V48.9429H55.484V56.3198H54.4512V49.5857L54.7041 49.8597H49.9091L50.1726 49.5857V56.3198H49.1293ZM57.5782 56.4041C57.4728 56.4041 57.3675 56.3971 57.2621 56.3831C57.1567 56.369 57.0408 56.3479 56.9143 56.3198L56.9881 55.3819C57.1005 55.41 57.2129 55.4241 57.3253 55.4241C57.6344 55.4241 57.8803 55.3011 58.063 55.0552C58.2457 54.8093 58.3792 54.4369 58.4635 53.9381C58.5548 53.4393 58.6145 52.8105 58.6426 52.0517L58.7585 48.9429H63.954V56.3198H62.9213V49.5857L63.1742 49.8597H59.433L59.6649 49.5752L59.5805 52.0201C59.5595 52.7508 59.5103 53.3901 59.433 53.9381C59.3557 54.4861 59.2398 54.9428 59.0852 55.3081C58.9307 55.6735 58.7304 55.9475 58.4845 56.1301C58.2457 56.3128 57.9436 56.4041 57.5782 56.4041ZM67.445 52.1255H71.2389V53.0213H67.445V52.1255ZM67.5399 55.403H71.8396V56.3198H66.486V48.9429H71.6921V49.8597H67.5399V55.403ZM73.7287 56.3198V48.9429H74.7721V54.6337L79.135 48.9429H80.1045V56.3198H79.0718V50.6396L74.6983 56.3198H73.7287ZM76.9008 48.4265C76.3247 48.4265 75.8786 48.3 75.5624 48.0471C75.2533 47.7942 75.0952 47.4394 75.0882 46.9827H75.8364C75.8435 47.2567 75.9418 47.471 76.1315 47.6255C76.3212 47.7731 76.5777 47.8469 76.9008 47.8469C77.217 47.8469 77.4699 47.7731 77.6596 47.6255C77.8563 47.471 77.9582 47.2567 77.9652 46.9827H78.7029C78.6959 47.4394 78.5343 47.7942 78.2181 48.0471C77.909 48.3 77.4699 48.4265 76.9008 48.4265ZM85.9372 56.4041C85.3752 56.4041 84.8553 56.3128 84.3775 56.1301C83.9068 55.9404 83.4958 55.677 83.1445 55.3397C82.8003 54.9955 82.5298 54.595 82.3331 54.1384C82.1363 53.6817 82.038 53.1793 82.038 52.6313C82.038 52.0833 82.1363 51.581 82.3331 51.1243C82.5298 50.6677 82.8038 50.2707 83.1551 49.9335C83.5064 49.5892 83.9174 49.3258 84.3881 49.1431C84.8658 48.9534 85.3857 48.8586 85.9478 48.8586C86.5169 48.8586 87.0403 48.9569 87.518 49.1536C88.0028 49.3433 88.4138 49.6279 88.751 50.0073L88.066 50.6712C87.785 50.3761 87.4688 50.1583 87.1176 50.0178C86.7663 49.8703 86.3904 49.7965 85.9899 49.7965C85.5754 49.7965 85.189 49.8667 84.8307 50.0073C84.4794 50.1478 84.1738 50.3445 83.9138 50.5974C83.6539 50.8503 83.4501 51.1524 83.3026 51.5037C83.1621 51.848 83.0918 52.2239 83.0918 52.6313C83.0918 53.0388 83.1621 53.4182 83.3026 53.7695C83.4501 54.1138 83.6539 54.4124 83.9138 54.6653C84.1738 54.9182 84.4794 55.1149 84.8307 55.2554C85.189 55.3959 85.5754 55.4662 85.9899 55.4662C86.3904 55.4662 86.7663 55.3959 87.1176 55.2554C87.4688 55.1079 87.785 54.8831 88.066 54.581L88.751 55.2449C88.4138 55.6243 88.0028 55.9123 87.518 56.1091C87.0403 56.3058 86.5133 56.4041 85.9372 56.4041ZM98.4019 55.8245V49.8597H95.1666L95.1139 51.4089C95.0928 51.9288 95.0577 52.4276 95.0085 52.9053C94.9663 53.3831 94.9031 53.8152 94.8188 54.2016C94.7345 54.581 94.6151 54.8936 94.4605 55.1395C94.313 55.3854 94.1233 55.5365 93.8914 55.5927L92.7533 55.403C93.0273 55.4241 93.2521 55.3327 93.4277 55.129C93.6104 54.9182 93.7509 54.6266 93.8493 54.2543C93.9546 53.8749 94.0319 53.4358 94.0811 52.937C94.1303 52.4311 94.1654 51.8901 94.1865 51.314L94.2603 48.9429H99.4452V55.8245H98.4019ZM92.4898 57.9322L92.5003 55.403H100.531V57.9322H99.5506V56.3198H93.4804L93.4699 57.9322H92.4898ZM101.858 56.4041C101.752 56.4041 101.647 56.3971 101.542 56.3831C101.436 56.369 101.32 56.3479 101.194 56.3198L101.268 55.3819C101.38 55.41 101.492 55.4241 101.605 55.4241C101.914 55.4241 102.16 55.3011 102.343 55.0552C102.525 54.8093 102.659 54.4369 102.743 53.9381C102.834 53.4393 102.894 52.8105 102.922 52.0517L103.038 48.9429H108.234V56.3198H107.201V49.5857L107.454 49.8597H103.713L103.944 49.5752L103.86 52.0201C103.839 52.7508 103.79 53.3901 103.713 53.9381C103.635 54.4861 103.519 54.9428 103.365 55.3081C103.21 55.6735 103.01 55.9475 102.764 56.1301C102.525 56.3128 102.223 56.4041 101.858 56.4041ZM115.139 56.3198V53.917L115.413 54.17H113.105C112.508 54.17 111.992 54.0681 111.556 53.8644C111.127 53.6606 110.797 53.369 110.565 52.9897C110.341 52.6032 110.228 52.1395 110.228 51.5986C110.228 51.0365 110.351 50.5588 110.597 50.1653C110.843 49.7649 111.191 49.4628 111.64 49.259C112.09 49.0482 112.613 48.9429 113.211 48.9429H116.172V56.3198H115.139ZM110.228 56.3198L112.051 53.7063H113.126L111.345 56.3198H110.228ZM115.139 53.5798V49.5541L115.413 49.8597H113.253C112.62 49.8597 112.136 50.0073 111.798 50.3023C111.461 50.5904 111.293 51.019 111.293 51.588C111.293 52.129 111.451 52.547 111.767 52.8421C112.09 53.1372 112.564 53.2847 113.189 53.2847H115.413L115.139 53.5798ZM121.773 56.3198V48.9429H127.337V49.8386H122.816V51.9463H125.113C125.991 51.9463 126.659 52.129 127.116 52.4943C127.572 52.8597 127.801 53.3901 127.801 54.0857C127.801 54.8023 127.551 55.3538 127.052 55.7402C126.561 56.1266 125.854 56.3198 124.934 56.3198H121.773ZM122.816 55.4873H124.892C125.503 55.4873 125.963 55.3714 126.272 55.1395C126.589 54.9077 126.747 54.5634 126.747 54.1067C126.747 53.2215 126.128 52.7789 124.892 52.7789H122.816V55.4873ZM129.715 56.3198V48.9429H130.758V54.6337L135.121 48.9429H136.091V56.3198H135.058V50.6396L130.685 56.3198H129.715ZM137.814 55.5189L138.182 54.739C138.506 54.992 138.86 55.1817 139.247 55.3081C139.64 55.4346 140.03 55.5013 140.417 55.5084C140.803 55.5084 141.158 55.4557 141.481 55.3503C141.811 55.2449 142.075 55.0868 142.271 54.876C142.468 54.6653 142.566 54.4053 142.566 54.0962C142.566 53.7168 142.412 53.4288 142.103 53.232C141.801 53.0353 141.379 52.937 140.838 52.937H139.194V52.0833H140.764C141.235 52.0833 141.6 51.9885 141.86 51.7988C142.127 51.6021 142.261 51.3316 142.261 50.9873C142.261 50.7274 142.18 50.5096 142.018 50.3339C141.864 50.1513 141.65 50.0143 141.376 49.9229C141.109 49.8316 140.803 49.7859 140.459 49.7859C140.121 49.7789 139.774 49.8246 139.415 49.9229C139.057 50.0143 138.713 50.1618 138.383 50.3656L138.045 49.5014C138.495 49.2485 138.962 49.0728 139.447 48.9745C139.939 48.8691 140.413 48.8375 140.87 48.8796C141.326 48.9148 141.737 49.0201 142.103 49.1958C142.475 49.3644 142.77 49.5892 142.988 49.8703C143.213 50.1443 143.325 50.4745 143.325 50.8609C143.325 51.2122 143.234 51.5248 143.051 51.7988C142.869 52.0658 142.616 52.273 142.292 52.4206C141.969 52.5611 141.593 52.6313 141.165 52.6313L141.207 52.3468C141.699 52.3468 142.124 52.4276 142.482 52.5892C142.847 52.7438 143.128 52.9651 143.325 53.2531C143.529 53.5412 143.631 53.8749 143.631 54.2543C143.631 54.6126 143.539 54.9323 143.357 55.2133C143.174 55.4873 142.925 55.7191 142.609 55.9088C142.299 56.0915 141.945 56.225 141.544 56.3093C141.151 56.3936 140.736 56.4217 140.301 56.3936C139.865 56.3655 139.433 56.2812 139.004 56.1407C138.583 56.0002 138.186 55.7929 137.814 55.5189ZM150.911 48.9429H151.965V56.3198H150.911V48.9429ZM146.675 56.3198H145.621V48.9429H146.675V56.3198ZM151.006 53.0318H146.569V52.115H151.006V53.0318ZM155.459 52.1255H159.253V53.0213H155.459V52.1255ZM155.554 55.403H159.853V56.3198H154.5V48.9429H159.706V49.8597H155.554V55.403ZM165.031 56.4041C164.469 56.4041 163.949 56.3128 163.471 56.1301C163 55.9404 162.589 55.677 162.238 55.3397C161.894 54.9955 161.623 54.595 161.427 54.1384C161.23 53.6817 161.131 53.1793 161.131 52.6313C161.131 52.0833 161.23 51.581 161.427 51.1243C161.623 50.6677 161.897 50.2707 162.249 49.9335C162.6 49.5892 163.011 49.3258 163.482 49.1431C163.959 48.9534 164.479 48.8586 165.041 48.8586C165.61 48.8586 166.134 48.9569 166.612 49.1536C167.096 49.3433 167.507 49.6279 167.845 50.0073L167.16 50.6712C166.879 50.3761 166.562 50.1583 166.211 50.0178C165.86 49.8703 165.484 49.7965 165.083 49.7965C164.669 49.7965 164.283 49.8667 163.924 50.0073C163.573 50.1478 163.267 50.3445 163.007 50.5974C162.747 50.8503 162.544 51.1524 162.396 51.5037C162.256 51.848 162.185 52.2239 162.185 52.6313C162.185 53.0388 162.256 53.4182 162.396 53.7695C162.544 54.1138 162.747 54.4124 163.007 54.6653C163.267 54.9182 163.573 55.1149 163.924 55.2554C164.283 55.3959 164.669 55.4662 165.083 55.4662C165.484 55.4662 165.86 55.3959 166.211 55.2554C166.562 55.1079 166.879 54.8831 167.16 54.581L167.845 55.2449C167.507 55.6243 167.096 55.9123 166.612 56.1091C166.134 56.3058 165.607 56.4041 165.031 56.4041ZM168.333 56.3198L171.674 48.9429H172.717L176.069 56.3198H174.962L171.98 49.533H172.401L169.419 56.3198H168.333ZM169.756 54.4756L170.041 53.6325H174.193L174.498 54.4756H169.756Z" class="logo__text"></path> </svg> </a> <style> .footer-policy { align-items: center; } </style> <div class="footer-finleo">Finleo®</div> <div><a href="/politika-konfidencialnosti/">Политика конфиденциальности</a></div> <div><a href="/sitemap/">Карта сайта</a></div> <div><a href="/polzovatelskoe-soglashenie/">Пользовательское соглашение</a></div> </div>";} 0 1032 1 A html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Футер соглашения
2562 409 0 3308 1 A fl_subcategories_menu a:2:{s:8:"template";s:42:"addons/custom/blocks/custom_categories.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Блок каегорий
2567 417 0 3317 hidden-desktop hidden-tablet 1 D location_selector a:2:{s:8:"template";s:52:"addons/vendor_locations/blocks/location_selector.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Яндекс карта
2568 419 0 3319 top-buttons-grid 1 A template a:2:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__top_buttons.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru AB: Кнопки Сравнение и Избранное
2572 421 a:1:{s:7:"content";s:501:"<ul id="customer_service_links"> <li class="ty-footer-menu__item"><a href="/index.php?dispatch=companies.apply_for_vendor" rel="nofollow">Стать продавцом</a></li> <li class="ty-footer-menu__item"><a href="/manual/" rel="nofollow">Инструкции по работе</a></li> <li class="ty-footer-menu__item"><a href="/rule/" rel="nofollow">Правила</a></li> <li class="ty-footer-menu__item"><a href="/prices/" rel="nofollow">Платные услуги</a></li> </ul>";} 0 3323 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Продавцам
2561 453 0 3518 1 A fl_category_relinking a:2:{s:8:"template";s:43:"addons/custom/blocks/category_relinking.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Перелинковка
2568 91 0 3321 ut2-top-cart-content 2 D cart_content a:5:{s:8:"template";s:23:"blocks/cart_content.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:22:"display_bottom_buttons";s:1:"Y";s:20:"display_delete_icons";s:1:"Y";s:19:"products_links_type";s:5:"thumb";} 0 1 ru Заказы
2562 411 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:0:"";}} 0 3310 new_line_filter 2 D product_filters a:2:{s:8:"template";s:52:"blocks/product_filters/for_category/line_filters.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Горизонтальный фильтр
2571 422 0 3324 blocks/wrappers/footer_general.tpl 2 A template a:2:{s:8:"template";s:44:"blocks/static_templates/my_account_links.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Покупателям
816 439 a:1:{s:7:"content";s:5081:"<p></p><p>&nbsp; &nbsp; &lt;div class="select-sign"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href="/login/" class=" cm-dialog-opener cm-dialog-auto-size "&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"></svg><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;g clip-path="url(#clip0_1833_25920)"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M8.8125 15.9375L12.75 12L8.8125 8.0625" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M2.25 12H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M12.75 3.75H18C18.1989 3.75 18.3897 3.82902 18.5303 3.96967C18.671 4.11032 18.75 4.30109 18.75 4.5V19.5C18.75 19.6989 18.671 19.8897 18.5303 20.0303C18.3897 20.171 18.1989 20.25 18 20.25H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/g&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;clipPath id="clip0_1833_25920"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;rect width="24" height="24" fill="white"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/clipPath&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/svg&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;FINLEO&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;маркетплейс&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/a&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;noindex&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; <a itemprop="url" target="_blank" href="https://crm.finleo.ru/signin" rel="nofolow"></a><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"></svg><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;g clip-path="url(#clip0_1833_25920)"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M8.8125 15.9375L12.75 12L8.8125 8.0625" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M2.25 12H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;path d="M12.75 3.75H18C18.1989 3.75 18.3897 3.82902 18.5303 3.96967C18.671 4.11032 18.75 4.30109 18.75 4.5V19.5C18.75 19.6989 18.671 19.8897 18.5303 20.0303C18.3897 20.171 18.1989 20.25 18 20.25H12.75" stroke="#656565" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/g&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;clipPath id="clip0_1833_25920"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;rect width="24" height="24" fill="white"/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/clipPath&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/defs&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/svg&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;FINLEO&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;финкабинет&lt;/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/a&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/noindex&gt;<br>&nbsp; &nbsp; &lt;/div&gt;<br>&lt;script&gt;<br>$("#signin").click(function() {<br>$(".select-sign").toggleClass("active");<br>})</p> <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(document).mouseup(function (e) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var div = $(".select-sign");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (!div.is(e.target)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; && div.has(e.target).length === 0) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(".select-sign").toggleClass("active", false);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br>&lt;/script&gt;</p><p></p>";} 0 3512 2 D html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru custom-hr
2567 466 a:1:{s:7:"content";s:255:"{$category_content = $category_data.content|unserialize} {if ($category_content.phone != "")} <div class="st-icon-phone"> <a href="tel:{str_replace(" ", '', $category_content.phone)}"> <span><i class="icon-phone-alt"></i></span> </a> </div> {/if} ";} 0 3531 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Иконка телефона
2562 412 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:0:"";}} 0 3311 3 D product_filters a:2:{s:8:"template";s:52:"blocks/product_filters/for_category/modal_filter.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Модальный фильтр
2567 418 0 3318 top-search 3 A template a:2:{s:8:"template";s:34:"blocks/static_templates/search.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Поиск
2568 426 0 3328 ut2-top-my-account 3 A my_account a:2:{s:8:"template";s:21:"blocks/my_account.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Аккаунт
2568 467 0 3532 st-cabinet 4 A template a:2:{s:8:"template";s:40:"blocks/static_templates/button_login.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Кнопка "Войти"
2568 438 a:1:{s:7:"content";s:1210:"{if $auth.user_id} <a href="/index.php?dispatch=auth.logout&redirect_url=index.php" class="btn-sign"> <i class="icon-lock-open"></i> <span>Выйти</span> </a> {else} <a href="javascript:void(0)" class="btn-sign" id="signin"> <i class="icon-lock"></i> <span>Войти</span> </a> {/if} <div class="select-sign"> <a href="/login/" class=" cm-dialog-opener cm-dialog-auto-size "> <i class="icon-sign-in"></i> <div> <p>FINLEO</p> <p>маркетплейс</p> </div> </a> <noindex> <a target="_blank" href="https://crm.finleo.ru/signin" rel="nofolow"> <i class="icon-sign-in"></i> <div> <p>FINLEO</p> <p>финкабинет</p> </div> </a> </noindex> </div> <script> $("#signin").click(function() { $(".select-sign").toggleClass("active"); }) $(document).mouseup(function (e) { var div = $(".select-sign"); if (!div.is(e.target) && div.has(e.target).length === 0) { $(".select-sign").toggleClass("active", false); } }); </script>";} 0 3343 st-cabinet 5 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 ru Кнопка "Войти"