SELECT 
  vi_bm_snapping.grid_id as grid_id, 
  vi_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, 
  vi_bm_block_statuses.object_ids as object_ids, 
  vi_bm_snapping.*, 
  vi_bm_blocks.*, 
  vi_bm_blocks_descriptions.* 
FROM 
  vi_bm_snapping 
  LEFT JOIN vi_bm_blocks ON vi_bm_blocks.block_id = vi_bm_snapping.block_id 
  LEFT JOIN vi_bm_block_statuses ON vi_bm_snapping.snapping_id = vi_bm_block_statuses.snapping_id 
  AND vi_bm_block_statuses.object_type LIKE '' 
  LEFT JOIN vi_bm_blocks_descriptions ON vi_bm_blocks.block_id = vi_bm_blocks_descriptions.block_id 
  LEFT JOIN vi_bm_blocks_content AS default_content ON vi_bm_blocks.block_id = default_content.block_id 
  AND vi_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 vi_bm_blocks_content AS dynamic_object_content ON vi_bm_blocks.block_id = dynamic_object_content.block_id 
  AND vi_bm_blocks_descriptions.lang_code = dynamic_object_content.lang_code 
  AND dynamic_object_content.object_id = 0 
  AND dynamic_object_content.object_type like '' 
WHERE 
  vi_bm_snapping.grid_id IN (
    79, 80, 81, 82, 83, 84, 85, 86, 89, 87, 88, 
    92, 97, 93, 94, 95, 96, 98, 99, 100, 101, 
    102, 107, 110, 116, 120, 123, 126, 127, 
    133, 136, 139, 140, 141, 142, 103, 104, 
    105, 106, 108, 109, 111, 112, 113, 114, 
    115, 117, 118, 119, 121, 122, 124, 125, 
    128, 132, 129, 130, 131, 134, 135, 137, 
    138, 143, 144
  ) 
  AND vi_bm_blocks_descriptions.lang_code = 'pt' 
  AND vi_bm_blocks.company_id = 1 
ORDER BY 
  vi_bm_snapping.order, 
  vi_bm_snapping.block_id

Query time 0.00295

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "read_sorted_file": {
          "filesort": {
            "sort_key": "vi_bm_snapping.`order`, vi_bm_snapping.block_id",
            "table": {
              "table_name": "vi_bm_snapping",
              "access_type": "range",
              "possible_keys": ["grid_id"],
              "key": "grid_id",
              "key_length": "4",
              "used_key_parts": ["grid_id"],
              "rows": 85,
              "filtered": 100,
              "index_condition": "vi_bm_snapping.grid_id in (79,80,81,82,83,84,85,86,89,87,88,92,97,93,94,95,96,98,99,100,101,102,107,110,116,120,123,126,127,133,136,139,140,141,142,103,104,105,106,108,109,111,112,113,114,115,117,118,119,121,122,124,125,128,132,129,130,131,134,135,137,138,143,144)"
            }
          }
        }
      },
      {
        "table": {
          "table_name": "vi_bm_blocks",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["block_id"],
          "ref": ["devvipiriscom.vi_bm_snapping.block_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "vi_bm_blocks.company_id = 1"
        }
      },
      {
        "table": {
          "table_name": "vi_bm_blocks_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "10",
          "used_key_parts": ["block_id", "lang_code"],
          "ref": ["devvipiriscom.vi_bm_snapping.block_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "vi_bm_blocks_descriptions.lang_code = 'pt'"
        }
      },
      {
        "table": {
          "table_name": "vi_bm_block_statuses",
          "access_type": "ref",
          "possible_keys": ["snapping_id"],
          "key": "snapping_id",
          "key_length": "4",
          "used_key_parts": ["snapping_id"],
          "ref": ["devvipiriscom.vi_bm_snapping.snapping_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(vi_bm_snapping.snapping_id = vi_bm_block_statuses.snapping_id and vi_bm_block_statuses.object_type like '')"
        }
      },
      {
        "table": {
          "table_name": "default_content",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "18",
          "used_key_parts": ["block_id", "snapping_id", "lang_code", "object_id"],
          "ref": [
            "devvipiriscom.vi_bm_snapping.block_id",
            "const",
            "devvipiriscom.vi_bm_blocks_descriptions.lang_code",
            "const"
          ],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(default_content.object_type like '')"
        }
      },
      {
        "table": {
          "table_name": "dynamic_object_content",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["block_id"],
          "ref": ["devvipiriscom.vi_bm_snapping.block_id"],
          "rows": 9,
          "filtered": 100,
          "attached_condition": "trigcond(dynamic_object_content.lang_code = vi_bm_blocks_descriptions.lang_code and dynamic_object_content.object_id = 0 and dynamic_object_content.object_type like '')"
        }
      }
    ]
  }
}

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
81 56 a:1:{s:4:"text";s:9:"Languages";} 0 92 0 D languages a:6:{s:8:"template";s:20:"blocks/languages.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:4:"text";s:10:"Languages:";s:6:"format";s:22:"ab__name_without_icons";s:14:"dropdown_limit";s:2:"10";s:17:"abt__ut2_fly_menu";s:9:"languages";} 1 1 pt FLY: Языки
81 59 a:1:{s:4:"menu";i:6;} 0 95 top-quick-links 0 A menu a:4:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:8:"top_menu";s:27:"open_on_sticky_panel_button";s:1:"N";} 1 1 pt Быстрые ссылки
82 62 0 98 top-logo 0 A template a:2:{s:8:"template";s:32:"blocks/static_templates/logo.tpl";s:17:"abt__ut2_fly_menu";s:8:"top_logo";} 1 1 pt Логотип
84 64 0 100 top-buttons-grid hidden-phone 0 A template a:1:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__top_buttons.tpl";} 1 1 pt AB: Кнопки Сравнение и Избранное
87 66 a:1:{s:4:"menu";i:5;} 0 102 blocks/wrappers/onclick_dropdown.tpl top-menu-grid-vertical 0 D menu a:12:{s:8:"template";s:46:"blocks/menu/abt__ut2_dropdown_vertical_mwi.tpl";s:22:"abt__ut2_demo_block_id";s:9:"main_menu";s:21:"abt__ut2_filling_type";s:11:"row_filling";s:22:"abt__ut2_columns_count";s:1:"4";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:19:"abt_menu_icon_items";s:1:"Y";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"550";s:27:"open_on_sticky_panel_button";s:1:"Y";} 1 1 pt Каталог товаров
93 73 0 109 blocks/wrappers/footer_general.tpl 0 A template a:1:{s:8:"template";s:44:"blocks/static_templates/my_account_links.tpl";} 1 1 pt Моя учетная запись
96 76 a:1:{s:7:"content";s:731:"<ul> <li><bdi>г. {$settings.Company.company_city}, {$settings.Company.company_address}</bdi></li> <li><bdi><a href="tel:{$settings.Company.company_phone}">{$settings.Company.company_phone} (звонок бесплатный)</a></bdi></li> <li><bdi><a href="tel:{$settings.Company.company_phone_2}">{$settings.Company.company_phone_2}</a></bdi></li> <li><bdi>{__('weekday_abr_1')}-{__('weekday_abr_0')} 9.00 - 18.00</bdi></li> <li><bdi><a class="ty-exception__links-a greeny" href="mailto:{$settings.Company.company_users_department}">{$settings.Company.company_users_department}</a></bdi></li> <li><a href="{'pages.view&page_id=20'|fn_url}" class="ty-exception__links-a">{__('view_on_map')}</a></li> </ul>";} 0 112 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 A safe_smarty_block a:2:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:17:"abt__ut2_fly_menu";s:8:"contacts";} 1 1 pt Контакты
100 79 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:8:"40,41,42";}} 0 115 homepage-banners 0 A banners a:8:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"600px";s:13:"height_mobile";s:5:"500px";s:19:"multiple_mode_items";s:1:"1";s:10:"navigation";s:1:"D";s:5:"delay";s:2:"12";s:22:"abt__ut2_demo_block_id";s:19:"main_banner_default";} 1 1 pt Главные баннеры
101 80 a:1:{s:4:"menu";i:9;} 0 116 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 A ab__fast_navigation a:9:{s:8:"template";s:74:"addons/ab__fast_navigation/blocks/ab__fast_navigation/ab__fn_one_level.tpl";s:19:"ab__fn_display_type";s:11:"ab__fn_grid";s:32:"ab__fn_number_of_columns_desktop";s:2:"10";s:38:"ab__fn_number_of_columns_desktop_small";s:1:"6";s:31:"ab__fn_number_of_columns_tablet";s:1:"5";s:37:"ab__fn_number_of_columns_tablet_small";s:1:"4";s:31:"ab__fn_number_of_columns_mobile";s:1:"3";s:17:"ab__fn_icon_width";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt AB: Каталог быстрой навигации
103 81 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"33";}} 0 117 0 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_1";} 1 1 pt AB: Баннер 1
104 83 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"31";}} 0 119 0 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_3";} 1 1 pt AB: Баннер 3
106 87 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"32";}} 0 123 0 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_8";} 1 1 pt AB: Banner 8
106 88 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"26";}} 0 124 0 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_7";} 1 1 pt AB: Баннер 7
108 89 0 125 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt <mark>Возможно,</mark> вас это заинтересует
109 90 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:70:"175,240,125,120,225,224,169,246,223,226,163,161,215,248,94,173,190,189";}} 0 126 0 A products a:11:{s:8:"template";s:33:"blocks/products/ab__grid_list.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"6";s:21:"abt__ut2_loading_type";s:7:"onclick";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:15:"thumbnail_width";s:3:"210";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"397";s:22:"skeleton_height_tablet";s:3:"472";s:22:"skeleton_height_mobile";s:3:"412";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Самые популярные
114 96 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:11:"248,161,163";}} 0 132 ut2-gray-box 0 A products a:18:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"Y";s:24:"not_scroll_automatically";s:1:"N";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"1";s:24:"item_quantity_sm_desktop";s:1:"1";s:20:"item_quantity_tablet";s:1:"1";s:20:"item_quantity_mobile";s:1:"1";s:15:"thumbnail_width";s:3:"320";s:18:"outside_navigation";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"562";s:22:"skeleton_height_tablet";s:3:"576";s:22:"skeleton_height_mobile";s:3:"546";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Товарная сетка (Товар 1)
115 98 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:7:"223,224";}} 0 134 ut2-gray-box 0 A products a:8:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"292";s:22:"skeleton_height_tablet";s:3:"256";s:22:"skeleton_height_mobile";s:3:"200";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Товарная сетка (Товар 4)
117 100 0 136 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt <mark>Пользуются спросом</mark> на этой неделе
119 102 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:11:"46,47,48,49";}} 0 138 0 A banners a:12:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"450px";s:13:"height_mobile";s:5:"450px";s:13:"minimal_width";s:5:"300px";s:19:"multiple_mode_items";s:1:"4";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"6";s:22:"abt__ut2_demo_block_id";s:9:"banner_15";s:23:"skeleton_height_desktop";s:3:"455";s:22:"skeleton_height_tablet";s:3:"455";s:22:"skeleton_height_mobile";s:3:"455";} 1 1 pt AB: Баннер 15
121 103 0 139 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt <mark>Самые популярные</mark> в этом месяце
124 105 0 141 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt <mark>Лучшие фотокамеры</mark> сегодня
125 106 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:23:"190,169,175,246,173,163";}} 0 142 0 A products a:16:{s:8:"template";s:46:"blocks/products/products_scroller_advanced.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"Y";s:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:5:"speed";s:3:"400";s:5:"delay";s:1:"3";s:13:"item_quantity";s:1:"6";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Лучшие фотокамеры сегодня
129 108 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"34,43";}} 0 144 0 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:8:"banner_9";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 1 1 pt AB: Баннер 9
131 111 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"37";}} 0 147 0 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_10";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 1 1 pt AB: Баннер 10
132 113 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:5:"42,44";}} 0 149 0 A banners a:12:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:9:"0 0 5px 0";s:6:"height";s:5:"500px";s:13:"height_mobile";s:5:"500px";s:13:"minimal_width";s:5:"360px";s:19:"multiple_mode_items";s:1:"2";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"6";s:22:"abt__ut2_demo_block_id";s:9:"banner_17";s:23:"skeleton_height_desktop";s:3:"500";s:22:"skeleton_height_tablet";s:3:"500";s:22:"skeleton_height_mobile";s:3:"500";} 1 1 pt AB: Banner 17
134 115 0 151 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt Самые выгодные <mark>предложения дня</mark>
139 119 0 155 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt Будьте в курсе <mark>последних новостей</mark>
140 121 a:1:{s:7:"content";s:613:"<p>A site that sells products online. Allows users to create a purchase order, choose a payment method and deliver the order on the Internet. Having chosen the necessary goods or services, the user usually has the opportunity to select a method of payment and delivery on the site right away.</p> <p>The main difference between the Internet store and the traditional one is in the type of the trading platform. A typical store needs a trading hall, shop windows, price tags, as well as sellers, cashiers and experienced consultants, the online store has the entire infrastructure implemented programmatically.</p>";} 0 157 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 A html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt О компании
143 123 0 160 0 A template a:5:{s:8:"template";s:46:"blocks/static_templates/subscribe_advanced.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"178";s:22:"skeleton_height_tablet";s:3:"188";s:22:"skeleton_height_mobile";s:3:"192";} 1 1 pt AB: Подписка
144 124 a:1:{s:7:"content";s:852:"<div class="ut2-social-link-block"><div class="ty-mainbox-title">{__("get_social")}</div> <div class="ty-social-link__title">Join our group<br>and be the first to learn about all promotions and offers!</div> <div class="ut2-social-links"> <a target="_blank" href="your_social_link"><i class="ut2-icon-facebook"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-instagram"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-twitter"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-telegram"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-youtube"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-skype"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-pinterest"></i></a> </div> </div>";} 0 161 0 A safe_smarty_block a:6:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:17:"abt__ut2_fly_menu";s:12:"social_links";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"178";s:22:"skeleton_height_tablet";s:3:"188";s:22:"skeleton_height_mobile";s:3:"192";} 1 1 pt AB: Социальные ссылки
81 57 a:1:{s:4:"text";s:10:"Currencies";} 0 93 1 D currencies a:6:{s:8:"template";s:21:"blocks/currencies.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:4:"text";s:11:"Currencies:";s:6:"format";s:6:"symbol";s:14:"dropdown_limit";s:2:"10";s:17:"abt__ut2_fly_menu";s:10:"currencies";} 1 1 pt FLY: Валюты
84 65 0 101 1 A template a:6:{s:8:"template";s:46:"blocks/static_templates/abt__ut2__contacts.tpl";s:49:"abt__ut2__block_contacts_show_call_request_button";s:1:"Y";s:44:"abt__ut2__block_contacts_show_social_buttons";s:1:"Y";s:35:"abt__ut2__block_contacts_show_email";s:1:"Y";s:36:"abt__ut2__block_contacts_show_addres";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt АВ: Контакты
87 67 a:1:{s:13:"settings_link";s:0:"";} 0 103 1 A abt__ut2_fly_menu a:9:{s:8:"template";s:50:"addons/abt__unitheme2/blocks/abt__ut2_fly_menu.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:19:"abt_menu_icon_items";s:1:"Y";s:19:"abt__ut2_show_title";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"Y";} 1 1 pt AB: FLY меню
94 74 a:1:{s:7:"content";s:611:" <ul id="demo_store_links"> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=2"|fn_url}">About us</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=30"|fn_url}">Contact us</a></li> <li class="ty-footer-menu__item"><a href="{"gift_certificates.add"|fn_url}">Gift certificates</a></li> <li class="ty-footer-menu__item"><a href="{"product_features.view_all?filter_id=10"|fn_url}">Our brands</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=7"|fn_url}">Blog</a></li> <li class="ty-footer-menu__item"><a href="{"sitemap.view"|fn_url}">Sitemap</a></li> </ul>";} 0 110 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 1 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 1 1 pt Демо-магазин
103 82 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"29";}} 0 118 1 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_2";} 1 1 pt AB: Баннер 2
104 84 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"30";}} 0 120 1 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_4";} 1 1 pt AB: Баннер 4
109 91 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:70:"161,163,226,223,246,169,224,225,120,125,240,175,215,248,94,173,190,189";}} 0 127 1 A products a:11:{s:8:"template";s:33:"blocks/products/ab__grid_list.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"6";s:21:"abt__ut2_loading_type";s:18:"onclick_and_scroll";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:15:"thumbnail_width";s:3:"210";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"397";s:22:"skeleton_height_tablet";s:3:"472";s:22:"skeleton_height_mobile";s:3:"412";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Хиты продаж
113 94 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"34,43";}} 0 130 1 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:8:"banner_9";s:22:"skeleton_height_mobile";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:23:"skeleton_height_desktop";s:3:"250";} 1 1 pt AB: Баннер 9
114 97 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:3:"280";}} 0 133 ut2-border-box 1 D products a:8:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:3:"200";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"292";s:22:"skeleton_height_tablet";s:3:"311";s:22:"skeleton_height_mobile";s:3:"340";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Товарная сетка (Товар 2)
115 99 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:11:"50,51,52,53";}} 0 135 1 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_18";s:22:"skeleton_height_mobile";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:23:"skeleton_height_desktop";s:3:"250";} 1 1 pt AB: Баннер 18
129 109 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"36,39";}} 0 145 1 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"3";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_12";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 1 1 pt AB: Баннер 12
132 114 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:17:"34,43,36,37,39,38";}} 0 150 1 A banners a:12:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:13:"minimal_width";s:5:"360px";s:19:"multiple_mode_items";s:1:"3";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"3";s:22:"abt__ut2_demo_block_id";s:9:"banner_16";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 1 1 pt AB: Banner 16
140 122 0 158 homepage-our-brands 1 D our_brands a:10:{s:8:"template";s:21:"blocks/our_brands.tpl";s:24:"not_scroll_automatically";s:1:"N";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:2:"10";s:11:"total_items";s:2:"10";s:15:"thumbnail_width";s:2:"75";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt Бренды
80 55 0 91 2 A geo_maps_customer_location a:2:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";s:17:"abt__ut2_fly_menu";s:26:"geo_maps_customer_location";} 1 1 pt Местоположение покупателя
81 58 0 94 2 D template a:3:{s:8:"template";s:48:"blocks/static_templates/abt__ut2__my_account.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:17:"abt__ut2_fly_menu";s:10:"my_account";} 1 1 pt Мой аккаунт (блок)
83 63 a:1:{s:4:"menu";i:6;} 0 99 hidden-phone 2 A menu a:3:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"N";s:22:"abt__ut2_demo_block_id";s:8:"top_menu";} 1 1 pt Верхнее меню
88 68 0 104 top-search 2 A template a:1:{s:8:"template";s:34:"blocks/static_templates/search.tpl";} 1 1 pt Поиск
89 69 0 105 ut2-top-cart-content 2 A cart_content a:4:{s:8:"template";s:23:"blocks/cart_content.tpl";s:22:"display_bottom_buttons";s:1:"Y";s:20:"display_delete_icons";s:1:"Y";s:19:"products_links_type";s:5:"thumb";} 1 1 pt Корзина
141 72 0 159 2 A main 1 1 pt Главное содержимое
95 75 a:1:{s:7:"content";s:750:" <ul id="customer_service_links"> <li class="ty-footer-menu__item"><a href="{"orders.search"|fn_url}" rel="nofollow">About your order</a></li> {if $addons.wishlist && $addons.wishlist.status == 'A'} <li class="ty-footer-menu__item"><a href="{"wishlist.view"|fn_url}" rel="nofollow">Wishlist</a></li> {/if} {if $settings.General.enable_compare_products == 'Y'} <li class="ty-footer-menu__item"><a href="{"product_features.compare"|fn_url}" rel="nofollow">Comparison list</a></li> {/if} </ul>";} 0 111 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 2 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 1 1 pt Покупательский сервис
98 77 0 113 2 A template a:1:{s:8:"template";s:37:"blocks/static_templates/copyright.tpl";} 1 1 pt Копирайт
99 78 0 114 2 A template a:1:{s:8:"template";s:41:"blocks/static_templates/payment_icons.tpl";} 1 1 pt Иконки платежных систем
105 85 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"27";}} 0 121 2 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_5";} 1 1 pt AB: Баннер 5
109 92 a:1:{s:5:"items";a:3:{s:7:"filling";s:7:"on_sale";s:5:"limit";s:2:"18";s:3:"cid";s:0:"";}} 0 128 2 A products a:11:{s:8:"template";s:33:"blocks/products/ab__grid_list.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"6";s:21:"abt__ut2_loading_type";s:18:"onclick_and_scroll";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:15:"thumbnail_width";s:3:"210";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"397";s:22:"skeleton_height_tablet";s:3:"472";s:22:"skeleton_height_mobile";s:3:"412";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Распродажа
111 93 0 129 2 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt Сезонные предложения <mark>лучший выбор</mark>
113 95 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:7:"215,213";}} 0 131 ut2-gray-box 2 A products a:8:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:2:"90";s:22:"abt__ut2_demo_block_id";s:0:"";s:22:"skeleton_height_mobile";s:3:"292";s:22:"skeleton_height_tablet";s:3:"309";s:23:"skeleton_height_desktop";s:3:"367";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Товарная сетка (Товар 3)
118 101 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:29:"282,250,255,248,78,94,246,230";}} 0 137 2 A products a:16:{s:8:"template";s:46:"blocks/products/products_scroller_advanced.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"Y";s:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:5:"speed";s:3:"400";s:5:"delay";s:1:"3";s:13:"item_quantity";s:1:"6";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Пользуются спросом на этой неделе
122 104 a:1:{s:5:"items";a:5:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:2:"12";s:3:"cid";s:0:"";}} 0 140 2 A products a:11:{s:8:"template";s:33:"blocks/products/ab__grid_list.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"6";s:21:"abt__ut2_loading_type";s:7:"onclick";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:15:"thumbnail_width";s:3:"210";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:23:"hide_add_to_cart_button";s:1:"N";} 1 1 pt Самые популярные в этом месяце
126 107 0 143 2 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt <mark>Откройте для себя</mark> некоторые из наших акций
130 110 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"44";}} 0 146 2 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"520px";s:13:"height_mobile";s:5:"520px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_11";s:23:"skeleton_height_desktop";s:3:"520";s:22:"skeleton_height_tablet";s:3:"520";s:22:"skeleton_height_mobile";s:3:"520";} 1 1 pt AB: Баннер 11
131 112 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"38";}} 0 148 2 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"7";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_13";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 1 1 pt AB: Баннер 13
135 116 a:1:{s:9:"promotion";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"30";}} 0 152 2 A ab__deal_of_the_day a:12:{s:8:"template";s:57:"addons/ab__deal_of_the_day/blocks/ab__deal_of_the_day.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"400";s:22:"skeleton_height_tablet";s:3:"426";s:22:"skeleton_height_mobile";s:3:"734";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"Y";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:23:"hide_add_to_cart_button";s:1:"N";s:31:"ab__dotd_enable_countdown_timer";s:1:"Y";} 1 1 pt AB: Товар дня
137 117 0 153 2 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 1 1 pt Ознакомьтесь с текущими акциями
139 120 a:1:{s:5:"items";a:3:{s:7:"filling";s:25:"blog.abt_ut2_recent_posts";s:14:"parent_page_id";s:0:"";s:5:"limit";s:1:"7";}} 0 156 2 A blog a:5:{s:8:"template";s:43:"addons/blog/blocks/abt_ut2_recent_posts.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"499";s:22:"skeleton_height_tablet";s:3:"500";s:22:"skeleton_height_mobile";s:4:"1045";} 1 1 pt Будьте в курсе последних новостей (блог)
81 60 a:1:{s:4:"text";s:0:"";} 0 96 top-currencies 3 A currencies a:4:{s:8:"template";s:21:"blocks/currencies.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:6:"format";s:6:"symbol";s:14:"dropdown_limit";s:1:"1";} 1 1 pt Валюта
89 70 0 106 ut2-top-my-account 3 A my_account a:1:{s:8:"template";s:21:"blocks/my_account.tpl";} 1 1 pt Аккаунт
105 86 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"28";}} 0 122 3 A banners a:5:{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:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_6";} 1 1 pt AB: Баннер 6
138 118 a:1:{s:5:"items";a:4:{s:7:"filling";s:26:"ab__dotd_sorted_promotions";s:7:"sort_by";s:7:"to_date";s:10:"sort_order";s:4:"desc";s:5:"limit";s:2:"10";}} 0 154 scroller 3 A ab__promotions a:10:{s:8:"template";s:66:"addons/ab__deal_of_the_day/blocks/promotions/ab__dotd_scroller.tpl";s:24:"not_scroll_automatically";s:1:"Y";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"367";s:22:"skeleton_height_tablet";s:3:"345";s:22:"skeleton_height_mobile";s:3:"411";} 1 1 pt Действующие акции
81 61 a:1:{s:4:"text";s:0:"";} 0 97 top-languages 4 A languages a:4:{s:8:"template";s:20:"blocks/languages.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:6:"format";s:22:"ab__name_without_icons";s:14:"dropdown_limit";s:1:"0";} 1 1 pt Языки