/* MapNext, ver. 1.3 */
        var MapNextGET = {"a":"WidgetProxy","js":"1","id":"101","mode":"map,queue,prices"};
        var initFirst = false,
    withQueueId = null; // Очередь

function MapNext(params) {
    //if (!params || !params.id)return;

    // useful shorthands:
    var MN = MapNext;
    var host = this;
    console.log("host", host);

    MN.COOKIE = "MapNext.COOKIE";
    MN.POINT_WIDTH = 34;
    MN.POINT_HEIGHT = 50;
    MN.DEFAULT_LNG = 30.34;
    MN.DEFAULT_LAT = 59.93;
    MN.DEFAULT_ZOOM = 9;

    /* ------ Public properties ---- */

    this.id = "101";
    this.url = document.URL;

    this.lng = null;
    this.lat = null;
    this.zoom = null;
    this.minZoom = 0;
    this.maxZoom = 18;

    this.mapId = "map";
    this.currentMapObject = null;
    this.map = null;
    this.points = null;
    this.filter = null;
    this.areas = {};
    this.villageName = "";
    this.globalLayer = null;
    this.globalLayer2 = null;
    this.onBoundsChange = null;
    this.withScrollZoom = false;
    this.noPointZoom = false;
    this.withGlobalLayer = false;
    this.withCluster = false;
    this.withStageId = null;


    MapNext.modalInstance = null;


    var initMap = function () {
        console.log("MapNext: initMap()");

        var $mapEl = MN.$('.MapNext-map');
        if (!$mapEl.length) return;

        console.log("MapNext: count map elements: " + $mapEl.length);

        //MN.$(window).one("resize", onWResize);

        if (host.map) host.map.destroy();

        if ('print' in MapNextGET) {
            if ('c' in MapNextGET) {
                var center = MapNextGET.c.split(',');

                host.lat = center[0];
                host.lng = center[1];
            }

            if ('z' in MapNextGET) {
                host.zoom = MapNextGET.z;
            }
        }

        host.map = new ymaps.Map($mapEl[0], {
                center: [host.lat ? host.lat : MN.DEFAULT_LAT, host.lng ? host.lng : MN.DEFAULT_LNG],
                zoom: host.zoom ? host.zoom : MN.DEFAULT_ZOOM
            }, {
                minZoom: host.minZoom,
                maxZoom: host.maxZoom
            }
        );
        if (host.withScrollZoom) host.map.behaviors.enable('scrollZoom');
        host.map.controls.add("zoomControl");

        // выводим объекты:
        //var collection = new ymaps.GeoObjectCollection({});
        addPoints(host.zoom ? false : true);
        host.map.events.add("boundschange", function (e) {
            if (host.onBoundsChange != null) host.onBoundsChange(e);
            setPointsVisibilityByZoom();
        });

        // Вставляем очереди в селект
        if ('print' in MapNextGET && !initFirst) {
            initFirst = true;

            var queueSelect = document.getElementById('PrintPage-bottom-queue-select');

            var listQeue = Array();

            if (queueSelect) {
                Object.keys(host.areas).forEach(function (key) {
                    if (!listQeue[host.areas[key].queue] && host.areas[key].queue) {
                        var opt = document.createElement('option');

                        opt.value = host.areas[key].queue;
                        opt.innerHTML = host.areas[key].queue;

                        queueSelect.appendChild(opt);
                    }
                    listQeue[host.areas[key].queue] = true;
                });
            }
        }

        function land() {
            var map = document.querySelector('.MapNext'),
                mapWrap = document.querySelector('.MapNext-map.showSquare'),
                page = document.querySelector('.PrintPage'),
                css = '@page { size: landscape; }',
                head = document.head || document.getElementsByTagName('head')[0],
                style = document.createElement('style');


            page.style['max-width'] = '1024px';

            map.style.height = '650px';
            map.style.width = '100%';


            style.type = 'text/css';
            style.media = 'print';

            if (style.styleSheet) {
                style.styleSheet.cssText = css;
            } else {
                style.appendChild(document.createTextNode(css));
            }

            head.appendChild(style);
        }

        function port() {
            var map = document.querySelector('.MapNext'),
                mapWrap = document.querySelector('.MapNext-map.showSquare'),
                page = document.querySelector('.PrintPage'),
                css = '@page { size: portrait; }',
                head = document.head || document.getElementsByTagName('head')[0],
                style = document.createElement('style');


            page.style['max-width'] = '650px';

            map.style.height = '1024px';
            map.style.width = '650px';


            style.type = 'text/css';
            style.media = 'print';

            if (style.styleSheet) {
                style.styleSheet.cssText = css;
            } else {
                style.appendChild(document.createTextNode(css));
            }

            head.appendChild(style);
        }

        //Меняем ориентацию
        if ('print' in MapNextGET) {
            var orientSelect = document.getElementById('PrintPage-bottom-orientation-select');

            if (orientSelect) {
                orientSelect.addEventListener('change', function (event) {
                    MN.start();
                    if (this.value == 2)
                        port();
                    if (this.value == 1)
                        land();
                });
            }
        }

        //Выводим очереди
        if ('print' in MapNextGET) {
            var queueSelect = document.getElementById('PrintPage-bottom-queue-select'),
                queueDesc = document.querySelector('.PrintPage-desc-queue');

            if (queueSelect) {
                queueSelect.addEventListener('change', function (event) {

                    if (this.value == 0) {
                        withQueueId = null;
                        queueDesc.textContent = '';
                    } else {
                        withQueueId = this.value;
                        queueDesc.textContent = ', ' + this.value;
                    }

                    console.log(this.value);

                    MN.start();
                });
            }
        }

        if ('print' in MapNextGET) {

            function toggleSquare(newZoom) {
                if (newZoom >= 16) {
                    $('.MapNext-map').addClass('showSquare');
                } else {
                    $('.MapNext-map').removeClass('showSquare');
                }
            }

            if ('z' in MapNextGET) {
                toggleSquare(MapNextGET.z);
            }

            host.map.events.add('boundschange', function (e) {
                //only when Zoom changed!
                var newZoom = e.get('newZoom');
                var oldZoom = e.get('oldZoom');
                if (newZoom != oldZoom) {
                    setPointsVisibilityByZoom();
                }

                toggleSquare(newZoom);
            });
        }

        // выводим участки:
        addAreas();

        console.log("MapNext: after addAreas()");

        // выводим очереди:
        if (host.withStageId) {
            var cc = [0, 0];
            var l = 0;
            for (var key in host.areas) {
                var a = host.areas[key];
                if (!a.coords) continue;
                if (host.withStageId && a.stageId != host.withStageId) continue;
                //var coords = a.mapObject.geometry.getPixelGeometry().getBounds();
                var coords = a.coords;
                for (var i = 0; i < coords.length; i++) {
                    cc[0] += coords[i][0];
                    cc[1] += coords[i][1];
                    l++;
                }
            }
            if (l > 0) {
                cc[0] = cc[0] / (l * 1.0001);
                cc[1] = cc[1] / l;
                //var geoCenter = host.map.options.get('projection').fromGlobalPixels(cc, host.map.getZoom());
                //host.map.setCenter(geoCenter);
                host.map.setCenter(cc, 17);
            }
        }

        console.log("MapNext: initMap() done");
    };

    var addAreas = function (params) {
        console.log("MapNext: addAreas()", host.areas, params);
        if (!host.areas) {
            return console.warn("MapNext: addAreas(): areas are not specified");
        }
        /*        if (host.map.geoObjects) {
                    host.map.geoObjects.each(function (geoObject) {
                        host.map.geoObjects.remove(geoObject);
                    });
                }*/
        if (typeof params == 'undefined') params = {};


        // копируем
        host.areasOriginal = {};
        for (var key in host.areas) {
            if (!host.areas.hasOwnProperty(key)) continue;

            host.areasOriginal[key] = {};

            for (var key_ in host.areas[key]) {
                if (!host.areas[key].hasOwnProperty(key_)) continue;
                host.areasOriginal[key][key_] = host.areas[key][key_];
            }
        }

        console.log("MapNext: addAreas(), total areas:", Object.keys(host.areas).length);
        for (var key in host.areas) {
            var a = host.areas[key];
            /*console.log("MapNext: addAreas(), area:" + a.name);
            console.log("MapNext: addAreas(), area coords: ", a.coords);*/
            /*console.log("MapNext: addAreas(), withQueueId:" + withQueueId);
            console.log("MapNext: addAreas(), area hidden: " + a.hideMe);
            console.log("MapNext: addAreas(), area is of another stage: " + (host.withStageId != null && a.stageId != host.withStageId));
            console.log("MapNext: addAreas(), area is of another stage 2: " + (withQueueId && a.queue != withQueueId));*/

            const areCoordsValid = !!a.coords && (Array.isArray(a.coords) || a.coords.match(/^\[.+/));
            if ( !areCoordsValid ) {
                console.warn("MapNext: addAreas(), area has invalid coords", a.coords);
                continue;
            }
            /*if (!a.coords) continue;
            if (!Array.isArray(a.coords)) continue;*/
            if (a.hideMe) continue; //filter Map
            if (host.withStageId != null && a.stageId != host.withStageId) continue;
            if (withQueueId && a.queue != withQueueId) continue;

            var a_ = host.areasOriginal[key];

            /*if (a.isQueueСircuit) {
                console.log("MapNext: addAreas(), area is queue circuit");
            }*/

            // включает возможность показа участков - контуров
            if (params.addQueueСircuit) {
                /*                if (host.map.geoObjects) {
                                    host.map.geoObjects.each(function (geoObject) {
                                        host.map.geoObjects.remove(geoObject);
                                    });
                                }*/
                if (a.isQueueСircuit) {
                    var p = new ymaps.Polygon([eval(a.coords)], {
                        hintContent: a.queue,
                    }, {
                        fillColor: '#fff',
                        // Делаем полигон прозрачным для событий карты.
                        interactivityModel: 'default#transparent',
                        strokeWidth: 2,
                        opacity: 0.5,
                        zIndex: 2,
                        zIndexActive: 2,
                        zIndexDrag: 2,
                        zIndexHover: 2
                    });

                    host.map.geoObjects.add(p);
                    a.mapObject = p;

                    var pp = new ymaps.Placemark(avgCoords(p), {
                        prop1: a.id,
                        iconContent: '',
                        hintContent: '',
                        areaData: a
                    }, {
                        hasHint: true,
                        hasBalloon: false,
                        iconImageHref: MN.base + '/i/e.gif',//MN.numberBG.png',
                        iconImageSize: [30, 30], // размеры картинки
                        iconImageOffset: [-15, -15] // смещение картинки*/
                    });
                    host.map.geoObjects.add(pp);
                    a.mapObject2 = pp;

                    continue;
                }

            } else {
                // Если участок контур - пропускаем
                if (a.isQueueСircuit) continue;
            }


            //console.log("MapNext: adding area:", a);
            //console.log(a);
            //console.log(eval(a.coords));

            // сам участок в виде полигона:

            var p = new ymaps.Polygon([eval(a.coords)], {
                //hasBalloon: true,
                //balloonContentBody: a.htmlBalloon,
                isAreas: true,
                hintContent: htmlHintArea(a),//a.hintContent,
                hintZIndex: 10,
                areaData: a
            }, {
                fillColor: a.fillColor ? a.fillColor : "#ffffff",
                strokeColor: a.strokeColor ? a.strokeColor : "#ffffff",
                strokeWidth: 3,
                opacity: a.opacity ? a.opacity : 0.5,
                strokeOpacity: 0.8
                //fillImageHref:host.fill(a),
                //fillMethod:'tile'
            });
            host.map.geoObjects.add(p);

            a.mapObject = p;

            // номер участка в виде точки:
            // https://yandex.ru/blog/mapsapi/46168
            var pixelBounds = p.geometry.getPixelGeometry().getBounds();
            var pixelCenter = [pixelBounds[0][0] + (pixelBounds[1][0] - pixelBounds[0][0]) / 2, (pixelBounds[1][1] - pixelBounds[0][1]) / 2 + pixelBounds[0][1]];
            var geoCenter = host.map.options.get('projection').fromGlobalPixels(pixelCenter, host.map.getZoom());
            //var myIconContentLayout = ymaps.templateLayoutFactory.createClass('<div class="number">{{properties.prop1}}</div>');
            var pp = new ymaps.Placemark(geoCenter, {
                isAreas: true,
                prop1: a.id,
                iconContent: iconContentArea(a),//a.iconContent,
                hintContent: htmlHintArea(a),//a.hintContent,
                //balloonContent: a.balloonContent,
                //hintContent: a.htmlOver,
                areaData: a
            }, {
                hasHint: true,
                hasBalloon: a.htmlBalloon ? true : false,
                /*iconLayout: myIconContentLayout,
                 // Описываем фигуру активной области
                 // "Прямоугольник".
                 iconShape: {
                 type: 'Rectangle',
                 // Прямоугольник описывается в виде двух
                 // точек - верхней левой и нижней правой.
                 coordinates: [
                 [-25, -25], [25, 25]
                 ]
                 }/*,*/
                iconImageHref: MN.base + '/i/e.gif',//MN.numberBG.png',
                iconImageSize: [30, 30], // размеры картинки
                iconImageOffset: [-15, -15] // смещение картинки*/
            });
            host.map.geoObjects.add(pp);
            a.mapObject2 = pp;

            var appMapVue = null;

            function initVueHint() {
                if (appMapVue) appMapVue.$destroy();


                appMapVue = new Vue({
                    el: '.PlayNext--LandViewWidget',

                    components: {
                        MapHint: window.PlayNext.LandMapHintComponent
                    },

                    data: {
                        areas: host.areasOriginal,
                        banner: host.sharesBanner,
                        state: window.PlayNext.appState.data,

                        landId: null
                    },

                    computed: {
                        land: function () {
                            if (!this.landId) return {};

                            return host.areasOriginal[this.landId];
                        }
                    },

                    mounted: function () {
                        var $el = MN.$(this.$el);
                        var $cont = $el.parent().parent();

                        this.landId = $el.attr('data-land-id');

                        var height = 0;

                        if (this.state.auth) {
                            height = 195;
                        } else {
                            height = 255;
                        }

                        if (this.land.statusId == 7) height = 120;

                        $cont.height(height);
                    }
                });
            }

            p.hint.events.add('show', initVueHint);
            pp.hint.events.add('show', initVueHint);

            // обработчки событий:
            p.events
                .add('mouseenter', function (e) {
                    var p = e.get('target');
                    var a = p.properties.get("areaData");
                    p.options.set('opacity', a.opacityOver);
                })
                .add('mouseleave', function (e) {
                    var p = e.get('target');
                    var a = p.properties.get("areaData");
                    p.options.set('opacity', a.opacity);
                });

            pp.events
                .add('mouseenter', function (e) {
                    var pp = e.get('target');
                    var a = pp.properties.get("areaData");
                    var p = a.mapObject;
                    p.options.set('opacity', a.opacityOver);
                })
                .add('mouseleave', function (e) {
                    var pp = e.get('target');
                    var a = pp.properties.get("areaData");
                    var p = a.mapObject;
                    p.options.set('opacity', a.opacity);
                });
            /*if (a.url) {
             p.events
             .add('click', function (e) {
             var p = e.get('target');
             var a = p.properties.get("areaData");
             self.location.href = a.url;
             });
             pp.events
             .add('click', function (e) {
             var p = e.get('target');
             var a = p.properties.get("areaData");
             self.location.href = a.url;
             });
             }*/


            p.events
                .add('click', function (e) {
                    var p = e.get('target');
                    var a = p.properties.get("areaData");
                    p.hint.hide(null, true);
                    e.preventDefault();
                    onClickArea(host.areasOriginal[a.id]);
                });


            pp.events
                .add('click', function (e) {
                    var p = e.get('target');
                    var a = p.properties.get("areaData");
                    p.hint.hide(null, true);
                    e.preventDefault();
                    onClickArea(host.areasOriginal[a.id]);
                });
            /*if (a.onClick) {
             p.events
             .add('click', function (e) {
             var p = e.get('target');
             var a = p.properties.get("areaData");
             // p.hint.hide(null, true);
             a.onClick(host.map,a);
             //p.hint.close();
             });
             pp.events
             .add('click', function (e) {
             var p = e.get('target');
             var a = p.properties.get("areaData");
             //                    p.hint.hide(null, true);
             a.onClick(host.map,a);
             });
             }*/
        }
        console.log("MapNext: addAreas() done");
    };

    var onClickArea = function (a) {
        if ('print' in MapNextGET) return;

        if (!isFreeArea(a.statusName) && !isBookedArea(a.statusName)) return;

        /*
        if( !window.PlayNext.appState.data.auth ) {
            window.PlayNext.showLoginPopup({
                target: 'getMapLand',
                targetLandNumber: a.number
            });

            return;
        }
        */
        /*        if (a.coords) {
                    var coords = JSON.parse(a.coords);
                    centerAndZoomMap(host.map, coords, 1.1);
                }*/


        window.PlayNext.showLandModal(a);

        // Creteo
        window.criteo_q = window.criteo_q || [];
        window.criteo_q.push(
            {event: "setAccount", account: window.__CRITEO_ACCOUNT},
            {event: "setEmail", email: window.__CRITEO_USER || ''},
            {event: "setSiteType", type: window.__CRITEO_SITE_TYPE},
            {event: "viewItem", item: a.id}
        );

        console.log('Criteo push land item: ', window.criteo_q);
    };
    var centerAndZoomMap = function (map, coords, zoomIncrement) {

        // Приближение и центрирование карты при клике на точку
        try {
            if (Array.isArray(coords) && coords.length > 0) {
                var latSum = 0;
                var lonSum = 0;
                var count = 0;

                coords.forEach(function (point) {
                    if (Array.isArray(point) && point.length === 2) {
                        latSum += point[0];
                        lonSum += point[1];
                        count++;
                    }
                });

                if (count > 0) {
                    var center = [latSum / count, lonSum / count];
                    var currentZoom = map.getZoom();
                    var maxZoom = currentZoom > 17 ? 18 : 17;
                    var newZoom = Math.min(currentZoom + zoomIncrement, map.options.get('maxZoom'), maxZoom);
                    map.setCenter(center, newZoom);
                    console.log("currentZoom", currentZoom);
                } else {
                    console.error("Ошибка: в данных координат отсутствуют валидные точки.");
                }
            } else {
                console.error("Ошибка: структура данных coords некорректна.");
            }
        } catch (e) {
            console.error("Ошибка обработки координат:", e);
        }
    };


    var avgCoords = function (poly) {
        var cc = [0, 0];
        var coords = poly.geometry.getCoordinates()[0];
        for (var i = 0; i < coords.length; i++) {
            cc[0] += coords[i][0];
            cc[1] += coords[i][1];
            //console.log(coords);
            //console.log(coords[i]);
        }
        cc[0] = cc[0] / coords.length;
        cc[1] = cc[1] / coords.length;
        //console.log(coords.length+": "+coords+" to "+cc);
        return cc;
    };


    var setPointsVisibilityByZoom = function () {
        if (host.noPointZoom) return;
        var z = host.map.getZoom();
        for (var key in host.points) {
            var a = host.points[key];

            if (/*a.withLayer && */a.minZoom || a.maxZoom) {
                //console.log(a.id+":"+a.minZoom+":"+ a.maxZoom+":"+z);
                if ((a.minZoom && z < a.minZoom) || (a.maxZoom && z > a.maxZoom)) {
                    a.mapObject.options.set('visible', false);
                } else {
                    a.mapObject.balloon.close();
                    a.mapObject.options.set('visible', true);
                }
            }
        }

        for (var key in host.areas) {
            var a = host.areas[key];
            if (!a.coords) continue;

            a.htmlZoom = 15;
            if (a.htmlZoom && a.mapObject) {
                //console.log(z+":"+a.htmlZoom);
                if (z < a.htmlZoom) {
                    a.mapObject.options.set('visible', false);
                    a.mapObject2.options.set('visible', false);
                } else {
                    a.mapObject.options.set('visible', true);
                    a.mapObject2.options.set('visible', true);
                }
            }
        }
    };
    var addPoints = function (withFit) {
        console.log("MapNext: addPoints()");

        if (host.withCluster && !host.filter) {
            // check how many clusters we need:
            host.clusters = {};
            for (var key in host.points) {
                var a = host.points[key];
                if (a.clusterId) {
                    if (typeof (host.clusters['cluster' + a.clusterId]) == "undefined") {
                        var layout = ymaps.templateLayoutFactory.createClass(
                            '<div style="color: #FFFFFF; font-weight: bold;"></div>');


                        var cluster = new ymaps.Clusterer({
                            //preset: 'islands#invertedVioletClusterIcons',
                            groupByCoordinates: false,
                            //clusterDisableClickZoom: true,
                            //clusterHideIconOnBalloonOpen: false,
                            //geoObjectHideIconOnBalloonOpen: false,
                            gridSize: 610,
                            //hasBalloon:true,
                            //hasHint:false,
                            maxZoom: 10,
                            margin: 0,
                            zoomMargin: 50,
                            //clusterNumbers: [100],
                            clusterIconContentLayout: layout,
                            //clusterOpenBalloonOnClick:true,
                            clusterIcons: [{
                                href: '/i/widget/cluster' + a.clusterId + '.png',
                                size: [150, 150],
                                offset: [-75, -75]
                            }]
                        });
                        host.clusters['cluster' + a.clusterId] = cluster;
                    }
                }
            }
        }

        var i = 0;
        for (var key in host.points) {
            var a = host.points[key];

            var p = addPoint(a);

            if (host.withCluster && !host.filter) {
                var cluster = host.clusters["cluster" + a.clusterId];
                cluster.add(p);
            }

            i++;
        }

        if (host.withCluster && !host.filter) {
            for (var key in host.clusters) {
                var cluster = host.clusters[key];
                host.map.geoObjects.add(cluster);
            }
        }

        addGlobalLayer();

        if (i > 1) {
            if (!('print' in MapNextGET)) fit();

            if (!withFit) {
                host.map.setZoom(host.zoom);
            }
        } else {
            zoomToPoint(a.id, a.zoom, true);
        }
        setPointsVisibilityByZoom();
    };
    var addGlobalLayer = function () {
        if (host.withGlobalLayer) {
            host.globalLayer = new ymaps.Layer(
                MN.base + '/maps/global/%z/tile-%x-%y.png', {
                    tileTransparent: true
                });
            host.map.layers.add(host.globalLayer);
        }
    };
    var fit = function (maxZoom) {
        if (host.withCluster && !host.filter) {
            // check zoom
            var bounds = [];
            for (var key in host.clusters) {
                var cluster = host.clusters[key];
                var b = cluster.getBounds();

                if (!bounds[0]) {
                    bounds[0] = b[0];
                    bounds[1] = b[1];
                }
                bounds[0] = [Math.min(bounds[0][0], b[0][0]), Math.min(bounds[0][1], b[0][1])];
                bounds[1] = [Math.max(bounds[1][0], b[1][0]), Math.max(bounds[1][1], b[1][1])];
            }
            //alert(host.map.geoObjects.getBounds());
        }
        bounds = calculateBoundsForAreas();

        /*        host.map.geoObjects.each(function (geoObject) {
                    console.log("Параметры:", geoObject.properties.getAll());
                });*/
        host.map.setBounds(bounds);
        var zoom = host.map.getZoom();
        if (!maxZoom) maxZoom = 17;
        if (zoom > maxZoom) {
            zoom = maxZoom;
            host.map.setZoom(zoom);
        }
    };
    var calculateBoundsForAreas = function () {
        var bounds = [];
        var filteredGeoObjects = [];

        host.map.geoObjects.each(function (geoObject) {
            if (geoObject.properties.get('isAreas')) {
                filteredGeoObjects.push(geoObject);
            }
        });

        if (filteredGeoObjects.length > 0) {
            filteredGeoObjects.forEach(function (geoObject) {
                var b = geoObject.geometry.getBounds();
                if (!bounds[0]) {
                    bounds[0] = b[0];
                    bounds[1] = b[1];
                }
                bounds[0] = [Math.min(bounds[0][0], b[0][0]), Math.min(bounds[0][1], b[0][1])];
                bounds[1] = [Math.max(bounds[1][0], b[1][0]), Math.max(bounds[1][1], b[1][1])];
            });
        } else {
            bounds = host.map.geoObjects.getBounds();
        }

        return bounds;
    };


    /*var addPoint = function (a) {
        //console.log("MapNext: addPoint(): " + a.id);
        if (!a.noPoint) {
            if (a.mapObject) {
                host.map.geoObjects.remove(a.mapObject);
            }

            if (a.icon) {
                var icon = a.icon;
                //var iconSize = a.iconSize;
                eval("var iconSize = " + a.iconSize + ";");
                //var iconOffset = a.iconOffset;
                eval("var iconOffset = " + a.iconOffset + ";");
                //console.log('iconSize = ' + a.iconSize + '; iconOffset=' + a.iconOffset);

            } else if (host.filter && a.filter && MN.$.inArray(host.filter, a.filter) == -1) {
                if (a.pos) var icon = MN.base + "/i/point.gray" + a.pos + ".png";
                else var icon = MN.base + "/i/point.small.png";
                var iconSize = [15, 20];
                var iconOffset = [-7, -20];
            } else {
                if (a.icon) var icon = a.icon;
                else if (a.pos) var icon = MN.base + "/i/point." + a.pos + ".png";
                else var icon = MN.base + "/i/point.png";
                var iconSize = [MN.POINT_WIDTH, MN.POINT_HEIGHT];
                var iconOffset = [-Math.floor(MN.POINT_WIDTH / 2), -MN.POINT_HEIGHT];
            }

            var p = new ymaps.Placemark([a.lat, a.lng], {
                balloonContent: a.html,
                pointData: a,
                hintContent: a.htmlOver,
                clusterCaption: a.name

            }, {
                iconImageHref: icon,
                //iconImageHref: "/i/MN.point2.png",
                iconImageSize: iconSize,
                iconImageOffset: iconOffset,
                draggable: a.onDrag ? true : false
            });
            a.mapObject = p;

            if (a.onDrag) {
                p.events.add("dragend", function (e) {
                    var p = e.get('target');
                    var a = p.properties.get('pointData');
                    a.onDrag(a, p, e);
                });
            } else if (a.onClick) {
                p.events.add("click", function (e) {
                    var p = e.get('target');
                    var a = p.properties.get('pointData');
                    a.onClick(a, p, e);
                });
            } else {
                p.events.add('click', function (e) {
                    host.currentMapObject = e.get('target');

                    var b = e.get('target');
                    var a = b.properties.get('pointData');
                    zoomToPoint(a.id, a.zoom, false);
                });
                p.events
                    .add('mouseenter', function (e) {
                        var b = e.get('target');
                        //b.options.set('iconImageHref', '/i/MN.point2_'+b.properties.get('pointData').pos+'_.png');
                    })
                    .add('mouseleave', function (e) {
                        e.get('target').options.unset('preset');
                    });
                p.events.add('balloonopen', function (e) {
                    var b = e.get('target');
                    var p = host.currentMapObject;
                    var pointId = p.properties.get("pointId");
                    var point = host.points["point" + pointId];
                });
                p.events.add('balloonclose', function (e) {
                    var b = e.get('target');
                    var p = host.currentMapObject;
                    var pointId = p.properties.get("pointId");
                    var point = host.points["point" + pointId];
                });
            }

            //collection.add(p);
            if (!host.withCluster || host.filter) host.map.geoObjects.add(p);
        }

        if (a.withLayer && !host.withGlobalLayer) {
            console.log(host.withStageId);
            if (!a.mapLayer) {
                //console.log(MN.base + '/maps/' + a.id + (host.withStageId ? "." + host.withStageId : "") + '/%z/tile-%x-%y.png');
                a.mapLayer = new ymaps.Layer(
                    MN.base + '/maps/' + a.id + (host.withStageId ? "." + host.withStageId : "") + '/%z/tile-%x-%y.png', {
                        tileTransparent: true
                    });
            }
            host.map.layers.add(a.mapLayer);
        }
        return p;
    };*/
    var addPoint = function (a) {
        if (!a.noPoint) {
            if (a.mapObject) {
                host.map.geoObjects.remove(a.mapObject);
            }

            if (a.icon) {
                var icon = a.icon;
                eval("var iconSize = " + a.iconSize + ";");
                eval("var iconOffset = " + a.iconOffset + ";");

            } else if (host.filter && a.filter && MN.$.inArray(host.filter, a.filter) == -1) {
                if (a.pos) var icon = MN.base + "/i/point.gray" + a.pos + ".png";
                else var icon = MN.base + "/i/point.small.png";
                var iconSize = [15, 20];
                var iconOffset = [-7, -20];
            } else {
                if (a.icon) var icon = a.icon;
                else if (a.pos) var icon = MN.base + "/i/point." + a.pos + ".png";
                else var icon = MN.base + "/i/point.png";
                var iconSize = [MN.POINT_WIDTH, MN.POINT_HEIGHT];
                var iconOffset = [-Math.floor(MN.POINT_WIDTH / 2), -MN.POINT_HEIGHT];
            }

            var p = new ymaps.Placemark([a.lat, a.lng], {
                balloonContent: a.html,
                pointData: a,
                hintContent: htmlHintPoint(a),
                clusterCaption: a.name

            }, {
                iconImageHref: icon,
                iconImageSize: iconSize,
                iconImageOffset: iconOffset,
                draggable: a.onDrag ? true : false
            });
            a.mapObject = p;

            if (a.onDrag) {
                p.events.add("dragend", function (e) {
                    var p = e.get('target');
                    var a = p.properties.get('pointData');
                    a.onDrag(a, p, e);
                });
            } else if (a.onClick) {
                p.events.add("click", function (e) {
                    var p = e.get('target');
                    var a = p.properties.get('pointData');
                    a.onClick(a, p, e);
                });
            } else {
                p.events.add('click', function (e) {
                    host.currentMapObject = e.get('target');

                    var b = e.get('target');
                    var a = b.properties.get('pointData');
                    zoomToPoint(a.id, a.zoom, false);
                });
                p.events
                    .add('mouseenter', function (e) {
                        var b = e.get('target');
                    })
                    .add('mouseleave', function (e) {
                        e.get('target').options.unset('preset');
                    });
                p.events.add('balloonopen', function (e) {
                    var b = e.get('target');
                    var p = host.currentMapObject;
                    var pointId = p.properties.get("pointId");
                    var point = host.points["point" + pointId];
                });
                p.events.add('balloonclose', function (e) {
                    var b = e.get('target');
                    var p = host.currentMapObject;
                    var pointId = p.properties.get("pointId");
                    var point = host.points["point" + pointId];
                });
            }

            if (!host.withCluster || host.filter) host.map.geoObjects.add(p);


            var appMapVue = null;

            function initVueHint() {
                if (appMapVue) appMapVue.$destroy();

                var photoUrl = getPhotoUrl(a.id, host.pointsPhotos);

                appMapVue = new Vue({
                    el: '.PlayNext--LandViewWidget',

                    components: {
                        PointHint: window.PlayNext.LandPointHintComponent
                    },

                    data: {

                        photo: photoUrl,
                        name: a.name
                    },

                    mounted: function () {
                        var $el = MN.$(this.$el);
                        this.pointData = a;
                    }
                });
            }

            function getPhotoUrl(id, pointsPhotos) {
                if (pointsPhotos[id]) {
                    return pointsPhotos[id];
                }
                if (pointsPhotos[""]) {
                    return pointsPhotos[""];
                }

                return "";
            }

            p.hint.events.add('show', initVueHint);

        }

        if (a.withLayer && !host.withGlobalLayer) {
            if (!a.mapLayer) {
                let cacheSuffix = (a.cacheNum && a.cacheNum !== "0") ? `.${a.cacheNum}` : "";
                a.mapLayer = new ymaps.Layer(
                    MN.base + '/maps/' + a.id + cacheSuffix + (host.withStageId ? "." + host.withStageId : "") + '/%z/tile-%x-%y.png', {
                        tileTransparent: true
                    });
            }
            host.map.layers.add(a.mapLayer);
        }
        return p;
    };
    var clear = function () {
        for (var key in host.clusters) {
            var a = host.clusters[key];
            host.map.geoObjects.remove(a);
        }
        for (var key in host.points) {
            var a = host.points[key];
            if (a.mapObject) host.map.geoObjects.remove(a.mapObject);
            if (a.mapLayer) {
                host.map.layers.remove(a.mapLayer);
                a.mapLayer = null;
            }
        }
        for (var key in host.areas) {
            var a = host.areas[key];
            if (a.mapObject) host.map.geoObjects.remove(a.mapObject);
            if (a.mapObject2) host.map.geoObjects.remove(a.mapObject2);
        }
        if (host.globalLayer) host.map.layers.remove(host.globalLayer);
        if (host.globalLayer2) host.map.layers.remove(host.globalLayer2);
    };
    var resetFilter = function () {
        host.filter = null;
        clear();
        addPoints();
    };
    var applyFilter = function (filter) {
        host.filter = filter;
        clear();
        /*    for (var key in host.points) {
         var a = host.points[key];
         if (filter && a.filter && MN.$.inArray(filter, a.filter) == -1)continue;
         // get this out:
         MN.addPoint(a);
         //host.map.geoObjects.add(a.mapObject);
         //host.map.geoObjects.remove(a.mapObject);
         //host.map.layers.remove(a.mapLayer);
         }*/
        //MN.addGlobalLayer();
        //MN.fit();
        addPoints(true);
    };
    var zoomToPoint = function (id, zoom, noBaloon) {
        var a = host.points["point" + id];
        if (!a) return;
        if (!zoom) zoom = a.zoom;
        // center map:
        host.map.setCenter([a.lat, a.lng], zoom);
        host.currentMapObject = a.mapObject;
        if (!noBaloon) {
            setTimeout(function () {
                a.mapObject.balloon.open();
            }, 250);
        }
        //alert(a.mapObject+":"+ a.id);
        //a.mapObject.balloon.open();
    };
    var firstPoint = function () {
        for (var key in host.points) {
            return host.points[key];
        }
    };
    var movePointToAddress = function (a, address) {
        //input.setAttribute("preventSubmit","Обновляются координаты карты... Пожалуйста подождите.");

        var geocoder = ymaps.geocode(address, {results: 1});
        geocoder.then(function (res) {
            if (!res.geoObjects.getLength()) {
                alert("К сожалению введенный адрес не распознан:\n" + address + "\nПожалуйста, укажите позицию на карте вручную.");
                return;
            }

            var point = res.geoObjects.get(0);
            var coords = point.geometry.getCoordinates();

            a.lat = coords[0];
            a.lng = coords[1];
            addPoint(a);
            zoomToPoint(a.id, 14, true);
            if (a.onDrag) a.onDrag(a, a.mapObject);

            // update inputs:
            /*MN.$('#sourceLat')[0].value=coords[0];
             MN.$('#sourceLng')[0].value=coords[1];
             MN.$('#sourceZoom')[0].value=MN.getZoom();
             input.setAttribute("preventSubmit","");*/
        }, function (error) {
            alert("К сожалению введенный адрес не распознан:\n" + address + "\nПожалуйста, укажите позицию на карте вручную.");
            //input.setAttribute("preventSubmit","");
        });
    };
    var startEditingRegions = function () {
        var div = MN.$("#map");
        div.animate({
            "left": 0,
            "top": 0,
            "position": "absolute",
            "width": "100%",
            "height": "100%",
            "z-index": 10
        });
    };
    host.fullscreenParent = null;
    var fullscreen = function () {
        var c = MN.$('#mapContainer');
        c.addClass('fullscreen');
        host.fullscreenParent = c.parent();
        MN.$("body").append(c);

        //setTimeout("host.map.container.fitToViewport();",500);
        host.map.container.fitToViewport();
        //MN.fit();
    };
    var smallscreen = function () {
        var c = MN.$('#mapContainer');
        c.removeClass('fullscreen');
        host.fullscreenParent.prepend(c);

        host.map.container.fitToViewport();
    };
    var mapCSS = function () {
        var css = `
        .MapNext-map {
            display: block;
            width: 100%;
            height: 600px;
            border: 1px solid #ccc;
            overflow: hidden;
            position: relative;
            background: #eee;
            margin: 20px 0;
        }

        .MapNext-map-print {
            position: absolute;
            z-index: 10;
            text-align: right;
            bottom: 20px;
            left: 0;
            right: 0;
            width: 100%;
        }

        .MapNext-map-print img {
            cursor: pointer;
            box-shadow: 0 10px 25px 0px rgba(0, 0, 0, 0.15);
            border-radius: 5px;
        }

        .MapNext-map-fullscreen {
            position: absolute;
            z-index: 1000;
            text-align: right;
            top: 20px;
            left: 0;
            right: 0;
            width: 100%;
            pointer-events: none;
            
        }
        .MapNext-map-fullscreen .container {
            pointer-events: none;
            
        }

        .MapNext-map-fullscreen img {
            cursor: pointer;
            border-radius: 5px;
            width: 87px;
            transition: transform 0.3s ease;
            pointer-events: auto;
            margin-right: -25px;
        }

        .MapNext-map-fullscreen img:hover {
            transform: scale(1.1);
        }

        .fullscreen-fallback {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            background-color: #fff !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 9998 !important;
        }
    `;

        return MN.$('<style>' + css + MN.css + '</style>');
    };
    var show = function () {
        var initYAMap = function () {
            if (typeof ymaps != "undefined") ymaps.ready(initMap);
        };

        console.log("MapNext: show()");

        // add CSS:
        MN.$('html > head').append(mapCSS());

        // draw it!
        //document.writeln('<div class="MapNext"></div>');

        var $mapEl = MN.$('.MapNext');
        if (!$mapEl.length) return;

        console.log("MapNext: DOM element found", $mapEl);
        console.log("MapNext: MapNextGET", MapNextGET);

        if (typeof (MapNextGET.mode) != 'undefined') {
            var modes = MapNextGET.mode.split(',');

            $mapEl.html('');

            if (modes.indexOf('queue') !== -1) {
                console.log("MapNext: MapNextGET queue mode detected");
                MN.$('.MapNext-landQueue').html('<div class=\"PlayNext--LandViewWidget-landQueue\"> <div class=\"PlayNext--LandViewWidget-landQueue-item active\" data-queue=\"\">Вся карта</div> <div class=\"PlayNext--LandViewWidget-landQueue-item\" data-queue=\"В окружении леса\"> <div class=\"PlayNext--LandViewWidget-landQueue-item-name\">В окружении леса</div> <div class=\"PlayNext--LandViewWidget-landQueue-item-priceMin\">от 4 158 000 <span class=\"rub\">P</span></div> </div> <div class=\"PlayNext--LandViewWidget-landQueue-item\" data-queue=\"В центре событий\"> <div class=\"PlayNext--LandViewWidget-landQueue-item-name\">В центре событий</div> <div class=\"PlayNext--LandViewWidget-landQueue-item-priceMin\">от 4 069 800 <span class=\"rub\">P</span></div> </div> <div class=\"PlayNext--LandViewWidget-landQueue-item\" data-queue=\"Видовые участки\"> <div class=\"PlayNext--LandViewWidget-landQueue-item-name\">Видовые участки</div> <div class=\"PlayNext--LandViewWidget-landQueue-item-priceMin\">от 3 918 600 <span class=\"rub\">P</span></div> </div> <div class=\"PlayNext--LandViewWidget-landQueue-item\" data-queue=\"Выгодная линия\"> <div class=\"PlayNext--LandViewWidget-landQueue-item-name\">Выгодная линия</div> <div class=\"PlayNext--LandViewWidget-landQueue-item-priceMin\">от 3 611 790 <span class=\"rub\">P</span></div> </div> <div class=\"PlayNext--LandViewWidget-landQueue-item\" data-queue=\"С рельефом\"> <div class=\"PlayNext--LandViewWidget-landQueue-item-name\">С рельефом</div> <div class=\"PlayNext--LandViewWidget-landQueue-item-priceMin\">от 3 956 400 <span class=\"rub\">P</span></div> </div> </div>');
            }
            if (modes.indexOf('map') !== -1) {
                console.log("MapNext: MapNextGET map mode detected");
                $mapEl.append('<div class="MapNext-map"></div>');
                initYAMap();
            }
            if (modes.indexOf('prices') !== -1) {
                console.log("MapNext: MapNextGET prices mode detected");
                $mapEl.append('<div class="container maps-legends-wrapper">' +
                    '<ul class="maps-legends">' +
                    '<li class="maps-legends__item maps-legends__item--home"><span class="maps-legends__text">С домом</span></li>' +
                    '<li class="maps-legends__item maps-legends__item--sale"><span class="maps-legends__text">В продаже</span></li>' +
                    '<li class="maps-legends__item maps-legends__item--booked"><span class="maps-legends__text">Забронированные</span></li>' +
                    '<li class="maps-legends__item maps-legends__item--sold"><span class="maps-legends__text">Проданные</span></li></ul>' +
                    '<div class="MapNext-after"></div></div>');
            }
        } else {
            $mapEl.html('<div class="MapNext-before"></div><div class="MapNext-map"></div><div class="MapNext-after"></div>');
            initYAMap();
        }

        console.log("MapNext: checking print/fullscreen options");

        // кнопка "распечатать"
        if (!('print' in MapNextGET)) {
            window.MapNext.print = function () {
                var link = '//' + MN.host + '/Print.html?villageId=' + host.id;
                var center = host.map.getCenter();
                var zoom = host.map.getZoom();

                link += '&c=' + center[0] + ',' + center[1];
                link += '&z=' + zoom;

                window.open(link, '_blank');
            };

            MN.$('.MapNext-map').append('<div class="MapNext-map-print"><div class="container"><img onclick="window.MapNext.print()" src="//' + MN.host + '/i/print-btn.png"></div></div>')
        }
        // кнопка "на весь экран"
        if (!('fullscreen' in MapNextGET)) {
            console.log("FULLSCREEN");
            window.MapNext.fullscreen = function () {
                var mapContainer = MN.$('.MapNext-map');
                var fullscreenButton = MN.$('.MapNext-map-fullscreen img');
                var isFallbackFullscreen = mapContainer.hasClass('fullscreen-fallback');
                console.log("FULLSCREEN IF");
                if (!document.fullscreenElement && !isFallbackFullscreen) {

                    mapContainer.addClass('fullscreen-fallback');
                    fullscreenButton.attr('src', '//' + MN.host + '/i/smallscreen-btn.png');

                    if (mapContainer[0].requestFullscreen) {
                        mapContainer[0].requestFullscreen();
                    } else if (mapContainer[0].webkitRequestFullscreen) { // iOS Safari
                        mapContainer[0].webkitRequestFullscreen();
                    } else if (mapContainer[0].msRequestFullscreen) { // IE/Edge
                        mapContainer[0].msRequestFullscreen();
                    }
                } else {
                    console.log("Выходим из полноэкранного режима");

                    mapContainer.removeClass('fullscreen-fallback');
                    fullscreenButton.attr('src', '//' + MN.host + '/i/fullscreen-btn.png');

                    if (document.exitFullscreen) {
                        document.exitFullscreen();
                    } else if (document.webkitExitFullscreen) { // iOS Safari
                        document.webkitExitFullscreen();
                    } else if (document.msExitFullscreen) { // IE/Edge
                        document.msExitFullscreen();
                    }
                }
            };

            MN.$('.MapNext-map').append('<div class="MapNext-map-fullscreen"><div class="container"><img onclick="window.MapNext.fullscreen()" src="//' + MN.host + '/i/fullscreen-btn.png"></div></div>')
        }

        // off По просьбе клиента на участке «ПриЛЕСный» по дефолту показываем 5-ю очередь
        const {href} = window.location;
        const isPrilesniy = href.includes('poselki/prilesnyy/gen-plan/');
        let isPrilesniyQueueClicked = false;
        if (isPrilesniy) {
            const queue = MN.$('div.PlayNext--LandViewWidget-landQueue-item:not([data-queue="5 очередь"])');
            const allQueue = queue[0];
            queue.each((index, elem) => {
                if (!elem.innerText.includes('Мастер-Дома')) {
                    //elem.remove();
                }
            });
            console.log('queue', queue);
            const fiveQueue = MN.$('div.PlayNext--LandViewWidget-landQueue-item[data-queue="5 очередь"]');
            if (fiveQueue.length) {
                //loadQueueMap.call(fiveQueue);
            }

            // показываем другие участки в очереди при зуме
            host.map.events.add("boundschange", function (e) {
                // if (host.onBoundsChange != null) host.onBoundsChange(e);
                // setPointsVisibilityByZoom();
                if (!isPrilesniyQueueClicked)
                    loadQueueMap.call(allQueue);
                isPrilesniyQueueClicked = false;
                // show();
            })
        }

        console.log("MapNext: initing queues");

        function loadQueueMap() {
            var $el = MN.$(this),
                queue = $el.attr('data-queue'),
                all = queue == '';

            MN.$('.PlayNext--LandViewWidget-landQueue-item').removeClass('active');
            $el.addClass('active');

            // Очищаем карту
            for (var key in host.areas) {
                var a = host.areas[key];
                if (a.mapObject) host.map.geoObjects.remove(a.mapObject);
                if (a.mapObject2) host.map.geoObjects.remove(a.mapObject2);
            }

            // Пересобираем
            for (var key in host.areas) {
                var a = host.areas[key];

                a.hideMe = !((a.queue == queue) || all);
            }

            addAreas({addQueueСircuit: !all});
            setPointsVisibilityByZoom();

            //off По просьбе клиента на участке «ПриЛЕСный» по дефолту показываем 5-ю очередь
            const data = $el.data();
            if (false && (data.queue == '5 очередь' || data.queue == 'Мастер-Дома') && isPrilesniy) {
                const bounds = host.map.geoObjects.getBounds();
                host.map.setCenter(bounds[0], 16);
            } else if (data.queue == '' && isPrilesniy) {

            } else {
                fit();
            }
        }

        function loadQueueMapClicked() {
            console.log("MapNext: loadQueueMapClicked");
            var $el = MN.$(this),
                queue = $el.attr('data-queue'),
                all = queue == '';

            MN.$('.PlayNext--LandViewWidget-landQueue-item').removeClass('active');
            $el.addClass('active');
            isPrilesniyQueueClicked = true;

            // Очищаем карту
            for (var key in host.areas) {
                var a = host.areas[key];
                if (a.mapObject) host.map.geoObjects.remove(a.mapObject);
                if (a.mapObject2) host.map.geoObjects.remove(a.mapObject2);
            }

            // Пересобираем
            for (var key in host.areas) {
                var a = host.areas[key];

                a.hideMe = !((a.queue == queue) || all);
            }

            addAreas({addQueueСircuit: !all});
            setPointsVisibilityByZoom();

            // off По просьбе клиента на участке «ПриЛЕСный» по дефолту показываем 5-ю очередь
            const data = $el.data();
            if (false && (data.queue == '5 очередь' || data.queue == 'Мастер-Дома') && isPrilesniy) {
                const bounds = host.map.geoObjects.getBounds();
                host.map.setCenter(bounds[0], 16);
            } else if (data.queue == '' && isPrilesniy) {

            } else {
                fit();
            }
        }

        MN.$(document).on('click', '.PlayNext--LandViewWidget-landQueue-item', loadQueueMapClicked);
        console.log("MapNext: .PlayNext--LandViewWidget-landQueue-item click inited");

        console.log("MapNext: adding queues");
        MN.$('.MapNext-after').html('<div id=\"lands-table\"> <div class=\"PlayNext--LandViewWidget-lands-table-block\"> <div v-for=\"(lands, queueName, queueIndex) in queuesDesktop\"> <div class=\"PlayNext--LandViewWidget-lands-item\" :class=\"{\'PlayNext--LandViewWidget-lands-item_action\': queueName === \'Участки по акции\'}\"> <price-up-timer v-if=\"queueName === \'Участки по акции\' && \'0000-00-00 00:00:00\'\" :text=\"\'\'\" :date=\"\'0000-00-00 00:00:00\'\"></price-up-timer> <div class=\"PlayNext--LandViewWidget-lands-table-head\"> <div class=\"PlayNext--LandViewWidget-lands-table-head-arrow\" @click=\"toggleArrayDesktop(\'openQueue\', queueName)\"> <span class=\"PlayNext--LandViewWidget-arrows\" :class=\"{\'PlayNext--LandViewWidget-arrows-open\': inArray(\'openQueue\', queueName)}\"></span> </div> <div class=\"PlayNext--LandViewWidget-lands-table-head-title\"> <span v-if=\"false && queueName === \'Участки по акции\'\"> <a href=\"\" target=\"_blank\">{{ queueName }}</a> </span> <span v-else> {{ queueName }} </span> </div> <div v-if=\"minPriceByQueueName(queueName)\" class=\"PlayNext--LandViewWidget-lands-table-head-priceMin\"> от {{ nf(minPriceByQueueName(queueName)) }} руб. </div> <div class=\"PlayNext--LandViewWidget-lands-table-head-sort\"> <label :for=\"\'MapNext-sort-item-\' + queueIndex\" class=\"PlayNext--LandViewWidget-lands-table-head-sort-title\"> Сортировать </label> <select :id=\"\'MapNext-sort-item-\' + queueIndex\" v-model=\"filter.selected\" @change=\"resetOpen()\" class=\"PlayNext--LandViewWidget-select\"> <option v-for=\"filterItem in filterItems\" :value=\"filterItem.id\"> {{ filterItem.name}} </option> </select> </div> </div> <div v-if=\"inArray(\'openQueue\', queueName)\"> <land-head :has-zop=\"false\" :hide-full-price=\"!isPrice100Visible(queueName)\" :village=\"village\" :is-with-contract=\"$isLandsHasContract ? $isLandsHasContract(queues[queueName]): null\" :is-with-home=\"$isLandsHasHome(queues[queueName])\" :watch-width=\"\'.PN-LandRow_pc_id-\' + lands[0].id\" :options=\"{ price100_title: queueName == \'Участки по акции\' ? \'Цена по акции\' : null }\"></land-head> <land-row :hide-full-price=\"!isPrice100Visible(queueName)\" :is-with-contract=\"$isLandsHasContract ? $isLandsHasContract(queues[queueName]): null\" :is-with-home=\"$isLandsHasHome(queues[queueName])\" :get-price-btn-text=\"btnText(land)\" :has-zop=\"false\" v-for=\"land in lands\" :key=\"land.id\" :land=\"land\" :village=\"village\" ></land-row> <div v-if=\"queues[queueName].length > 3\" class=\"PlayNext--LandViewWidget-lands-allLands\" :class=\"{ \'PlayNext--LandViewWidget-lands-allLands_open\': inArray( \'showAllLand\', queueName ) }\"> <span @click=\"toggleArray( \'showAllLand\', queueName )\">{{ inArray(\'showAllLand\', queueName) ? \'Свернуть\' : \'Показать все\' }}</span> </div> </div> </div> <div v-if=\"queueName === \'Участки по акции\' && \'*Стоимость указана с учетом скидки при 100% оплате\'\" class=\"PlayNext--LandViewWidget-lands-offer\"> *Стоимость указана с учетом скидки при 100% оплате </div> <div v-if=\"queueIndex === (Object.keys(queuesDesktop).length - 1) && \'*Цена при 100% оплате\'\" class=\"PlayNext--LandViewWidget-lands-offer\"> *Цена при 100% оплате </div> </div> </div> <div class=\"PlayNext--LandViewWidget-mobile\"> <select v-model=\"filter.selected\" @change=\"resetOpen()\" class=\"PlayNext--LandViewWidget-select PlayNext--LandViewWidget-select_mobile\"> <option v-for=\"filterItem in filterItems\" :value=\"filterItem.id\">Сортировать {{filterItem.name}} </option> </select> <div v-for=\"(lands, queueName) in queues\" class=\"PlayNext--LandViewWidget-mobile-queue\" :class=\"{ \'PlayNext--LandViewWidget-mobile-queue_action\': queueName === \'Участки по акции\'}\"> <price-up-timer v-if=\"queueName === \'Участки по акции\'\" :text=\"\'\'\" :date=\"\'0000-00-00 00:00:00\'\"></price-up-timer> <div class=\"PlayNext--LandViewWidget-mobile-queue-header-wrap\" @click=\"toggleArray(\'openQueue\', queueName)\"> <div class=\"PlayNext--LandViewWidget-mobile-queue-header\"> <div class=\"PlayNext--LandViewWidget-mobile-queue-header-arrow\"> <span class=\"PlayNext--LandViewWidget-arrows\" :class=\"{\'PlayNext--LandViewWidget-arrows-open\': inArray(\'openQueue\', queueName)}\"></span> </div> <div class=\"PlayNext--LandViewWidget-mobile-queue-header-name\"> <span v-if=\"false && queueName === \'Участки по акции\'\"> Участки по <a href=\"\" target=\"_blank\">акции</a> </span> <span v-else> {{ queueName === \'Участки по акции\' ? \'Участки по акции\' : queueName }} <div v-if=\"minPriceByQueueName(queueName)\" class=\"PlayNext--LandViewWidget-mobile-queue-header-priceMin\"> от {{ nf(minPriceByQueueName(queueName)) }} руб. </div> </span> </div> </div> </div> <div class=\"PlayNext--LandViewWidget-mobile-queue-body\" v-if=\"inArray(\'openQueue\', queueName)\"> <land-row :get-price-btn-text=\"btnText(land)\" :has-zop=\"false\" v-for=\"land in lands\" :key=\"land.id\" :land=\"land\" :village=\"village\" ></land-row> </div> </div> </div> </div> <div id=\"PN-timerTemplate\"> <div class=\"PN-timerAction\" v-if=\"correctDate > now\"> <div class=\"PN-timerAction-title\">До конца акции осталось</div> <div class=\"PN-timerAction-timer\"> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">{{ days | two_digits }}</div> <div class=\"PN-timerAction-text\">дней</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">:</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">{{ hours | two_digits }}</div> <div class=\"PN-timerAction-text\">часов</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">:</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">{{ minutes | two_digits }}</div> <div class=\"PN-timerAction-text\">минут</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">:</div> </div> <div class=\"PN-timerAction-block\"> <div class=\"PN-timerAction-digit\">{{ seconds | two_digits }}</div> <div class=\"PN-timerAction-text\">секунд</div> </div> </div> </div> </div> <script> (function () { const ratio = 0.86; Vue.filter(\'two_digits\', function (value) { if (value < 0) return \'00\'; if (value.toString().length <= 1) { return \"0\" + value.toString(); } return value.toString(); }); Vue.component(\'timer\', { template: \'#PN-timerTemplate\', props: { date: { type: String, } }, computed: { correctDate: function () { var regex = /^([0-9]{2})\.([0-9]{2})\.([0-9]{4}) ([0-9]{2}):([0-9]{2})?$/; var parts = this.date.replace(regex, \"$1 $2 $3 $4 $5\").split(\' \'); var jsDate = new Date(parts[2], parts[1] - 1, parts[0], parts[3], parts[4], 0); return Math.round(jsDate.getTime() / 1000); }, queuesDesktop: function () { var newData = {}; for (var queueName in this.queues) { if (!this.queues.hasOwnProperty(queueName)) continue; if (this.inArray(\'openQueue\', queueName)) { newData[queueName] = this.queues[queueName]; } else { newData[queueName] = this.queues[queueName].slice(0, 3); } } return newData; }, seconds: function () { return (this.correctDate - this.now) % 60; }, minutes: function () { return Math.round((this.correctDate - this.now) / 60) % 60; }, hours: function () { return Math.round((this.correctDate - this.now) / 60 / 60) % 24; }, days: function () { return Math.round((this.correctDate - this.now) / 60 / 60 / 24); } }, data: function () { return { now: 0 } }, methods: { updateNow: function () { this.now = Math.round((new Date()).getTime() / 1000); } }, created: function () { this.updateNow(); setInterval(this.updateNow, 1000); } }); var app = new Vue({ el: \'#lands-table\', components: { LandRow: window.PlayNext.LandRowComponent, LandHead: window.PlayNext.LandHeadComponent, PriceUpTimer: window.PlayNext.PriceUpTimerComponent }, data: { village: {\"id\":\"101\",\"isActive\":1,\"isWithHome\":0,\"withLayer\":1,\"isHiddenPrice\":0,\"isInAvitoM\":1,\"isInYandexNeGorodNedv\":1,\"isInDomClick\":1,\"isInRealting\":1,\"isShowBasePrice\":0,\"isInRealtingVillages\":1,\"tableSquareZOP\":\"0\",\"cacheNum\":\"2\",\"rowPrice100\":\"\",\"rowPrice\":\"\",\"priceUpOn\":\"0000-00-00 00:00:00\",\"priceUpNote\":\"\",\"name\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"subtitle\":\"\u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a\",\"originalId\":\"6332\",\"crmId\":\"6332\",\"hotText\":\"*\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u0430 \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0441\u043a\u0438\u0434\u043a\u0438 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435\",\"hotTextUnder\":\"*\u0426\u0435\u043d\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435\",\"hasTimer\":0,\"timerDate\":\"\",\"actionLink\":\"\",\"actionBtnText\":\"\",\"actionTitleTable\":\"\",\"cityId\":\"169\",\"address\":\"\",\"video\":\"\",\"redline\":\"\",\"queueWithoutPrice100\":\"\",\"lat\":\"60.304110\",\"lng\":\"29.842987\",\"zoom\":\"17\",\"typeName\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\",\"short\":\"\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 \u2014 \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? \u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u00ab\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\u00bb \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, \u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, 4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430. \\r\\n\\r\\n\u0416\u0418\u0412\u0418\u0422\u0415 \u0422\u0410\u041c, \u0413\u0414\u0415 \u041f\u0420\u0418\u0420\u041e\u0414\u0410 \u0412\u0414\u041e\u0425\u041d\u041e\u0412\u041b\u042f\u0415\u0422\\r\\n\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 \u2014 \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b \u2014 \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c \u2014 \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c \u2014 \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.\\r\\n\\r\\n\u0413\u041e\u0420\u041e\u0414 \u0411\u041b\u0418\u0416\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f\\r\\n\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 \u2014 \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c \u2014 \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 \u00ab\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f\u00bb, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 \u2014 \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 \u2014 \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b \u2014 \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 \u2014 \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.\\r\\n\\r\\n\u0411\u0415\u0417\u041e\u041f\u0410\u0421\u041d\u041e\u0421\u0422\u042c, \u041e \u041a\u041e\u0422\u041e\u0420\u041e\u0419 \u041c\u041e\u0416\u041d\u041e \u041d\u0415 \u0414\u0423\u041c\u0410\u0422\u042c \\r\\n\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c. \\r\\n\\r\\n\u041f\u041e\u041a\u0423\u041f\u041a\u0410 \u041f\u0420\u041e\u0429\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f \\r\\n\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 \u00ab\u0424\u0410\u041a\u0422\u00bb - \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:\\r\\n- \u0418\u043f\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;\\r\\n- \u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;\\r\\n- \u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;\\r\\n- Trade-in - \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;\\r\\n- \u0412\u044b\u0433\u043e\u0434\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435\\r\\n\\r\\n\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u2014 \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - \u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!\\r\\n\\r\\n\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e \u2014 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c!\",\"shortAvito\":\"\",\"full\":\"\",\"district\":\"3\",\"area\":\"\",\"yandexId\":\"0\",\"points\":\"\",\"distanceFromSpb\":\"35\",\"uriOnSite\":\"\/poselki\/barinovo\/o-proekte\/\",\"uriOnSiteMap\":\"\/poselki\/barinovo\/mestopolozhenie\/\",\"communication\":\"a:9:{i:0;s:1:\\"1\\";i:1;s:1:\\"2\\";i:2;s:1:\\"3\\";i:3;s:1:\\"4\\";i:4;s:1:\\"5\\";i:5;s:1:\\"8\\";i:6;s:1:\\"9\\";i:7;s:2:\\"10\\";i:8;s:2:\\"13\\";}\",\"createdOn\":null,\"updatedOn\":\"2026-06-17 19:33:38\",\"roadStrokes\":\"\",\"specialistId\":null,\"pos\":\"36\",\"_parentAction\":null}, items: {\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\":[{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211641\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5802\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"41\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.25\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"6930000.00\",\"price100\":\"6237000.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"840000.00\",\"pricePerUnit100\":\"756000.00\",\"coords\":\"[[60.302332683917406,29.84285825396727],[60.30243384181834,29.842622219573958],[60.302569605854636,29.842536388885485],[60.30261752245046,29.843094288360586],[60.30255097161646,29.843265949737532],[60.302332683917406,29.84285825396727]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:46:51\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211642\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5803\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"42\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.35\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5845000.00\",\"price100\":\"5260500.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30262284650226,29.843096970569597],[60.30257226789813,29.84252566004943],[60.302731989566844,29.84243446494293],[60.30279055398244,29.843083559524533],[60.3027106933896,29.843271314155558],[60.30262284650226,29.843096970569597]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"1\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":null,\"parkingType\":\"\u041f\u0430\u0440\u043a\u043e\u0432\u043e\u0447\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\",\"houseServices\":\"[\\"\\u0413\\u0430\\u0437\\",\\"\\u041a\\u0430\\u043d\\u0430\\u043b\\u0438\\u0437\\u0430\\u0446\\u0438\\u044f\\"]\",\"transportAccessibility\":\"[\\"\\u0410\\u0441\\u0444\\u0430\\u043b\\u044c\\u0442\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u0430\\u044f \\u0434\\u043e\\u0440\\u043e\\u0433\\u0430\\"]\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 &mdash; \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo;<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430.&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0432 \u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u2764\ufe0f \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043f\u043e\u0442\u0435\u0440\u044f\u0442\u044c!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><strong><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0414\u0430\u043d\u043d\u044b\u0439 \u0443\u0447\u0430\u0441\u0442\u043e\u043a - \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430<\/span><\/span><\/strong><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u0443 \u0441\u0430\u043c\u043e\u0439 \u043a\u0440\u043e\u043c\u043a\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u043c\u0430\u0441\u0441\u0438\u0432\u0430, \u0433\u0434\u0435 \u043b\u0435\u0441 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \u0416\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u043e\u0431\u0443\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0432\u044b\u0445\u043e\u0434 \u043d\u0430 \u043f\u0440\u043e\u0433\u0443\u043b\u043a\u0443 \u0438 \u043d\u0430\u0441\u043b\u0430\u0436\u0434\u0430\u0442\u044c\u0441\u044f \u0442\u0438\u0448\u0438\u043d\u043e\u0439 \u0441\u0440\u0435\u0434\u0438 \u0441\u043e\u0441\u043d\u043e\u0432\u044b\u0445 \u043a\u0440\u043e\u043d. \u0414\u043b\u044f \u0432\u0430\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u044c \u0438 \u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u043f\u0440\u0438\u0440\u043e\u0434\u043e\u0439.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><strong><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442&nbsp;<\/span><\/span><\/strong><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><strong><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/strong><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><strong><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/span><\/strong><br \/>\\r\\n<span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><strong><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/strong><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/span><\/p>\\r\\n\\r\\n<ul style=\\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\\">\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0418\u043f\u043e\u0442\u0435\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">Trade-in<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u0430 <\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n<\/ul>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-815284f4-7fff-9a0e-8359-e309b65ceca6\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e &mdash; \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c!&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p><br \/>\\r\\n&nbsp;<\/p>\\r\\n\",\"specId\":\"4\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-07-09 16:47:20\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.303198\",\"lng\":\"29.844446\",\"publishedAvitoOn\":\"2026-07-09 10:00:00\",\"publishedAvitoOff\":\"2026-08-07 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211643\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5804\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"43\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.33\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5131000.00\",\"price100\":\"4617900.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.302678749088585,29.843370555889123],[60.30279055397341,29.843078195106504],[60.302984880589,29.843448339950505],[60.30286242833956,29.84375947619624],[60.302678749097616,29.843416153442373],[60.302678749088585,29.843370555889123]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:47:06\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211645\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5806\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"45\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.60\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4620000.00\",\"price100\":\"4158000.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30314105081799,29.844132303249353],[60.303266164015724,29.843818484794607],[60.30340458655804,29.844081341278052],[60.30325817808185,29.844472943794234],[60.30314371281478,29.844253002655023],[60.30314105081799,29.844132303249353]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:47:24\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211646\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#e3e004\",\"strokeColor\":\"#fff\",\"opacity\":0.5,\"opacityOver\":0.9,\"url\":null,\"onClick\":null,\"statusName\":\"\u0411\u0420\u041e\u041d\u042c\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--booked\"},\"id\":\"5807\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"46\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"8\",\"statusApiUpdateDate\":\"\",\"square\":\"7.92\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5544000.00\",\"price100\":\"4989600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30304521911442,29.843550263893082],[60.30323422026856,29.84304600859832],[60.30333803732324,29.843233763229346],[60.30333803732324,29.843373238098135],[60.30317299464754,29.843807755958476],[60.30304521911442,29.843550263893082]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-30 13:06:20\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211647\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5808\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"47\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.12\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5684000.00\",\"price100\":\"5115600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30309313500146,29.842828749668076],[60.303117092927586,29.842809974205007],[60.30323422025951,29.843040644180245],[60.303039895131654,29.843550263893107],[60.30290945706065,29.843298136245714],[60.30309313500146,29.842828749668076]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:47:50\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211648\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5809\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"48\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.82\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5728800.00\",\"price100\":\"5155920.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"840000.00\",\"pricePerUnit100\":\"756000.00\",\"coords\":\"[[60.302790997534466,29.843078195106454],[60.302765708377315,29.842831431877112],[60.30296269715271,29.84272950793456],[60.30305852909913,29.84291726256561],[60.30290679505375,29.84330350066374],[60.302790997534466,29.843078195106454]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:47:58\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211649\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5810\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"49\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.63\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"6409200.00\",\"price100\":\"5768280.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"840000.00\",\"pricePerUnit100\":\"756000.00\",\"coords\":\"[[60.30276703937752,29.842828749668076],[60.302733764130295,29.842429100524853],[60.302997303156864,29.842289625656065],[60.30302126115346,29.842584668647746],[60.30296269715271,29.84272950793456],[60.30276703937752,29.842828749668076]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:48:06\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211650\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5811\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"50\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"10.61\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"7427000.00\",\"price100\":\"6684300.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30305586709538,29.84251761342239],[60.303031909133274,29.842273532402036],[60.30333537536042,29.842112599861142],[60.30336731900836,29.84246665145109],[60.30322357234588,29.842836796295163],[60.30305586709538,29.84251761342239]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:48:14\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211651\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5812\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"51\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.74\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5147100.00\",\"price100\":\"4632390.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"665000.00\",\"pricePerUnit100\":\"598500.00\",\"coords\":\"[[60.30337086823746,29.842461287033036],[60.30353857186593,29.84289580489348],[60.30343475544142,29.84311574603269],[60.30337752315945,29.843131839286745],[60.303224459618754,29.84284752513122],[60.30337086823746,29.842461287033036]]\",\"queue\":\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u042d\u0442\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0447\u0430\u0442 \u0441 \u043b\u0435\u0441\u043d\u044b\u043c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c \u2014 \u043e\u043d \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:48:29\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"}],\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\":[{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21166\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5767\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"6\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.49\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4543000.00\",\"price100\":\"4088700.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30459180189361,29.844279824745158],[60.30477547035569,29.844633876335127],[60.3046689960111,29.844918190490706],[60.30448532694855,29.844569503318784],[60.30459180189361,29.844279824745158]]\",\"queue\":\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0437\u043e\u043d\u043e\u0439 \u0432\u043e\u0440\u043a\u0430\u0443\u0442\u0430.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 14:35:24\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21167\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5768\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"7\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.51\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4557000.00\",\"price100\":\"4101300.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.304703600211276,29.844000875007605],[60.30488992988785,29.844344197761522],[60.30477813220983,29.844633876335127],[60.30459180189361,29.84427446032713],[60.304703600211276,29.844000875007605]]\",\"queue\":\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0437\u043e\u043d\u043e\u0439 \u0432\u043e\u0440\u043a\u0430\u0443\u0442\u0430.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 14:35:32\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21168\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5769\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"8\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.46\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4522000.00\",\"price100\":\"4069800.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.304790110541816,29.84375947619624],[60.30483935479534,29.843743382942186],[60.30500438901776,29.844059883605947],[60.30489259173265,29.844344197761522],[60.304703600211276,29.843990146171553],[60.304790110541816,29.84375947619624]]\",\"queue\":\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0437\u043e\u043d\u043e\u0439 \u0432\u043e\u0440\u043a\u0430\u0443\u0442\u0430.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:35:41\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21169\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5770\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"9\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.71\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4697000.00\",\"price100\":\"4227300.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.304623744309275,29.843260585319506],[60.30477547035569,29.843550263893107],[60.304653024829385,29.843872128974894],[60.30460644216229,29.843874811183884],[60.30448000319219,29.843630730163554],[60.304623744309275,29.843260585319506]]\",\"queue\":\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0437\u043e\u043d\u043e\u0439 \u0432\u043e\u0440\u043a\u0430\u0443\u0442\u0430.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:35:50\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"}],\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\":[{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211610\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5771\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"10\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.39\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4473000.00\",\"price100\":\"4025700.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.3046210824425,29.843260585319506],[60.30448000319219,29.842992364418006],[60.30434690899053,29.843319593917847],[60.30434690897245,29.843383966934162],[60.30447734131365,29.8436200013275],[60.3046210824425,29.843260585319506]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:35:58\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211611\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5772\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"11\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.61\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5327000.00\",\"price100\":\"4794300.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30445072251647,29.842520295631402],[60.30452525509375,29.842868982803324],[60.304381513541976,29.843233763229346],[60.3042883473735,29.843051373016298],[60.30423244755891,29.842836796295163],[60.30445072251647,29.842520295631402]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"1\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":null,\"parkingType\":\"\u041f\u0430\u0440\u043a\u043e\u0432\u043e\u0447\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\",\"houseServices\":\"[\\"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e\\",\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"[\\"\\u0410\\u0441\\u0444\\u0430\\u043b\\u044c\\u0442\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u0430\\u044f \\u0434\\u043e\\u0440\\u043e\\u0433\\u0430\\"]\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 \u2014 \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? \u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u00ab\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\u00bb \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, \u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, 4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430. \\r\\n\\r\\n\u0412\u042b\u0413\u041e\u0414\u041d\u0410\u042f \u041b\u0418\u041d\u0418\u042f\\r\\n\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0435\u043a\u0443 \u043e\u0442 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0437\u043e\u043d\u043e\u0439 \u0431\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u2014 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0438 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u043c\u0438, \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430. \u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043d\u0438\u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0433\u0443\u043b\u044f\u0442\u044c \u0441 \u0434\u0435\u0442\u044c\u043c\u0438 \u0438\u043b\u0438 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c\u0441\u044f \u0441 \u0441\u043e\u0441\u0435\u0434\u044f\u043c\u0438: \u0432\u0441\u0451 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e\u0435 \u2014 \u0431\u0443\u043a\u0432\u0430\u043b\u044c\u043d\u043e \u0432 \u0434\u0432\u0443\u0445 \u0448\u0430\u0433\u0430\u0445 \u043e\u0442 \u043a\u0430\u043b\u0438\u0442\u043a\u0438. \u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0434\u043b\u044f \u0442\u0435\u0445, \u043a\u043e\u043c\u0443 \u0432\u0430\u0436\u043d\u0430 \u0432\u043a\u043b\u044e\u0447\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0432 \u043e\u0431\u0449\u0443\u044e \u0436\u0438\u0437\u043d\u044c \u043f\u043e\u0441\u0451\u043b\u043a\u0430.\\r\\n\\r\\n\u0416\u0418\u0412\u0418\u0422\u0415 \u0422\u0410\u041c, \u0413\u0414\u0415 \u041f\u0420\u0418\u0420\u041e\u0414\u0410 \u0412\u0414\u041e\u0425\u041d\u041e\u0412\u041b\u042f\u0415\u0422\\r\\n\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 \u2014 \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b \u2014 \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c \u2014 \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c \u2014 \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.\\r\\n\\r\\n\u0413\u041e\u0420\u041e\u0414 \u0411\u041b\u0418\u0416\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f\\r\\n\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 \u2014 \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c \u2014 \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 \u00ab\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f\u00bb, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 \u2014 \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 \u2014 \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b \u2014 \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 \u2014 \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.\\r\\n\\r\\n\u0411\u0415\u0417\u041e\u041f\u0410\u0421\u041d\u041e\u0421\u0422\u042c, \u041e \u041a\u041e\u0422\u041e\u0420\u041e\u0419 \u041c\u041e\u0416\u041d\u041e \u041d\u0415 \u0414\u0423\u041c\u0410\u0422\u042c\\r\\n\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c. \\r\\n\\r\\n\u041f\u041e\u041a\u0423\u041f\u041a\u0410 \u041f\u0420\u041e\u0429\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f\\r\\n\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 \u00ab\u0424\u0410\u041a\u0422\u00bb - \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:\\r\\n- \u0418\u043f\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;\\r\\n- \u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;\\r\\n- \u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;\\r\\n- Trade-in - \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;\\r\\n- \u0412\u044b\u0433\u043e\u0434\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435\\r\\n\\r\\n\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u2014 \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - \u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!\\r\\n\\r\\n\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e \u2014 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c! \\r\\n\\r\\n\",\"fullAvito\":\"<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 &mdash; \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo;<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430.&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0432 \u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u2764\ufe0f \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043f\u043e\u0442\u0435\u0440\u044f\u0442\u044c!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u0443 \u0441\u0430\u043c\u043e\u0439 \u043a\u0440\u043e\u043c\u043a\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u043c\u0430\u0441\u0441\u0438\u0432\u0430, \u0433\u0434\u0435 \u043b\u0435\u0441 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438. \u0416\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u043e\u0431\u0443\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0432\u044b\u0445\u043e\u0434 \u043d\u0430 \u043f\u0440\u043e\u0433\u0443\u043b\u043a\u0443 \u0438 \u043d\u0430\u0441\u043b\u0430\u0436\u0434\u0430\u0442\u044c\u0441\u044f \u0442\u0438\u0448\u0438\u043d\u043e\u0439 \u0441\u0440\u0435\u0434\u0438 \u0441\u043e\u0441\u043d\u043e\u0432\u044b\u0445 \u043a\u0440\u043e\u043d. \u0414\u043b\u044f \u0432\u0430\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u044c \u0438 \u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u043f\u0440\u0438\u0440\u043e\u0434\u043e\u0439.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/span><br \/>\\r\\n<span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/span><\/p>\\r\\n\\r\\n<ul style=\\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\\">\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0418\u043f\u043e\u0442\u0435\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">Trade-in<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u0430 <\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n<\/ul>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-d23317b4-7fff-cde0-948a-fd2f9e2e31f0\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e &mdash; \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c!&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-26 10:46:47\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.303995\",\"lng\":\"29.845739\",\"publishedAvitoOn\":\"2026-06-25 10:00:00\",\"publishedAvitoOff\":\"2026-07-22 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211612\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5773\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"12\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"10.14\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"7098000.00\",\"price100\":\"6388200.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30420050475948,29.842815338623033],[60.30427237601414,29.843094288360586],[60.304043452206606,29.843689738761896],[60.30397956619668,29.843569039356225],[60.30390503237957,29.843351780426005],[60.30420050475948,29.842815338623033]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:39:50\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211613\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5774\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"13\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.27\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4389000.00\",\"price100\":\"3950100.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30420582856157,29.843276678573584],[60.30432827576921,29.843507348548872],[60.30417122383248,29.84392040873716],[60.304043452206606,29.843689738761896],[60.30420582856157,29.843276678573584]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:39:59\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211614\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#e3e004\",\"strokeColor\":\"#fff\",\"opacity\":0.5,\"opacityOver\":0.9,\"url\":null,\"onClick\":null,\"statusName\":\"\u0411\u0420\u041e\u041d\u042c\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--booked\"},\"id\":\"5775\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"14\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"8\",\"statusApiUpdateDate\":\"\",\"square\":\"6.29\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4403000.00\",\"price100\":\"3962700.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30432827576921,29.8435127129669],[60.30445604627763,29.84375411177824],[60.304298994957094,29.84416717196655],[60.30417122383248,29.84392577315521],[60.30432827576921,29.8435127129669]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-30 13:06:08\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211615\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5776\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"15\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.98\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4886000.00\",\"price100\":\"4397400.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30445604627763,29.84375411177824],[60.304573168803365,29.843974052917474],[60.3045731687898,29.84408402348704],[60.30443741309166,29.844435392867997],[60.304293671170235,29.84416717196655],[60.30445604627763,29.84375411177824]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"0\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\",\\"\\u041f\\u0440\\u043e\\u0434\\u0430\\u0436\\u0430 \\u0434\\u043e\\u043b\\u0438\\"]\",\"garageType\":\"\u043c\u0430\u0448\u0438\u043d\u043e\u043c\u0435\u0441\u0442\u043e\",\"parkingType\":null,\"houseServices\":\"[\\"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e\\",\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u044c\u0442\u0435: \u0443\u0442\u0440\u043e, \u0442\u0438\u0448\u0438\u043d\u0430, \u0438 \u0432\u044b \u0432\u044b\u0445\u043e\u0434\u0438\u0442\u0435 \u0438\u0437 \u043a\u0430\u043b\u0438\u0442\u043a\u0438 \u043f\u0440\u044f\u043c\u043e \u0432 \u0445\u0432\u043e\u0439\u043d\u044b\u0439 \u043b\u0435\u0441 &mdash; \u043d\u0435 \u0432\u0438\u0434 \u0438\u0437 \u043e\u043a\u043d\u0430, \u0430 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u0430\u0441\u0441\u0438\u0432 \u043f\u043e\u0434 \u043d\u043e\u0433\u0430\u043c\u0438. \u0422\u0430\u043a \u0436\u0438\u0432\u0443\u0442 \u0432 &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo;. \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u0432 \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u043e\u043c \u0440\u0430\u0439\u043e\u043d\u0435 \u0441 \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u044f\u043c\u0438, 4 \u0442\u0438\u043f\u0430\u043c\u0438 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u0438 \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u044c\u044e, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0434\u0430\u0440\u0438\u0442 \u0441\u0430\u043c\u0430 \u043f\u0440\u0438\u0440\u043e\u0434\u0430. \u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0432 \u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u2764\ufe0f!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432, &mdash; \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0440\u0430\u0441\u0447\u0438\u0449\u0430\u0442\u044c. \u041f\u0440\u0438\u0440\u043e\u0434\u0430 \u0443\u0436\u0435 \u043f\u043e\u0434\u0430\u0440\u0438\u043b\u0430 \u0432\u0430\u043c \u043e\u0431\u0437\u043e\u0440. \u042d\u0442\u043e \u043c\u0435\u0441\u0442\u043e \u0434\u043b\u044f \u0434\u043e\u043c\u0430 \u0441 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u043e\u043a\u043d\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u043d\u043e\u0439 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0439 \u0442\u0435\u0440\u0440\u0430\u0441\u043e\u0439, \u0433\u0434\u0435 \u0437\u0430\u043a\u0430\u0442\u0430\u043c\u0438 \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f.&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/span><br \/>\\r\\n<span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/span><\/p>\\r\\n\\r\\n<ul style=\\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\\">\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0418\u043f\u043e\u0442\u0435\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">Trade-in<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" background-color:=\\"\\" color:=\\"\\" dir=\\"ltr\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u0430 <\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n<\/ul>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-1ed339c7-7fff-d5e3-8a94-8da74665d0cc\\"><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - <\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" font-weight:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\">\u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435<\/span><span background-color:=\\"\\" color:=\\"\\" font-variant:=\\"\\" madefor=\\"\\" style=\\"font-size: 11pt; font-family: \\" vertical-align:=\\"\\" white-space:=\\"\\" wix=\\"\\"> \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/span><\/p>\\r\\n\\r\\n<p><br \/>\\r\\n&nbsp;<\/p>\\r\\n\",\"specId\":\"5\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-07-14 12:19:59\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.303728\",\"lng\":\"29.845378\",\"publishedAvitoOn\":\"2026-07-17 11:00:00\",\"publishedAvitoOff\":\"2026-08-14 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211616\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5777\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"16\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.02\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5614000.00\",\"price100\":\"5052600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30427769979544,29.844134985458368],[60.304440074991504,29.84444075728605],[60.30430165684117,29.84479480887602],[60.30425374273209,29.844802855503062],[60.30411532379879,29.844542681228628],[60.30427769979544,29.844134985458368]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:40:41\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211617\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5778\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"17\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.30\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4410000.00\",\"price100\":\"3969000.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30414992859633,29.843893586647027],[60.30427503790941,29.84412962104034],[60.304117985697886,29.844548045646654],[60.303987551944594,29.844301282417288],[60.30414992859633,29.843893586647027]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:40:52\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211618\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5779\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"18\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.25\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5775000.00\",\"price100\":\"5197500.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30398755196266,29.84357172156524],[60.30414992859633,29.843888222229],[60.30399287579957,29.844301282417288],[60.30382783645125,29.843990146171553],[60.30398755196266,29.84357172156524]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:41:02\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211619\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5780\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"19\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.14\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5698000.00\",\"price100\":\"5128200.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.303787907442,29.84332227612681],[60.303910356229956,29.843351780426005],[60.30397956620569,29.843582450401293],[60.30382517451038,29.843990146171528],[60.30366013432131,29.843668281089766],[60.303787907442,29.84332227612681]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:41:10\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211620\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5781\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"20\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.42\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5194000.00\",\"price100\":\"4674600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30359624756847,29.8436200013275],[60.303662796266636,29.84375411177824],[60.303589592677646,29.843931137573186],[60.30368875020174,29.844116209995224],[60.30358027585166,29.84440857077789],[60.30341523441253,29.844086705696103],[60.30359624756847,29.8436200013275]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-06-17 14:41:18\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211622\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5783\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"22\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.30\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4410000.00\",\"price100\":\"3969000.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30385844865162,29.844231544982893],[60.30398622100331,29.844472943794234],[60.30382650548537,29.84489136840057],[60.30370139444927,29.84464996958923],[60.30385844865162,29.844231544982893]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:41:48\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211623\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5784\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"23\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.30\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4410000.00\",\"price100\":\"3969000.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30398622100331,29.844472943794234],[60.304111330945275,29.844714342605574],[60.30395427796239,29.84512740279386],[60.30382650548537,29.84488600398252],[60.30398622100331,29.844472943794234]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:41:56\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211624\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5785\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"24\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.22\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4354000.00\",\"price100\":\"3918600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30395294698356,29.845130085002797],[60.304111330945275,29.844714342605574],[60.30421248331293,29.844907461654653],[60.3042151452131,29.845014750015256],[60.304079388018025,29.845374166023255],[60.30395294698356,29.845130085002797]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:42:04\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211625\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5786\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"25\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.88\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4816000.00\",\"price100\":\"4334400.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.303930320661124,29.84508985186765],[60.3040820499381,29.84537953044128],[60.303959601804706,29.845690666686988],[60.30390370140782,29.845701395523015],[60.30378391454832,29.845476089965807],[60.303930320661124,29.84508985186765]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:42:12\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211644\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5805\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"44\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.17\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5019000.00\",\"price100\":\"4517100.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.302983993156154,29.84344297553253],[60.303172994656585,29.8438077559585],[60.30307716305597,29.84405451918792],[60.303019930145574,29.844070612442],[60.30286154090335,29.843764840614316],[60.302983993156154,29.84344297553253]]\",\"queue\":\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u044b \u043d\u0430 \u0432\u043e\u0437\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u043f\u043e\u0447\u0442\u0438 \u0431\u0435\u0437 \u0434\u0435\u0440\u0435\u0432\u044c\u0435\u0432 \u2014 \u0430 \u0437\u043d\u0430\u0447\u0438\u0442, \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c\u0438 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u044b\u043c\u0438 \u0432\u0438\u0434\u0430\u043c\u0438.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:47:14\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"}],\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\":[{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21161\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5762\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"1\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.12\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4284000.00\",\"price100\":\"3855600.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30393963738246,29.845996438514696],[60.30403546646336,29.845744310867303],[60.30421647616311,29.846087633621195],[60.30412863334624,29.84635049010467],[60.30397690428629,29.846162735473616],[60.30393963738246,29.845996438514696]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"1\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":null,\"parkingType\":\"\u041f\u0430\u0440\u043a\u043e\u0432\u043e\u0447\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\",\"houseServices\":\"[\\"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e\\",\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"[\\"\\u0410\\u0441\\u0444\\u0430\\u043b\\u044c\\u0442\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u0430\\u044f \\u0434\\u043e\\u0440\\u043e\\u0433\\u0430\\"]\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 \u2014 \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? \u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u00ab\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\u00bb \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, \u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, 4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430. \\r\\n\\r\\n\u0412\u042b\u0413\u041e\u0414\u041d\u0410\u042f \u041b\u0418\u041d\u0418\u042f\\r\\n\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0435\u043a\u0443 \u043e\u0442 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0437\u043e\u043d\u043e\u0439 \u0431\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u2014 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0438 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u043c\u0438, \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430. \u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043d\u0438\u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0433\u0443\u043b\u044f\u0442\u044c \u0441 \u0434\u0435\u0442\u044c\u043c\u0438 \u0438\u043b\u0438 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c\u0441\u044f \u0441 \u0441\u043e\u0441\u0435\u0434\u044f\u043c\u0438: \u0432\u0441\u0451 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e\u0435 \u2014 \u0431\u0443\u043a\u0432\u0430\u043b\u044c\u043d\u043e \u0432 \u0434\u0432\u0443\u0445 \u0448\u0430\u0433\u0430\u0445 \u043e\u0442 \u043a\u0430\u043b\u0438\u0442\u043a\u0438. \u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0434\u043b\u044f \u0442\u0435\u0445, \u043a\u043e\u043c\u0443 \u0432\u0430\u0436\u043d\u0430 \u0432\u043a\u043b\u044e\u0447\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0432 \u043e\u0431\u0449\u0443\u044e \u0436\u0438\u0437\u043d\u044c \u043f\u043e\u0441\u0451\u043b\u043a\u0430.\\r\\n\\r\\n\u0416\u0418\u0412\u0418\u0422\u0415 \u0422\u0410\u041c, \u0413\u0414\u0415 \u041f\u0420\u0418\u0420\u041e\u0414\u0410 \u0412\u0414\u041e\u0425\u041d\u041e\u0412\u041b\u042f\u0415\u0422\\r\\n\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 \u2014 \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b \u2014 \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c \u2014 \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c \u2014 \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.\\r\\n\\r\\n\u0413\u041e\u0420\u041e\u0414 \u0411\u041b\u0418\u0416\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f\\r\\n\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 \u2014 \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c \u2014 \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 \u00ab\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f\u00bb, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 \u2014 \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 \u2014 \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b \u2014 \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 \u2014 \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.\\r\\n\\r\\n\u0411\u0415\u0417\u041e\u041f\u0410\u0421\u041d\u041e\u0421\u0422\u042c, \u041e \u041a\u041e\u0422\u041e\u0420\u041e\u0419 \u041c\u041e\u0416\u041d\u041e \u041d\u0415 \u0414\u0423\u041c\u0410\u0422\u042c\\r\\n\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c. \\r\\n\\r\\n\u041f\u041e\u041a\u0423\u041f\u041a\u0410 \u041f\u0420\u041e\u0429\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f\\r\\n\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 \u00ab\u0424\u0410\u041a\u0422\u00bb - \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:\\r\\n- \u0418\u043f\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;\\r\\n- \u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;\\r\\n- \u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;\\r\\n- Trade-in - \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;\\r\\n- \u0412\u044b\u0433\u043e\u0434\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435\\r\\n\\r\\n\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u2014 \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - \u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!\\r\\n\\r\\n\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e \u2014 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c! \\r\\n\\r\\n\",\"fullAvito\":\"<div><span style=\\"font-size: 13px;\\">\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435, \u0433\u0434\u0435 \u043b\u0435\u0441 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0437\u0430 \u043a\u0430\u043b\u0438\u0442\u043a\u043e\u0439, \u0430 \u0434\u043e \u0433\u043e\u0440\u043e\u0434\u0430 &mdash; \u0440\u0443\u043a\u043e\u0439 \u043f\u043e\u0434\u0430\u0442\u044c? \u041c\u044b \u043d\u0430\u0448\u043b\u0438 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e! \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo; \u0432 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u044b \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430, \u0412\u044b\u0431\u043e\u0440\u0433\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 (\u0441\u0432\u0435\u0442, \u0433\u0430\u0437, \u0432\u043e\u0434\u043e\u043f\u0440\u043e\u0432\u043e\u0434), \u043d\u043e\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u0443\u043b\u043e\u0447\u0435\u043a, 4 \u0442\u0438\u043f\u0430 \u0443\u0447\u0430\u0441\u0442\u043a\u043e\u0432 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430.&nbsp;<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><strong><span style=\\"font-size: 13px;\\">\u0412\u042b\u0413\u041e\u0414\u041d\u0410\u042f \u041b\u0418\u041d\u0418\u042f<\/span><\/strong><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0435\u043a\u0443 \u043e\u0442 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0437\u043e\u043d\u043e\u0439 \u0431\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 &mdash; \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0438 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u043c\u0438, \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430. \u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043d\u0438\u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0433\u0443\u043b\u044f\u0442\u044c \u0441 \u0434\u0435\u0442\u044c\u043c\u0438 \u0438\u043b\u0438 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c\u0441\u044f \u0441 \u0441\u043e\u0441\u0435\u0434\u044f\u043c\u0438: \u0432\u0441\u0451 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e\u0435 &mdash; \u0431\u0443\u043a\u0432\u0430\u043b\u044c\u043d\u043e \u0432 \u0434\u0432\u0443\u0445 \u0448\u0430\u0433\u0430\u0445 \u043e\u0442 \u043a\u0430\u043b\u0438\u0442\u043a\u0438. \u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0434\u043b\u044f \u0442\u0435\u0445, \u043a\u043e\u043c\u0443 \u0432\u0430\u0436\u043d\u0430 \u0432\u043a\u043b\u044e\u0447\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0432 \u043e\u0431\u0449\u0443\u044e \u0436\u0438\u0437\u043d\u044c \u043f\u043e\u0441\u0451\u043b\u043a\u0430.<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><strong><span style=\\"font-size: 13px;\\">\u0416\u0418\u0412\u0418\u0422\u0415 \u0422\u0410\u041c, \u0413\u0414\u0415 \u041f\u0420\u0418\u0420\u041e\u0414\u0410 \u0412\u0414\u041e\u0425\u041d\u041e\u0412\u041b\u042f\u0415\u0422<\/span><\/strong><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><strong><span style=\\"font-size: 13px;\\">\u0413\u041e\u0420\u041e\u0414 \u0411\u041b\u0418\u0416\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f<\/span><\/strong><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><strong><span style=\\"font-size: 13px;\\">\u0411\u0415\u0417\u041e\u041f\u0410\u0421\u041d\u041e\u0421\u0422\u042c, \u041e \u041a\u041e\u0422\u041e\u0420\u041e\u0419 \u041c\u041e\u0416\u041d\u041e \u041d\u0415 \u0414\u0423\u041c\u0410\u0422\u042c<\/span><\/strong><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.&nbsp;<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><strong><span style=\\"font-size: 13px;\\">\u041f\u041e\u041a\u0423\u041f\u041a\u0410 \u041f\u0420\u041e\u0429\u0415, \u0427\u0415\u041c \u041a\u0410\u0416\u0415\u0422\u0421\u042f<\/span><\/strong><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">- \u0418\u043f\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">- \u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">- \u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">- Trade-in -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">- \u0412\u044b\u0433\u043e\u0434\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - \u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/div>\\r\\n\\r\\n<div>&nbsp;<\/div>\\r\\n\\r\\n<div><span style=\\"font-size: 13px;\\">\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e &mdash; <strong>\u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c!&nbsp;<\/strong><\/span><\/div>\\r\\n\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 19:34:32\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"2026-06-16 10:00:00\",\"publishedAvitoOff\":\"2026-07-15 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21162\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5763\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"2\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.39\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4473000.00\",\"price100\":\"4025700.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30414726669083,29.845454632293702],[60.30432827576921,29.845797955047594],[60.30422179996258,29.846076904785143],[60.30404079029242,29.845733582031226],[60.30414726669083,29.845454632293702]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"0\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":\"\u043c\u0430\u0448\u0438\u043d\u043e\u043c\u0435\u0441\u0442\u043e\",\"parkingType\":null,\"houseServices\":\"[\\"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e\\",\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u041c\u0435\u0447\u0442\u0430\u0435\u0442\u0435 \u043e \u0434\u043e\u043c\u0435 \u043d\u0430 \u043f\u0440\u0438\u0440\u043e\u0434\u0435, \u043d\u043e \u0431\u043e\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0438\u0448\u0438\u043d\u043e\u0439 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0442\u043e\u0440\u0432\u0430\u043d\u043d\u043e\u0441\u0442\u044c \u043e\u0442 \u0432\u0441\u0435\u0433\u043e &mdash; \u043d\u0438 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0438 \u0434\u043b\u044f \u0434\u0435\u0442\u0435\u0439, \u043d\u0438 \u0441\u043e\u0441\u0435\u0434\u0435\u0439, \u043d\u0438 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b? \u041a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c: \u043b\u0438\u0431\u043e \u043b\u0435\u0441 \u0438 \u0443\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435, \u043b\u0438\u0431\u043e \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0436\u0438\u0437\u043d\u044c? <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412 &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo; \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u042d\u0442\u043e \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u0432 \u0445\u0432\u043e\u0439\u043d\u043e\u043c \u043b\u0435\u0441\u0443, \u0433\u0434\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438 \u0432 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0441\u043e\u0441\u0435\u0434\u0441\u0442\u0432\u0443\u044e\u0442 \u0441 \u0434\u0435\u0442\u0441\u043a\u0438\u043c\u0438 \u0438 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u043c\u0438, \u0430 \u0434\u043e \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430 &mdash; \u0432\u0441\u0435\u0433\u043e 35 \u043a\u043c \u043f\u043e \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u043e\u0439 \u0442\u0440\u0430\u0441\u0441\u0435 \u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f. <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0432 \u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u2764\ufe0f \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043f\u043e\u0442\u0435\u0440\u044f\u0442\u044c!<\/span><\/span><br \/>\\r\\n&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0435\u043a\u0443 \u043e\u0442 \u0432\u044a\u0435\u0437\u0434\u0430 \u0432 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a, \u0440\u044f\u0434\u043e\u043c \u0441 \u0437\u043e\u043d\u043e\u0439 \u0431\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 &mdash; \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438&nbsp; \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430. \u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043d\u0438\u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0433\u0443\u043b\u044f\u0442\u044c \u0441 \u0434\u0435\u0442\u044c\u043c\u0438 \u0438\u043b\u0438 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c\u0441\u044f \u0441 \u0441\u043e\u0441\u0435\u0434\u044f\u043c\u0438: \u0432\u0441\u0451 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0438 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e\u0435 &mdash; \u0431\u0443\u043a\u0432\u0430\u043b\u044c\u043d\u043e \u0432 \u0434\u0432\u0443\u0445 \u0448\u0430\u0433\u0430\u0445 \u043e\u0442 \u043a\u0430\u043b\u0438\u0442\u043a\u0438. \u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0434\u043b\u044f \u0442\u0435\u0445, \u043a\u043e\u043c\u0443 \u0432\u0430\u0436\u043d\u0430 \u0432\u043a\u043b\u044e\u0447\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0432 \u043e\u0431\u0449\u0443\u044e \u0436\u0438\u0437\u043d\u044c \u043f\u043e\u0441\u0451\u043b\u043a\u0430.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/span><br \/>\\r\\n<span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/span><\/p>\\r\\n\\r\\n<ul style=\\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\\">\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0418\u043f\u043e\u0442\u0435\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">Trade-in<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u0430 <\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n<\/ul>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-8deff840-7fff-b9a6-ab76-7da4c2f930e3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u041e\u0446\u0435\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e &mdash; \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0434\u043e\u0441\u0442\u043e\u0439\u043d\u044b\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043b\u0438\u0448\u044c \u043f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c!&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p><br \/>\\r\\n&nbsp;<\/p>\\r\\n\",\"specId\":\"4\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-07-14 12:18:33\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.303814\",\"lng\":\"29.845683\",\"publishedAvitoOn\":\"2026-07-15 09:00:00\",\"publishedAvitoOff\":\"2026-08-14 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21163\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5764\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"3\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.41\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4487000.00\",\"price100\":\"4038300.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.304256404637925,29.845159589302046],[60.304440074991504,29.845502912055963],[60.3043335995504,29.84578722621154],[60.30414992858731,29.845454632293702],[60.304256404637925,29.845159589302046]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 14:32:22\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21164\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5765\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"4\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.44\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4508000.00\",\"price100\":\"4057200.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.304370865994386,29.84486991072844],[60.304551873820984,29.84521323348231],[60.30444273686405,29.845502912055963],[60.30425906652545,29.845164953720047],[60.304370865994386,29.84486991072844]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 14:32:31\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u21165\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5766\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"5\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.46\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4522000.00\",\"price100\":\"4069800.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30448532694855,29.84457486773681],[60.304666334139014,29.844928919326758],[60.304551873821,29.845218597900335],[60.304373527881616,29.84485918189239],[60.30448532694855,29.84457486773681]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:00\",\"updatedOn\":\"2026-06-17 14:32:42\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211626\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5787\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"26\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.37\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4013100.00\",\"price100\":\"3611790.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30370006346915,29.8463826766128],[60.30388506793289,29.84589451457212],[60.303935644507376,29.84599107409667],[60.303975573326476,29.846168099891642],[60.30382384355343,29.846581160079932],[60.30370006346915,29.8463826766128]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:42:43\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211627\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5788\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"27\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.54\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5278000.00\",\"price100\":\"4750200.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.303767942932545,29.845663844596857],[60.30388240600574,29.845889150154093],[60.30369873250711,29.8463773121948],[60.30357362098013,29.846168099891642],[60.303767942932545,29.845663844596857]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:42:51\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211629\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5790\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"29\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.85\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5495000.00\",\"price100\":\"4945500.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.30364016972452,29.845422445785516],[60.303765280995826,29.84565848017883],[60.303570959027546,29.846168099891642],[60.30343786111993,29.84595352317046],[60.30364016972452,29.845422445785516]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:43:09\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211631\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5792\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"31\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.16\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5712000.00\",\"price100\":\"5140800.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.3035123960152,29.845186411392202],[60.30363750777735,29.845422445785516],[60.30343519915622,29.845948158752435],[60.30330210068479,29.8457335820312],[60.3035123960152,29.845186411392202]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:44:57\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211633\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5794\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"33\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.39\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5285700.00\",\"price100\":\"4757130.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.303387283763364,29.84494501258086],[60.303515057972604,29.845186411392202],[60.303302100693834,29.845733582031226],[60.30323555124056,29.84562897587961],[60.303179649628014,29.845492183219886],[60.303387283763364,29.84494501258086]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:45:14\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211634\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5795\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"34\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.11\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5109300.00\",\"price100\":\"4598370.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30326323582395,29.84470361376952],[60.30338834854325,29.844939648162836],[60.30317805241187,29.845492183219886],[60.303063586872234,29.845223962318414],[60.30326323582395,29.84470361376952]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:45:24\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211635\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5796\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"35\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.74\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4876200.00\",\"price100\":\"4388580.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.303135283172665,29.844456850540155],[60.30326305836148,29.84470361376952],[60.3030634093996,29.84522396231836],[60.3029462814534,29.844966470252967],[60.303135283172665,29.844456850540155]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:45:33\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211636\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5797\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"36\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.37\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4643100.00\",\"price100\":\"4178790.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.303010169481205,29.84422081614684],[60.30313262118425,29.844456850540155],[60.3029462814534,29.84496110583494],[60.30282915307695,29.844687520515418],[60.303010169481205,29.84422081614684]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:45:53\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211637\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5798\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"37\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.01\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4416300.00\",\"price100\":\"3974670.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30288239330028,29.843984781753527],[60.30300750748257,29.84422081614684],[60.3028264910635,29.844687520515418],[60.302712024279224,29.84442466403197],[60.30288239330028,29.843984781753527]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:46:01\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211638\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5799\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"38\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.56\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4762800.00\",\"price100\":\"4286520.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30273864449749,29.843705832015974],[60.30288239330028,29.843984781753527],[60.30270936224721,29.84442466403197],[60.30257892286144,29.844134985458368],[60.30273864449749,29.843705832015974]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:46:14\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211639\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5800\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"39\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"7.64\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4813200.00\",\"price100\":\"4331880.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30258424692859,29.84340542460632],[60.30273864449749,29.843700467597948],[60.30257626082756,29.844124256622315],[60.302435172719306,29.843802391540528],[60.30258424692859,29.84340542460632]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:46:27\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211640\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5801\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"40\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"11.71\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"9836400.00\",\"price100\":\"8852760.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"840000.00\",\"pricePerUnit100\":\"756000.00\",\"coords\":\"[[60.30232070455975,29.842901169311506],[60.30257892286144,29.84340542460632],[60.30243517271026,29.843797027122474],[60.30218760152469,29.8432391276474],[60.30232070455975,29.842901169311506]]\",\"queue\":\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u041b\u0438\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u044b\u0445 \u2014 \u0432\u0441\u0435 \u0431\u043b\u0430\u0433\u0430 \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0451\u043b\u043a\u0430 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442\u044b.\",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-17 14:46:34\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"}],\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\":[{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211621\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5782\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"21\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"6.28\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"4396000.00\",\"price100\":\"3956400.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"700000.00\",\"pricePerUnit100\":\"630000.00\",\"coords\":\"[[60.303725351909875,29.84402769709776],[60.303747978401844,29.844011603843683],[60.30386244154519,29.844231544982893],[60.3037027253932,29.844644605171155],[60.30357495195635,29.84440857077789],[60.303725351909875,29.84402769709776]]\",\"queue\":\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043f\u0430\u0434 \u0432\u044b\u0441\u043e\u0442 \u0438 \u0441\u043a\u043b\u043e\u043d, \u043e\u0431\u0440\u0430\u0449\u0451\u043d\u043d\u044b\u0439 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":null,\"parkingType\":\"\u041f\u0430\u0440\u043a\u043e\u0432\u043e\u0447\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\",\"houseServices\":\"[\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"[\\"\\u0410\\u0441\\u0444\\u0430\\u043b\\u044c\\u0442\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u0430\\u044f \\u0434\\u043e\\u0440\\u043e\\u0433\\u0430\\"]\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"<p><b>\u0412\u0438\u0434\u043e\u0432\u043e\u0439, \u0440\u0435\u043b\u044c\u0435\u0444\u043d\u044b\u0439, \u043b\u0435\u0441\u043d\u043e\u0439 \u0438\u043b\u0438 \u0432 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439<\/b> &mdash; \u0432 &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo; \u043a\u0430\u0436\u0434\u044b\u0439 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u0441\u043e \u0441\u0432\u043e\u0438\u043c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043e\u043c, \u0438 \u0441\u0440\u0435\u0434\u0438 \u043d\u0438\u0445 \u0442\u043e\u0447\u043d\u043e \u0435\u0441\u0442\u044c \u0432\u0430\u0448. \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u043a\u043e\u043c\u0444\u043e\u0440\u0442-\u043a\u043b\u0430\u0441\u0441\u0430 \u0432 \u0441\u0435\u0432\u0435\u0440\u043d\u043e\u043c \u043b\u0435\u0441\u0443, 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430, \u0441\u043e \u0432\u0441\u0435\u043c\u0438 \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u044f\u043c\u0438. \u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0439\u0442\u0435 \u2764\ufe0f \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0441\u0432\u043e\u0439!<br \/>\\r\\n<br \/>\\r\\n\ud83c\udf05<b>\u0414\u0430\u043d\u043d\u044b\u0439 \u0443\u0447\u0430\u0441\u0442\u043e\u043a - \u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0441 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c<\/b><br \/>\\r\\n\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0441\u043e \u0441\u043a\u043b\u043e\u043d\u043e\u043c \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0435\u0440\u0435\u043f\u0430\u0434\u043e\u043c \u0432\u044b\u0441\u043e\u0442 &mdash; \u043c\u0435\u0447\u0442\u0430 \u0434\u043b\u044f \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440\u0430 \u0438 \u0442\u0435\u0445, \u043a\u0442\u043e \u0445\u043e\u0447\u0435\u0442 \u0434\u043e\u043c \u0441 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043e\u043c. \u0420\u0435\u043b\u044c\u0435\u0444 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0442\u043e, \u0447\u0435\u0433\u043e \u043d\u0435 \u0434\u0430\u0441\u0442 \u0440\u043e\u0432\u043d\u0430\u044f \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430: \u043c\u043d\u043e\u0433\u043e\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u044b\u0435 \u0442\u0435\u0440\u0440\u0430\u0441\u044b, \u043f\u043e\u0434\u043f\u043e\u0440\u043d\u044b\u0435 \u0441\u0442\u0435\u043d\u043a\u0438, \u0432\u0438\u0434\u043e\u0432\u044b\u0435 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0438 \u0438 \u0432\u0435\u0447\u0435\u0440\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u0442\u044b \u043f\u0440\u044f\u043c\u043e \u0441 \u0432\u0430\u0448\u0435\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0414\u043e\u043c \u0437\u0434\u0435\u0441\u044c \u043d\u0435 \u0441\u0442\u0430\u0432\u044f\u0442 \u043d\u0430 \u0437\u0435\u043c\u043b\u044e &mdash; \u0435\u0433\u043e \u0432\u043f\u0438\u0441\u044b\u0432\u0430\u044e\u0442 \u0432 \u043b\u0430\u043d\u0434\u0448\u0430\u0444\u0442.<br \/>\\r\\n<br \/>\\r\\n\ud83c\udfe1<b>\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442 <\/b><br \/>\\r\\n\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<br \/>\\r\\n<br \/>\\r\\n\ud83c\udfe6<b>\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/b><br \/>\\r\\n\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<br \/>\\r\\n<br \/>\\r\\n\ud83d\udddd<b>\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/b><br \/>\\r\\n\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<br \/>\\r\\n<br \/>\\r\\n\ud83d\udcb5<b>\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/b><br \/>\\r\\n\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; - \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<br \/>\\r\\n\u0418\u043f\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<br \/>\\r\\n\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<br \/>\\r\\n\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<br \/>\\r\\nTrade-in - \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<br \/>\\r\\n\u0412\u044b\u0433\u043e\u0434\u0430 \u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<br \/>\\r\\n\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - \u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<br \/>\\r\\n<br \/>\\r\\n\ud83d\udcde\u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0437\u0430\u044f\u0432\u043a\u0443 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0430 \u0432 \u0432\u0438\u0434\u043e\u0432\u043e\u043c \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u043c \u043f\u043e\u0441\u0435\u043b\u043a\u0435.<\/p>\\r\\n\",\"specId\":\"3\",\"createdOn\":\"2026-06-11 14:34:01\",\"updatedOn\":\"2026-07-09 16:46:50\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.304012\",\"lng\":\"29.845001\",\"publishedAvitoOn\":\"2026-07-09 10:00:00\",\"publishedAvitoOff\":\"2026-08-07 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211628\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5789\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"28\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.05\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5071500.00\",\"price100\":\"4564350.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.30375729518436,29.844757257949812],[60.303930320661124,29.84508985186765],[60.30378391454832,29.845476089965807],[60.30361088829373,29.845143496047967],[60.30375729518436,29.844757257949812]]\",\"queue\":\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043f\u0430\u0434 \u0432\u044b\u0441\u043e\u0442 \u0438 \u0441\u043a\u043b\u043e\u043d, \u043e\u0431\u0440\u0430\u0449\u0451\u043d\u043d\u044b\u0439 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":\"\u0421\u0435\u043b\u044c\u0445\u043e\u0437\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f (\u0421\u041d\u0422, \u0414\u041d\u041f)\",\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":\"\u0414\u0430\u0447\u043d\u043e\u0435 \u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0441\u0442\u0432\u043e (\u0414\u041d\u041f)\",\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":\"\u041c\u043e\u0433\u0443 \u043f\u0440\u043e\u0432\u0435\u0441\u0442\u0438\",\"haggle\":\"0\",\"onlineShow\":\"1\",\"buildingType\":null,\"mortgage\":\"1\",\"saleOptions\":\"[\\"\\u041c\\u043e\\u0436\\u043d\\u043e \\u0432 \\u0438\\u043f\\u043e\\u0442\\u0435\\u043a\\u0443\\"]\",\"garageType\":\"\u043c\u0430\u0448\u0438\u043d\u043e\u043c\u0435\u0441\u0442\u043e\",\"parkingType\":null,\"houseServices\":\"[\\"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e\\",\\"\\u0413\\u0430\\u0437\\"]\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u0438\u0434\u043e\u0432\u043e\u0439, \u0440\u0435\u043b\u044c\u0435\u0444\u043d\u044b\u0439, \u043b\u0435\u0441\u043d\u043e\u0439 \u0438\u043b\u0438 \u0432 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 &mdash; \u0432 &laquo;\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e&raquo; \u043a\u0430\u0436\u0434\u044b\u0439 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u0441\u043e \u0441\u0432\u043e\u0438\u043c \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043e\u043c, \u0438 \u0441\u0440\u0435\u0434\u0438 \u043d\u0438\u0445 \u0442\u043e\u0447\u043d\u043e \u0435\u0441\u0442\u044c \u0432\u0430\u0448. \u041a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0451\u043b\u043e\u043a \u043a\u043e\u043c\u0444\u043e\u0440\u0442-\u043a\u043b\u0430\u0441\u0441\u0430 \u0432 \u0441\u0435\u0432\u0435\u0440\u043d\u043e\u043c \u043b\u0435\u0441\u0443, 35 \u043a\u043c \u043e\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430, \u0441\u043e \u0432\u0441\u0435\u043c\u0438 \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u044f\u043c\u0438. \u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0439\u0442\u0435 \u2764\ufe0f \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0441\u0432\u043e\u0439!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0441 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u0441\u043e \u0441\u043a\u043b\u043e\u043d\u043e\u043c \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043f\u0435\u0440\u0435\u043f\u0430\u0434\u043e\u043c \u0432\u044b\u0441\u043e\u0442 &mdash; \u043c\u0435\u0447\u0442\u0430 \u0434\u043b\u044f \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440\u0430 \u0438 \u0442\u0435\u0445, \u043a\u0442\u043e \u0445\u043e\u0447\u0435\u0442 \u0434\u043e\u043c \u0441 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043e\u043c. \u0420\u0435\u043b\u044c\u0435\u0444 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0442\u043e, \u0447\u0435\u0433\u043e \u043d\u0435 \u0434\u0430\u0441\u0442 \u0440\u043e\u0432\u043d\u0430\u044f \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430: \u043c\u043d\u043e\u0433\u043e\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u044b\u0435 \u0442\u0435\u0440\u0440\u0430\u0441\u044b, \u043f\u043e\u0434\u043f\u043e\u0440\u043d\u044b\u0435 \u0441\u0442\u0435\u043d\u043a\u0438, \u0432\u0438\u0434\u043e\u0432\u044b\u0435 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0438 \u0438 \u0432\u0435\u0447\u0435\u0440\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u0442\u044b \u043f\u0440\u044f\u043c\u043e \u0441 \u0432\u0430\u0448\u0435\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0414\u043e\u043c \u0437\u0434\u0435\u0441\u044c \u043d\u0435 \u0441\u0442\u0430\u0432\u044f\u0442 \u043d\u0430 \u0437\u0435\u043c\u043b\u044e &mdash; \u0435\u0433\u043e \u0432\u043f\u0438\u0441\u044b\u0432\u0430\u044e\u0442 \u0432 \u043b\u0430\u043d\u0434\u0448\u0430\u0444\u0442.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0416\u0438\u0432\u0438\u0442\u0435 \u0442\u0430\u043c, \u0433\u0434\u0435 \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u0430\u0448 \u0434\u043e\u043c \u0442\u0430\u043c, \u0433\u0434\u0435 \u043b\u0435\u0441 &mdash; \u044d\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0444\u043e\u043d, \u0430 \u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438. \u041f\u043e\u0441\u0451\u043b\u043e\u043a \u043e\u043a\u0440\u0443\u0436\u0451\u043d \u043c\u0430\u0441\u0441\u0438\u0432\u0430\u043c\u0438 \u043b\u0435\u0441\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430 \u0441 \u043e\u0441\u043e\u0431\u044b\u043c \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043c \u0437\u0430\u0449\u0438\u0442\u044b &mdash; \u0438\u0445 \u043d\u0435 \u0437\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438 \u043d\u0435 \u0432\u044b\u0440\u0443\u0431\u0438\u0442\u044c. \u0423\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0434\u0435\u0441\u044c \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0430 \u043d\u0435 \u0437\u0430\u0431\u043e\u0440\u043e\u043c, \u0430 \u0441\u0430\u043c\u0438\u043c \u043b\u0435\u0441\u043e\u043c, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0439\u0442\u0438 \u043f\u0435\u0448\u043a\u043e\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043a\u0440\u044b\u0432 \u043a\u0430\u043b\u0438\u0442\u043a\u0443. \u0420\u044f\u0434\u043e\u043c &mdash; \u0412\u043e\u0440\u043e\u043d\u0446\u043e\u0432\u0441\u043a\u043e\u0435 \u043e\u0437\u0435\u0440\u043e, \u0432 3 \u043a\u043c &mdash; \u041b\u044e\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435. \u042d\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043b\u0435\u0441\u043d\u044b\u043c\u0438 \u0434\u0430\u0440\u0430\u043c\u0438 \u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0442\u044c\u0441\u044f \u044d\u043d\u0435\u0440\u0433\u0438\u0435\u0439 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0432\u043e\u0431\u043e\u0434\u044b.<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0413\u043e\u0440\u043e\u0434 \u0431\u043b\u0438\u0436\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0417\u0434\u0435\u0441\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u0435\u0436\u0434\u0443 \u043b\u0435\u0441\u043e\u043c \u0438 \u0446\u0438\u0432\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439. \u0423\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043a\u043e\u0444\u0435 &mdash; \u0432 \u0417\u0435\u043b\u0435\u043d\u043e\u0433\u043e\u0440\u0441\u043a\u0435, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u0435\u0433\u043e 15 \u043c\u0438\u043d\u0443\u0442. \u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0434\u0435\u043d\u044c &mdash; \u0432 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0435: 35 \u043a\u043c \u043f\u043e \u0442\u0440\u0430\u0441\u0441\u0435 &laquo;\u0421\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f&raquo;, \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0434\u043e\u0440\u043e\u0433 \u041a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0448\u0435\u0439\u043a\u0430. \u0410 \u0432\u044b\u0445\u043e\u0434\u043d\u044b\u0435 &mdash; \u043d\u0430 \u0424\u0438\u043d\u0441\u043a\u043e\u043c \u0437\u0430\u043b\u0438\u0432\u0435, \u0433\u0434\u0435 \u043f\u0435\u0441\u0447\u0430\u043d\u044b\u0435 \u043f\u043b\u044f\u0436\u0438 \u0438 \u0441\u043e\u0441\u043d\u044b \u0443 \u0441\u0430\u043c\u043e\u0439 \u0432\u043e\u0434\u044b. \u0412\u0441\u0451 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 &mdash; \u0434\u0435\u0442\u0441\u043a\u0438\u0435 \u0441\u0430\u0434\u044b, \u0448\u043a\u043e\u043b\u044b, \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u044b &mdash; \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u0432 \u0441\u043e\u0441\u0435\u0434\u043d\u0435\u043c \u041f\u0435\u0440\u0432\u043e\u043c\u0430\u0439\u0441\u043a\u043e\u043c. \u041b\u0435\u0441, \u0433\u043e\u0440\u043e\u0434 \u0438 \u043c\u043e\u0440\u0435 &mdash; \u0432 \u043e\u0434\u043d\u043e\u043c \u0440\u0430\u0434\u0438\u0443\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438.<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0434\u0443\u043c\u0430\u0442\u044c<\/span><br \/>\\r\\n<span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0417\u0430\u043a\u0440\u044b\u0442\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043f\u043e \u043f\u0435\u0440\u0438\u043c\u0435\u0442\u0440\u0443, \u041a\u041f\u041f \u0441\u043e \u0448\u043b\u0430\u0433\u0431\u0430\u0443\u043c\u043e\u043c \u0438 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u0440\u043a\u043e\u0432\u043a\u043e\u0439 \u0443 \u0432\u044a\u0435\u0437\u0434\u0430. \u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0436\u0430\u0440\u043e\u0442\u0443\u0448\u0435\u043d\u0438\u044f \u0438 \u0430\u0441\u0444\u0430\u043b\u044c\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u044a\u0435\u0437\u0434 \u043f\u0440\u044f\u043c\u043e \u0434\u043e \u0443\u0447\u0430\u0441\u0442\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0441 <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0438 \u0432\u043e\u0440\u043a\u0430\u0443\u0442-\u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u0438 \u043c\u0435\u0441\u0442\u0430\u043c\u0438 \u043e\u0442\u0434\u044b\u0445\u0430, \u0433\u0434\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0436\u0438\u0432\u044b\u0435 \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u0438 \u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0432\u0430\u043b\u0443\u043d\u044b. \u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043e\u0442\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0435\u0442\u0435\u0439 \u0433\u0443\u043b\u044f\u0442\u044c \u0438 \u043d\u0430\u0434\u043e\u043b\u0433\u043e \u0443\u0435\u0437\u0436\u0430\u0442\u044c, \u043d\u0435 \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044f \u0437\u0430 \u0434\u043e\u043c.<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">&nbsp;<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u041f\u043e\u043a\u0443\u043f\u043a\u0430 \u043f\u0440\u043e\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u0436\u0435\u0442\u0441\u044f<\/span><\/span><\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0423\u0447\u0430\u0441\u0442\u043a\u0438 \u043f\u0440\u043e\u0434\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430 &laquo;\u0424\u0410\u041a\u0422&raquo; -&nbsp; \u0431\u0435\u0437 \u043f\u043e\u0441\u0440\u0435\u0434\u043d\u0438\u043a\u043e\u0432 \u0438 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u0442. \u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b:<\/span><\/span><\/p>\\r\\n\\r\\n<ul style=\\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\\">\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0418\u043f\u043e\u0442\u0435\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430 \u0443\u0447\u0430\u0441\u0442\u043e\u043a \u043e\u0442 \u0431\u0430\u043d\u043a\u043e\u0432-\u043f\u0430\u0440\u0442\u043d\u0451\u0440\u043e\u0432 \u043d\u0430 \u0432\u044b\u0433\u043e\u0434\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0420\u0430\u0441\u0441\u0440\u043e\u0447\u043a\u0430<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043e\u0442 \u0434\u0435\u0432\u0435\u043b\u043e\u043f\u0435\u0440\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0411\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0432\u0448\u0435\u0433\u043e\u0441\u044f \u0443\u0447\u0430\u0441\u0442\u043a\u0430, \u043f\u043e\u043a\u0430 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">Trade-in<\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> -&nbsp; \u0437\u0430\u0447\u0451\u0442 \u0432\u0430\u0448\u0435\u0439 \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0439 \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u043a\u0430;<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n\t<li aria-level=\\"1\\" dir=\\"ltr\\" style=\\"list-style-type: disc; font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre;\\">\\r\\n\t<p dir=\\"ltr\\" role=\\"presentation\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0412\u044b\u0433\u043e\u0434\u0430 <\/span><span style=\\"font-size: 11pt; background-color: rgb(217, 234, 211); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u043f\u0440\u0438 100% \u043e\u043f\u043b\u0430\u0442\u0435<\/span><\/span><\/p>\\r\\n\t<\/li>\\r\\n<\/ul>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0421 \u043d\u0430\u043c\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0435 \u043d\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u0447\u0430\u0441\u0442\u043e\u043a, \u0430 \u0432\u044b\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f &mdash; \u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0441\u0434\u0435\u043b\u043a\u0438 \u0438 \u043d\u0430 \u0432\u0441\u0451\u043c \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c\u044e. \u0413\u0438\u0431\u043a\u0438\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438, \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a - <\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u0432\u0441\u0451 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435<\/span><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\"> \u0431\u0435\u0437 \u043b\u0438\u0448\u043d\u0438\u0445 \u0448\u0430\u0433\u043e\u0432!<\/span><\/span><\/p>\\r\\n\\r\\n<p>&nbsp;<\/p>\\r\\n\\r\\n<p dir=\\"ltr\\" style=\\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\\"><span id=\\"docs-internal-guid-a2a70406-7fff-642d-50c0-a9196fb70bd3\\"><span style=\\"font-size: 11pt; font-family: &quot;Wix Madefor Text&quot;, sans-serif; color: rgb(38, 38, 38); font-variant: normal; vertical-align: baseline; white-space: pre-wrap;\\">\u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0437\u0430\u044f\u0432\u043a\u0443 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0430 \u0432 \u0432\u0438\u0434\u043e\u0432\u043e\u043c \u043a\u043e\u0442\u0442\u0435\u0434\u0436\u043d\u043e\u043c \u043f\u043e\u0441\u0435\u043b\u043a\u0435.<\/span><\/span><\/p>\\r\\n\\r\\n<p><br \/>\\r\\n&nbsp;<\/p>\\r\\n\",\"specId\":\"6\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-07-14 12:20:33\",\"bookingOn\":\"\",\"isInAvito\":1,\"lat\":\"60.303797\",\"lng\":\"29.844263\",\"publishedAvitoOn\":\"2026-07-17 12:00:00\",\"publishedAvitoOff\":\"2026-08-15 23:59:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211630\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5791\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"30\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.12\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5115600.00\",\"price100\":\"4604040.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.303586930730866,29.84443002844997],[60.30375729518436,29.84476262236784],[60.30361088829373,29.845143496047967],[60.303437861110886,29.84481626654815],[60.303586930730866,29.84443002844997]]\",\"queue\":\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043f\u0430\u0434 \u0432\u044b\u0441\u043e\u0442 \u0438 \u0441\u043a\u043b\u043e\u043d, \u043e\u0431\u0440\u0430\u0449\u0451\u043d\u043d\u044b\u0439 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:43:18\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211632\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5793\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"32\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.12\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5115600.00\",\"price100\":\"4604040.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"630000.00\",\"pricePerUnit100\":\"567000.00\",\"coords\":\"[[60.303411241473135,29.84409207011413],[60.303584268788384,29.84442466403197],[60.30343519915622,29.844810902130124],[60.30326483302687,29.84447830821226],[60.303411241473135,29.84409207011413]]\",\"queue\":\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043f\u0430\u0434 \u0432\u044b\u0441\u043e\u0442 \u0438 \u0441\u043a\u043b\u043e\u043d, \u043e\u0431\u0440\u0430\u0449\u0451\u043d\u043d\u044b\u0439 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:02\",\"updatedOn\":\"2026-06-17 14:45:05\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"},{\"name\":\"\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u211652\",\"iconContent\":\"\",\"hintContent\":\"\",\"balloonContent\":\"\",\"fillColor\":\"#00cc00\",\"strokeColor\":\"#00FF00\",\"opacity\":0.4,\"opacityOver\":0.8,\"url\":null,\"onClick\":null,\"statusName\":\"\u0421\u0432\u043e\u0431\u043e\u0434\u0435\u043d\",\"villageName\":\"\u0411\u0430\u0440\u0438\u043d\u043e\u0432\u043e\",\"villageOriginalId\":\"6332\",\"params\":{\"imageURL\":\"https:\/\/maps.fakt-group.ru\/i\/VillageImageLand.1743.jpg\",\"css\":\"PlayNext--LandViewWidget-number--free\"},\"id\":\"5813\",\"isActive\":1,\"isAction\":0,\"isNotShowPrice\":0,\"isShowBasePrice\":0,\"isQueue\u0421ircuit\":0,\"isWithHome\":0,\"isWithContract\":0,\"isNotInFeeds\":0,\"villageId\":\"101\",\"sellerId\":null,\"syncLandId\":\"0\",\"syncSkipProperty\":\"\",\"crmId\":\"\",\"number\":\"52\",\"alternativeName\":\"\",\"address\":\"\",\"statusId\":\"6\",\"statusApiUpdateDate\":\"\",\"square\":\"8.22\",\"squareSH\":\"0.00\",\"squareZOP\":\"0.00\",\"squareZOPText\":\"\",\"price\":\"5466300.00\",\"price100\":\"4919670.00\",\"priceSale\":\"0.00\",\"video\":\"\",\"infrastructurePayment\":\"0.00\",\"pricePerUnit\":\"665000.00\",\"pricePerUnit100\":\"598500.00\",\"coords\":\"[[60.303269713237775,29.84381848479448],[60.3034480652489,29.843335687171926],[60.303591810902546,29.843625365745403],[60.30341079773993,29.84409207011413],[60.303269713237775,29.84381848479448]]\",\"queue\":\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\",\"distanceFromSpb\":\"35 \u043a\u043c\",\"uk\":\"\",\"fence\":\"\u0415\u0441\u0442\u044c\",\"football\":\"\",\"kids\":\"\u0415\u0441\u0442\u044c\",\"water\":\"\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \",\"watertime\":\"\",\"gas\":\"\u041c\u0430\u0433\u0438\u0441\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435\",\"electricityKw\":\"15 \u043a\u0412\u0442\",\"electricity\":\"\",\"kad\":\"\",\"kad2\":\"\",\"comments\":\"\u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043f\u0430\u0434 \u0432\u044b\u0441\u043e\u0442 \u0438 \u0441\u043a\u043b\u043e\u043d, \u043e\u0431\u0440\u0430\u0449\u0451\u043d\u043d\u044b\u0439 \u043d\u0430 \u0437\u0430\u043f\u0430\u0434. \",\"dom_material\":\"\",\"dom_floor\":\"0\",\"dom_sleep\":\"0\",\"dom_build\":\"\",\"dom_complect\":\"\",\"dom_full\":\"\",\"dom_square\":\"0.00\",\"object_type\":null,\"walls_type\":null,\"rooms\":null,\"renovation\":null,\"land_status\":null,\"communication\":[],\"withHiddenLandImage\":0,\"lengths\":null,\"youtube\":\"\",\"demo\":null,\"haggle\":\"0\",\"onlineShow\":\"0\",\"buildingType\":null,\"mortgage\":\"0\",\"saleOptions\":\"\",\"garageType\":null,\"parkingType\":null,\"houseServices\":\"\",\"transportAccessibility\":\"\",\"year\":\"\",\"urlInfo\":\"\",\"urlInfoText\":\"\",\"discountForHot\":\"\",\"fullYandex\":\"\",\"fullAvito\":\"\",\"specId\":\"0\",\"createdOn\":\"2026-06-11 14:34:03\",\"updatedOn\":\"2026-06-16 15:50:09\",\"bookingOn\":\"\",\"isInAvito\":0,\"lat\":\"\",\"lng\":\"\",\"publishedAvitoOn\":\"0000-00-00 00:00:00\",\"publishedAvitoOff\":\"0000-00-00 00:00:00\",\"_parentAction\":null,\"isHiddenPrice\":0,\"rowPrice\":\"\",\"rowPrice100\":\"\"}]}, queueMinMaxPrice: {\"\u0412\u044b\u0433\u043e\u0434\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f\":{\"min\":3611790,\"max\":8852760},\"\u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439\":{\"min\":4069800,\"max\":4227300},\"\u0412\u0438\u0434\u043e\u0432\u044b\u0435 \u0443\u0447\u0430\u0441\u0442\u043a\u0438\":{\"min\":3918600,\"max\":6388200},\"\u0421 \u0440\u0435\u043b\u044c\u0435\u0444\u043e\u043c\":{\"min\":3956400,\"max\":4919670},\"\u0412 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043b\u0435\u0441\u0430\":{\"min\":4158000,\"max\":6684300}}, queueWithoutPrice100: [\"\"], megatimerCode: \'\', filter: { items: [ { \'name\': \'по цене\', \'id\': \'price\' }, { \'name\': \'по номеру\', \'id\': \'number\' }, { \'name\': \'по площади\', \'id\': \'square\' }, { \'name\': \'по наличию дома\', \'id\': \'home\' }, ], selected: \'price\' }, openQueue: [], openLands: [], showAllLand: [], state: window.PlayNext.appState.data }, computed: { filterItems: function () { return this.filter.items; /*return this.filter.items.filter(function (el) { if (el.id === \'price\' && !that.state.auth) { return false; } return true; });*/ }, queuesDesktop: function () { var newData = {}; for (var queueName in this.queues) { if (!this.queues.hasOwnProperty(queueName)) continue; newData[queueName] = this.inArray(\'showAllLand\', queueName) ? this.queues[queueName] : this.queues[queueName].slice(0, 3); } return newData; }, queues: function () { var data = this.items, newData = {}, that = this; function dataFilter(el) { if (!(that.isFree(el) || that.isBooked(el))) return false; return true; } function dataSort(a, b) { /* if (a.isAction === 1 && b.isAction !== 1) return -1; if (a.isAction !== 1 && b.isAction === 1) return 1;*/ switch (that.filter.selected) { case \'square\': var adu = parseFloat(a.square); var bdu = parseFloat(b.square); if (adu > bdu) return 1; if (adu < bdu) return -1; break; case \'price\': var adu = parseInt(that.landPrice(a)); var bdu = parseInt(that.landPrice(b)); if (adu > bdu) return 1; if (adu < bdu) return -1; break; case \'home\': return b.isWithHome - a.isWithHome; default: var adu = parseInt(a.number); var bdu = parseInt(b.number); if (adu > bdu) return 1; if (adu < bdu) return -1; } } for (var key in data) { if (!data.hasOwnProperty(key)) continue; var newKey = key; if (key == \'\') newKey = \'Все участки\'; newData[newKey] = data[key].filter(dataFilter).sort(dataSort); } /* сортировка очередей по цене в кп Негород Токсово, по просьбе клиента */ if (this.village.name === \'Негород Токсово\' || this.village.name === \'Негород Заневский\') { var queues = Object.entries(newData); var actionQueue = null; /* забираем элемент очереди \"Участки по акции\" */ queues.forEach((queue, index) => { if (queue[0] !== \'Участки по акции\') return; actionQueue = queues.splice(index, 1); }); /* сортируем очереди по минимальной цене */ queues.sort((a, b) => { return this.queueMinMaxPrice[a[0]].min - this.queueMinMaxPrice[b[0]].min; }); /* возвращаем элемент очереди \"Участки по акции\" */ if (actionQueue) { queues = [...actionQueue, ...queues]; } newData = Object.fromEntries(queues); } /* сортировка очередей в определенном порядке в кп Бариново, по просьбе клиента */ if (this.village.name === \'Бариново\') { var queues = Object.entries(newData); var actionQueue = null; var order = [ \'Выгодная линия\', \'Видовые участки\', \'С рельефом\', \'В центре событий\', \'В окружении леса\', ]; /* забираем элемент очереди \"Участки по акции\" */ queues.forEach((queue, index) => { if (queue[0] !== \'Участки по акции\') return; actionQueue = queues.splice(index, 1); }); /* сортируем очереди */ queues.sort((a, b) => order.indexOf(a[0]) - order.indexOf(b[0])); /* возвращаем элемент очереди \"Участки по акции\" */ if (actionQueue) { queues = [...actionQueue, ...queues]; } newData = Object.fromEntries(queues); } return newData; } }, methods: { isPrice100Visible(queueName) { console.log(queueName, this.queueWithoutPrice100.some((name) => queueName === name)); if (!this.queueWithoutPrice100 || !this.queueWithoutPrice100.length) return true; return !this.queueWithoutPrice100.some((name) => queueName === name); }, minPriceByQueueName: function (queueName) { if (queueName == \'Все участки\') queueName = \'\'; console.log(\'queueName: \', queueName); if (queueName === \"Участки по акции\") { const targetArray = this.items[queueName]; if (Array.isArray(targetArray)) { const minPrice = targetArray.reduce((min, el) => { console.log(\"MINPRICE\", el); if (Number(el.priceSale) <= 0) return min; return Number(el.priceSale) < Number(min) ? el.priceSale : min; }, Infinity); if (minPrice !== Infinity) { return minPrice; } } return 0; } return this.queueMinMaxPrice[queueName] && this.queueMinMaxPrice[queueName].min ? this.queueMinMaxPrice[queueName].min : 0; }, btnText: function (land) { if (land.isAction && false) { return \'\'; } return \'Узнать стоимость\'; }, showModalLogin: function (land) { window.PlayNext.showLoginPopup({ target: \'getPrice\', targetLandNumber: land.number }); }, getPrice: function (land) { this.showModalLogin(land); if (typeof yaCounter7397368 !== \'undefined\') { yaCounter7397368.reachGoal(\'open-price\'); console.log(\'yandex.metrika(open-price) send complete.\'); } if (typeof ga !== \'undefined\') { ga(\'send\', \'event\', \'click\', \'open-price\'); console.log(\'ga(click, open-price) send complete.\'); } }, isFree: function (land) { return land.statusId == 6; }, isBooked: function (land) { return land.statusId == 8; }, statusName: function (land) { switch (parseInt(land.statusId)) { case 6: return \'Свободен\'; break; case 8: return \'Бронь\'; break; } }, resetOpen: function () { this.openLands = []; }, landPrice: function (land) { return (land.isAction ? (land.priceSale > 0 ? land.priceSale : this.price100(land)) : this.price100(land)); }, totalPrice100: function (land) { return (!land.isAction ? this.price100(land) : (land.priceHot ? land.priceHot : this.price100(land))); }, price100: function (land) { if (land.price100 > 0 && !land.isShowBasePrice) return land.price100; return land.price; /* Ранее рассчитывалось так, клиент уточнил, что это некорректно: return land.price * ratio; */ }, numberFormat: function (number, decimals, dec_point, thousands_sep) { number = (number + \'\').replace(/[^0-9+\-Ee.]/g, \'\'); var n = !isFinite(+number) ? 0 : +number, prec = !isFinite(+decimals) ? 0 : Math.abs(decimals), sep = (typeof thousands_sep === \'undefined\') ? \',\' : thousands_sep, dec = (typeof dec_point === \'undefined\') ? \'.\' : dec_point, s = \'\', toFixedFix = function (n, prec) { var k = Math.pow(10, prec); return \'\' + Math.round(n * k) / k; }; s = (prec ? toFixedFix(n, prec) : \'\' + Math.round(n)).split(\'.\'); if (s[0].length > 3) { s[0] = s[0].replace(/\\B(?=(?:\\d{3})+(?!\\d))/g, sep); } if ((s[1] || \'\').length < prec) { s[1] = s[1] || \'\'; s[1] += new Array(prec - s[1].length + 1).join(\'0\'); } return s.join(dec); }, nf: function (value, r) { return this.numberFormat(value, r ? r : 0, \",\", \" \"); }, toggleArrayDesktop: function (arrayName, id) { var i = this[arrayName].indexOf(id); if (i === -1) { this[arrayName].push(id); } else { this[arrayName].splice(i, 1); } }, toggleArray: function (arrayName, id) { console.log(\'Mobile \'); var i = this[arrayName].indexOf(id); if (i === -1) { this[arrayName].push(id); } else { this[arrayName].splice(i, 1); } }, inArray: function (arrayName, id) { return this[arrayName].indexOf(id) !== -1; } }, mounted() { this.openQueue.push(\'Участки по акции\'); if ( !Object.keys(this.queues).includes(\'Участки по акции\') ) { this.openQueue.push(Object.keys(this.queues)[0]); } /*console.log(\"queues\", this.queues); console.log(\"openQueue\", this.openQueue); console.log(Object.keys(this.queues).includes(\'Участки по акции\'));*/ /*console.log(\'LandViewWidget MOUNTED!\'); console.log(\'Данные village:\', this.village);*/ /*$.ajax({ type: \"POST\", url: \"https://maps.fakt-group.ru/Data.json\", data: {id: 101}, success: function (data) { console.log(\'LandViewWidget\', data); } // dataType: dataType });*/ } }); })(); </script>').promise().done(function () {
            // добавляем кастомные данные со страницы
            var $afterPrepend = MN.$('.MapNext-after-prepend');

            if ($afterPrepend) {
                MN.$('.MapNext-after').prepend($afterPrepend.html());
                $afterPrepend.html('');
            }
        });
        //}
    };
    var queryString = function () {
        // This function is anonymous, is executed immediately and
        // the return value is assigned to QueryString!
        var query_string = {};
        var query = window.location.search.substring(1);
        var vars = query.split("&");
        for (var i = 0; i < vars.length; i++) {
            var pair = vars[i].split("=");
            // If first entry with this name
            if (typeof query_string[pair[0]] === "undefined") {
                query_string[pair[0]] = decodeURIComponent(encodeURI(pair[1]));
                // If second entry with this name
            } else if (typeof query_string[pair[0]] === "string") {
                var arr = [query_string[pair[0]], decodeURIComponent(encodeURI(pair[1]))];
                query_string[pair[0]] = arr;
                // If third or later entry with this name
            } else {
                query_string[pair[0]].push(decodeURIComponent(encodeURI(pair[1])));
            }
        }
        return query_string;
    }();

    var isFreeArea = function (statusName) {
        var index = ['Продан', 'ПРОДАН', 'Бронь', 'БРОНЬ', 'бронь'].findIndex(function (el) {
            return statusName == el;
        });

        return index === -1;
    };

    var isLandWithHome = function (land) {
        return land.isWithHome === 1;
    };

    var isLandWithContract = function (land) {
        return land.isWithContract === 1;
    };

    var isBookedArea = function (statusName) {
        var index = ['Бронь', 'БРОНЬ', 'бронь'].findIndex(function (el) {
            return statusName == el;
        });

        return index !== -1;
    };

    var htmlHintArea = function (area) {
        if (!area.number) return;

        if ('print' in MapNextGET) return;


        return '<div class="PlayNext--LandViewWidget" data-land-id="' + area.id + '" style="width: 340px;">' +
            '<map-hint :land-id="' + area.id + '" :lands="areas" :banner="banner"></map-hint>' +
            '</div>';
    };
    var htmlHintPoint = function (area) {
        // if (!area.number) return;

        if ('print' in MapNextGET) return;


        return '<div class="PlayNext--LandViewWidget"  style="width: 340px;">' +
            '<point-hint :photo="photo" :name="name"  ></point-hint>' +
            '</div>';
    };

    /**
     * Процедура формирования html кода участка, точнее его номера и иконок.
     * Полигон участков (area) формируется в addAreas()
     * @param area
     * @returns {string}
     */
    var iconContentArea = function (area) {
        var state = host.map.action.getCurrentState();
        var zoom = state && state.zoom >= 16;
        // console.log("Zoom level:", state.zoom);
        var addHomeClass = isLandWithHome(area) ? `${zoom ? 'PlayNext--LandViewWidget-number-value--home PlayNext--LandViewWidget-number-value--home-zoomed' : 'PlayNext--LandViewWidget-number-value--home'}` : '';
        // console.log("Is land with home:", isLandWithHome(area), "Class assigned:", addHomeClass);
        if (!addHomeClass) {
            var addHomeClass = isLandWithContract(area) ? `${zoom ? 'PlayNext--LandViewWidget-number-value--contract PlayNext--LandViewWidget-number-value--contract-zoomed' : 'PlayNext--LandViewWidget-number-value--contact'}` : '';

        }

        var $s = '';
        $s += "<div class='PlayNext--LandViewWidget-number" + (area.params.css ? " " + area.params.css : "") + "'>";
        if (area.isAction && area.statusId != 7) $s += "<div class='PlayNext--LandViewWidget-number-action'></div>";
        $s += "<div class='PlayNext--LandViewWidget-number-value " + (addHomeClass) + "'><span>" + area.number + "</span></div>";
        if (area.square !== '0.00') $s += "<div style='display: none;' class='PlayNext--LandViewWidget-number-square'>" + area.square + "</div>";

        $s += "</div>";
        return $s;
    };

    var filterMap = function (form) {
        var filterPriceMinValue = parseInt($(form).find('input[name="priceMin"]').val().replace(/[^0-9]/g, '').trim());
        var filterPriceMaxValue = parseInt($(form).find('input[name="priceMax"]').val().replace(/[^0-9]/g, '').trim());
        var filterSquareMinValue = parseInt($(form).find('input[name="squareMin"]').val().replace(/[^0-9]/g, '').trim());
        var filterSquareMaxValue = parseInt($(form).find('input[name="squareMax"]').val().replace(/[^0-9]/g, '').trim());
        //console.log(filterPriceMinValue + ' ' + filterPriceMaxValue);

        //var zoom = Map.map.getZoom();
        //var center = Map.map.getCenter();

        clear();

        //$('.PlayNext--LandViewWidget-lands-table-tr-item').removeClass('PlayNext--LandViewWidget-lands-table-tr--found').addClass('PlayNext--LandViewWidget-lands-table-tr--notFound');
        $('.PlayNext--LandViewWidget-lands-table-tr-item').fadeOut();

        for (var key in host.areas) {
            var a = host.areas[key];
            //console.log(a);

            var filterPriceIsOk = false;
            var filterSquareIsOk = false;
            var statusIsOk = true;

            if (!isFreeArea(a.statusName) && !isBookedArea(a.statusName)) statusIsOk = false;

            if (a.price >= filterPriceMinValue && a.price <= filterPriceMaxValue) {
                filterPriceIsOk = true;
            }

            if (a.square >= filterSquareMinValue && a.square <= filterSquareMaxValue) {
                filterSquareIsOk = true;
            }

            a.hideMe = true;
            if (filterPriceIsOk && statusIsOk && filterSquareIsOk) {
                a.hideMe = false;
                //$('#PlayNext--LandViewWidget-lands-table-tr-' + a.id).removeClass('PlayNext--LandViewWidget-lands-table-tr--notFound').addClass('PlayNext--LandViewWidget-lands-table-tr--found');
                $('#PlayNext--LandViewWidget-lands-table-tr-' + a.id).fadeIn();
            }
        }

        addAreas();
        addPoints(true);
        setPointsVisibilityByZoom();
        //return to previous position:
        //Map.map.setZoom(zoom);
        //Map.map.setCenter(center);
    };

    var resetFilterMap = function (form) {
        var $slider = $(form).find('.PlayNext--LandViewWidget-filter__slider-itself');

        $slider.each(function () {
            var minValue = $(this).data('base-min');
            var maxValue = $(this).data('base-max');

            $(this).slider("values", [minValue, maxValue]);

            var $min = $(this).closest('.PlayNext--LandViewWidget-filter__slider-block').find('.PlayNext--LandViewWidget-filter__input--min');
            var $max = $(this).closest('.PlayNext--LandViewWidget-filter__slider-block').find('.PlayNext--LandViewWidget-filter__input--max');

            $min.val(PNString.numberFormat(minValue, 0, '', ' '));
            $max.val(PNString.numberFormat(maxValue, 0, '', ' '));
        });

        //var zoom = Map.map.getZoom();
        //var center = Map.map.getCenter();

        $('.PlayNext--LandViewWidget-lands-table-tr-item').fadeIn();

        clear();

        for (var key in host.areas) {
            var a = host.areas[key];
            a.hideMe = false;
        }

        addAreas();
        addPoints(true);
        setPointsVisibilityByZoom();
        //return to previous position:
        //Map.map.setZoom(zoom);
        //Map.map.setCenter(center);
    };

    /* ------ Static public methods ---- */

    MN.Cookie = {};
    MN.Cookie.set = function (name, value, days) {
        if (days) {
            var date = new Date();
            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
            var expires = "; expires=" + date.toGMTString();
        } else var expires = "";
        document.cookie = name + "=" + value + expires + "; path=/;";
    };
    MN.Cookie.get = function (name) {
        var nameEQ = name + "=";
        var ca = document.cookie.split(';');
        for (var i = 0; i < ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == ' ') c = c.substring(1, c.length);
            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }
        return null;
    };

    /* ---------- Constructor ------- */


    if (window) {
        window.villageId = this.id;
        console.log("villageId записан в window.PlayNext:", window.villageId);
    } else {
        console.log("PlayNext не существует в window.");
    }

    console.log("MapNext: Yeah! I am alive! ID: " + this.id + ", URL: " + host.url + ", server: " + MN.host);

    //if (!queryString.withNextMap) return;
    if (this.id != 1
        && this.id != 5
        && this.id != 6
        && this.id != 7
        && this.id != 8
        && this.id != 9
        && this.id != 10
        && this.id != 11
        && this.id != 12
        && this.id != 13
        && this.id != 14
        && this.id != 15
        && this.id != 16
        && this.id != 17
        && this.id != 18
        && this.id != 27
        && this.id != 30
        && this.id != 35
        && this.id != 38
        && this.id != 42
        && this.id != 43
        && this.id != 44
        && this.id != 45
        && this.id != 47
        && this.id != 48
        && this.id != 53
        && this.id != 55
        && this.id != 56
        && this.id != 62
        && this.id != 63
        && this.id != 69
        && this.id != 77
        && this.id != 80
        && this.id != 81
        && this.id != 83
        && this.id != 101
        && !queryString.withNextMap) return;

    var $mapEl = MN.$('.MapNext');
    $mapEl.html('<div style="height:600px;margin:20px 0;background:url(\'' + MN.base + '/i/widget/loading.gif\') no-repeat center center;">');
    //$mapEl.html('<img src="' + MN.base + '/i/widget/loading.gif" style="width:200px;">');

    MN.$(document).ready(function () {
        /*var $_GET = function(key) {
            var s = window.location.search;
            s = s.match(new RegExp(key + '=([^&=]+)'));
            return s ? s[1] : null;
        };

        (function() {
            var orderId = $_GET('orderId');

            if( orderId ) {
                MN.$.ajax({
                    url: MN.base + "/CheckPaySB.json",
                    method: "POST",
                    dataType: 'JSON',
                    data: {
                        url: encodeURIComponent(self.location.href),
                        orderId: orderId
                    },

                    success: function (resp) {
                        if(resp.status) {
                            alert('Оплата прошла успешно! Мы перезвоним Вам в ближайшее время.');

                            function delAttr_rcl(prmName,val){
                                var res = '';
                                var d = location.href.split("#")[0].split("?");
                                var base = d[0];
                                var query = d[1];
                                if(query) {
                                    var params = query.split("&");
                                    for(var i = 0; i < params.length; i++) {
                                        var keyval = params[i].split("=");
                                        if(keyval[0] !== prmName) {
                                            res += params[i];
                                        }
                                    }
                                }

                                return base + (res ? ('?' + res) : '');
                            }


                            location.href = delAttr_rcl('orderId');
                        } else {
                            alert('Ошибка оплаты! Просим обратиться в службу поддержки. Спасибо!');
                        }
                    }
                });
            }
        })();*/


        console.log("MapNext: DOM ready!");

        var loadDataMap = function () {
            MN.$.ajax({
                url: MN.base + "/Data.json",
                method: "POST",
                data: {
                    url: encodeURIComponent(self.location.href),
                    id: host.id
                },

                success: function (x) {
                    if (typeof (x) == "undefined" || !x) return;
                    eval("x=" + x + ";");
                    if (!x) return;

                    console.log("MapNext: data received", x);
                    host.lat = x.lat;
                    host.lng = x.lng;
                    // host.zoom = x.zoom;

                    host.points = x.points;
                    host.areas = x.areas;
                    host.pointsPhotos = x.pointsPhotos;
                    host.villageName = x.villageName;
                    host.sharesBanner = x.sharesBanner;
                    window.SHOW_ONLINE_PAYMENT = x.isOnlineOrders === undefined ? true : !!x.isOnlineOrders;
                    window.SHOW_BONUSES_PAYMENT = x.isWithBallsOrders === undefined ? true : !!x.isWithBallsOrders;
                    window.SHOW_AUTH_WITH_TELEGRAM = x.isLoginTelegram === undefined ? true : !!x.isLoginTelegram;

                    if (window.innerWidth <= 768) {
                        host.zoom = parseInt(x.zoom) - 1;
                    } else {
                        host.zoom = x.zoom;
                    }

                    show();
                }
            });

            //MN.CalcInit();
        };

        if (typeof (MapNextGET.mode) != 'undefined') {
            var modes = MapNextGET.mode.split(',');

            if (modes.indexOf('map') != -1) {
                loadDataMap();
            } else {
                show();
            }
        } else {
            loadDataMap();
        }

        // Форма с отправкой документа на месенджеры
        MN.$(document)
            .on('PN-showModalForm', function () {
                MN.$('#PNFormGetDoc-success').hide();
                MN.$('#PNFormGetDoc-form').show();

                try {
                    var $phone = MN.$('#PNFormGetDoc-phone');

                    $phone.keydown(function (e) {
                        if (e.keyCode === 13) {
                            e.preventDefault();

                            MN.$('#PNFormGetDoc-btn').click();
                        }
                    });


                    $phone.val('+' + window.PlayNext.appState.data.user.phone);
                } catch (e) {

                }
            })

            .on('click', '#PNFormGetDoc-btn', function () {
                var phone = MN.$('#PNFormGetDoc-phone').val();
                var $form = MN.$(".PlayNext--LandViewWidget-form");
                var $errorBox = MN.$("#PNFormGetDoc-error");

                var village = $form.find('[name="village"]').val();
                var land = $form.find('[name="land"]').val();


                $errorBox.hide();

                MN.$.ajax({
                    url: MN.base + "/api/send_doc_manager/",
                    method: "POST",
                    dataType: 'json',

                    data: {
                        phone: phone,
                        village: village,
                        land: land,
                    },

                    success: function (res) {
                        if (res.error) {
                            $errorBox.text(res.message);
                            $errorBox.show();
                            return;
                        }

                        if (res.ok) {
                            MN.$('#PNFormGetDoc-success').show();
                            MN.$('#PNFormGetDoc-form').hide();

                        } else {
                            $errorBox.text('Ошибка. Повторите запрос позже.');
                            $errorBox.show();
                        }
                    }
                });

            })
    });
};

MapNext.start = function () {
    console.log("MapNext.start()");

    // our jquery is here:
    MapNext.$ = $;

    loadScript(MapNext.base + "/js/PNString.js");

    // create widget instance:
    window._MapNextInstances = window._MapNextInstances || [];
    window._MapNextInstances.push(new MapNext());

};

/* ------ Public constants ---- */

// поставил жесткий протокол ибо "Redirect from to has been blocked by CORS policy"
MapNext.protocol = document.location.protocol; // ("https:" == document.location.protocol ? "https" : "http");
MapNext.host = "maps.fakt-group.ru";  // this template is inited server side (in WidgetProxy action)
MapNext.base = MapNext.protocol + "//" + MapNext.host;

MapNext.css = ".PlayNext--clear{font-size:0;clear:both;width:100%;overflow:hidden;height:0;line-height:0}.PlayNext--a2{color:#03508f;cursor:pointer;text-decoration:none;transition:all 0.2s ease-out 0s;border-bottom:1px dotted #03508f}.PlayNext--a2:hover{color:#91c050;border-bottom:1px dotted #91c050}.PlayNext--a2:active{color:#b85555;border-bottom:1px dotted #b85555}.modal{background:#a9d8f3;width:450px;-webkit-border-radius:0.3em;border-radius:0.3em;-moz-border-radius:0.3em;-moz-box-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-box-shadow:0 0 10px rgba(0,0,0,0.5);box-shadow:0 0 10px rgba(0,0,0,0.5);margin:20px auto;padding:1.5em 1.8em 1.5em 1.8em;border:1px solid #D0D0D0;position:relative;display:none;transform-style: preserve-3d;-moz-transition: transform .3s ease; -o-transition: transform .3s ease; -webkit-transition:transform .3s ease; transition: transform .3s ease;;-moz-transform: rotateY(80deg); -o-transform: rotateY(80deg); -webkit-transform:rotateY(80deg); transform: rotateY(80deg);;}.modal.show{-moz-transform: rotateY(0deg); -o-transform: rotateY(0deg); -webkit-transform:rotateY(0deg); transform: rotateY(0deg);}lock{overflow: hidden;}.themodal-overlay{position: fixed;bottom: 0;left: 0;top: 0;right: 0;z-index: 100;overflow: auto;-webkit-overflow-scrolling: touch;background: rgba(0, 0, 0, 0.5);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #7F000000, endColorstr = #7F000000);zoom: 1;perspective: 1000px;opacity:0;-webkit-perspective: 1000px;transform-style: preserve-3d;-webkit-transition:  opacity .3s ease;-moz-transition:  opacity .3s ease;-ms-transition:  opacity .3s ease;transition:  opacity .3s ease;}.themodal-overlay.show{opacity:1}.themodal-overlay > *{-webkit-transform: translateZ(0px);}.PlayNext--LandViewWidget{width: 430px; font:10pt \'Myriad Pro\',Tahoma,Arial;color:#323232}.PlayNext--LandViewWidget *{box-sizing:border-box;}.PlayNext--LandViewWidget--busy{width:240px;background:#f66; height: auto;}.PlayNext--LandViewWidget-img{width:100%;height:130px;background-repeat:no-repeat;background-size:cover;background-position:center bottom;}.PlayNext--LandViewWidget-name{text-align:center;color:#fff;font-weight:bold;font-size:2em;padding:10px 0 0 0;text-shadow:0 0 3px rgba(0,0,0,0.5)}.PlayNext--LandViewWidget-status{text-align:center;color:#fff;font-size:1em;margin:0 0 0 0;text-shadow:0 0 3px rgba(0,0,0,0.5)}.PlayNext--LandViewWidget-status--busy{color:#fff;}.PlayNext--LandViewWidget-queue{text-align:center;color:#fff;font-weight:bold;font-size:1.7em;padding:20px 0 0 0;text-shadow:0 0 3px rgba(0,0,0,0.5)}.PlayNext--LandViewWidget-params{width:92%;margin:15px auto 15px auto;padding:0;text-align:justify;list-style:none}.PlayNext--LandViewWidget-param{display:block;float:left;text-align:left;color:#262626;}.PlayNext--LandViewWidget-param--1{width:26%; border-right: 1px solid #e7e7e7;}.PlayNext--LandViewWidget-param--2{width:41%;text-align:right;padding:0 3%; border-right: 1px solid #e7e7e7}.PlayNext--LandViewWidget-param--3{float:right;text-align:right;}.PlayNext--LandViewWidget-param--noAuth{width: 74%; padding-left: 20px;}.PlayNext--LandViewWidget-param--noAuth-head{font-size: 24px; color: #e20816; font-weight: bold; line-height: 1;}.PlayNext--LandViewWidget-param--noAuth-text{font-size: 13px; margin-top: 10px;}.PlayNext--LandViewWidget-noAuth .PlayNext--LandViewWidget-btn{margin-top: 35px;}.PlayNext--LandViewWidget-param-name{display:block;text-align:left;font-size:0.83em;margin:0 0 0.75em 0}.PlayNext--LandViewWidget-param-value{color:#87b023;font-weight:bold;font-size:1.8em}.PlayNext--LandViewWidget-param-value--old{display:block;color:#aaa;font-weight:normal;margin-top:1.2em;font-size:1em;}.PlayNext--LandViewWidget-param-note{display:block;font-weight:normal;color:#87b023;}.PlayNext--LandViewWidget-param-note--square{color:#aaa;}.PlayNext--LandViewWidget-btn{display:block;height:50px;padding:8px 0 0 0;margin:15px auto 3px auto;text-align:center;border-radius:5px;}.PlayNext--LandViewWidget-btn-line1{display:block;font-size:1.3em;}.PlayNext--LandViewWidget-btn-line2{display:block;}.ymaps-image-with-content .PlayNext--LandViewWidget-number{position: relative; text-align:center;color:#7cca4e;border:none;position:relative;top: 5px; font-size: 0.83em;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--home{display: flex}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--home-zoomed{width: 50px;flex-wrap: wrap;justify-content: center;align-items: center;margin-left: -17px; margin-top: -8px;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--home::before{content: none;display: inline-flex;width: 10px;height: 10px;background: url(\"/images/home.svg\") no-repeat center/contain;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--home-zoomed::before{content: \'\'; width: 20px;height: 20px;margin-right: 5px;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--contract{display: flex}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--contract-zoomed{width: 50px;flex-wrap: wrap;justify-content: center;align-items: center;margin-left: -17px; margin-top: -8px;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--contract::before{content: none;display: inline-flex;width: 10px;height: 10px;background: url(\"/images/contract.svg\") no-repeat center/contain;}.ymaps-image-with-content .PlayNext--LandViewWidget-number-value--contract-zoomed::before{content: \'\'; width: 20px;height: 20px;margin-right: 5px;}.ymaps-image-with-content .PlayNext--LandViewWidget-number--free{color:#fff}.ymaps-image-with-content .PlayNext--LandViewWidget-number--booked{color: #000}.ymaps-image-with-content .PlayNext--LandViewWidget-number--hot-deal{color: #F00}.PlayNext--LandViewWidget-number-action{position: absolute; bottom:90%; margin-left: 70%; width: 32px; height: 29px; background-image: url(\'/images/actionFlag.png\'); background-size: cover;}.PlayNext--LandViewWidget-number-square{text-align: center; margin-top: 2px; font-size: 0.9em;}.MapNext-map.showSquare .PlayNext--LandViewWidget-number-square{display: block !important;}.MapNext-map.showSquare .ymaps-image-with-content .PlayNext--LandViewWidget-number{top: -3px; left: -8px; width: 40px;}.PlayNext--LandViewWidget-number-value{font-weight: bold;}.remodal.PlayNext--LandViewWidget-form{font:10pt \'Myriad Pro\',Tahoma,Arial;color:#323232;background:#fff;width:1100px;max-width:1100px;border-radius:0.3em;box-shadow:0 0 10px rgba(0,0,0,0.5);padding:0 0 0 0;border:0;margin-top: 30px;}.PlayNext--LandViewWidget-form-form{margin:0;transition:all 0.2s ease-out 0s;}html.busy .PlayNext--LandViewWidget-form-form{opacity:0}html.busy .PlayNext--LandViewWidget-form{background-image:url(\'https://maps.fakt-group.ru/i/loading.gif\');background-repeat:no-repeat;background-position:center center}.PlayNext--LandViewWidget-form *{box-sizing:border-box;}.PlayNext--LandViewWidget-form p{color:#323232}.PlayNext--LandViewWidget-form h2{font-size:1.9em;margin:0;padding:0;color:#323232}.PlayNext--LandViewWidget-phone{font-size: 1.8em;margin:.6em 0;color: #E20816;}.PlayNext--LandViewWidget-form-input-label{position:relative;padding:0;display:block;cursor:text;}.PlayNext--LandViewWidget-form-input{font:1.2em \'Myriad Pro\',Tahoma,Arial;color:#323232;transition:all 0.2s ease-out 0s;margin:0;width:100%;outline:0;border-radius:3px;box-sizing:border-box;padding:0 15px;width:100%;height:50px;line-height:50px;border:2px solid #e8e8e8;background:#fff !important}.PlayNext--LandViewWidget-form-input:hover{border-color: #337ab7;}.PlayNext--LandViewWidget-form-input:focus{border-color: #337ab7;}.PlayNext--LandViewWidget-form-textarea{font:1.2em \'Myriad Pro\',Tahoma,Arial;color:#323232;transition:all 0.2s ease-out 0s;margin:0;width:100%;outline:0;border-radius:3px;box-sizing:border-box;padding:15px;width:100%;height:130px;border:2px solid #e8e8e8;background:#fff !important}.PlayNext--LandViewWidget-form-textarea:hover{border-color: #337ab7;}.PlayNext--LandViewWidget-form-textarea:focus{border-color: #337ab7;}.PlayNext--LandViewWidget-form-select{width:100%; font:1.2em \'Myriad Pro\',Tahoma,Arial;color:#323232;transition:all 0.2s ease-out 0s;margin:0;width:100%;outline:0;border-radius:3px;box-sizing:border-box;padding:0 15px;width:100%;height:50px;line-height:50px;border:2px solid #e8e8e8;background:#fff !important}.PlayNext--LandViewWidget-form-select:hover{border-color: #337ab7;}.PlayNext--LandViewWidget-form-select:focus{border-color: #337ab7;}.PlayNext--LandViewWidget-form .chosen-container{font-size:1em}.PlayNext--LandViewWidget-form .chosen-container-single .chosen-single{height:32px;padding:8px 0 0 10px}.PlayNext--LandViewWidget-form .chosen-container-single .chosen-single div b{background-position:0 10px}.PlayNext--LandViewWidget-form .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 10px}.PlayNext--LandViewWidget-form ::-webkit-input-placeholder{color:#323232;}.PlayNext--LandViewWidget-form ::-moz-placeholder{color:#323232;}.PlayNext--LandViewWidget-form :-moz-placeholder{color:#323232;}.PlayNext--LandViewWidget-form :-ms-input-placeholder{color:#323232;}.PlayNext--LandViewWidget-form-table{border-collapse:collapse;border-spacing:0;width:100%}.PlayNext--LandViewWidget-form-th{display:none}.PlayNext--LandViewWidget-form-td{padding:0 0 10px 0;vertical-align:top;}.PlayNext--LandViewWidget-form-btn{cursor:pointer;font-family:\'Myriad Pro\',Tahoma,Arial;display:inline-block;width:100%;height:50px;line-height:50px;padding:0 15px;transition:all 0.2s ease-out 0s;margin:0;border:0;color:#fff;background-color:#e10716;text-align:center;border-radius:3px;text-transform:uppercase;font-weight:bold; border:none; font-size:1.35em;}.PlayNext--LandViewWidget-form-btn:hover{color:#fff;background-color:#337ab7;}.PlayNext--LandViewWidget-form-btn_green{background-color: #83b602; padding-top: 2px;}.PlayNext--LandViewWidget-form-btn_green:hover{background-color: #8cc300;}.PlayNext--LandViewWidget-form-calc-block{width:50%; margin:0; float:left;text-align:left;padding:40px 40px 40px 80px;;}.PlayNext--LandViewWidget-form-calc-form{width:50%; margin:0; float:right;text-align:left;padding:40px 80px 40px 40px;}.PlayNext--LandViewWidget-form-calc-head{margin:1em 0 2em;font-size:1.8em;font-weight:bold;float:left;}.PlayNext--LandViewWidget-form-calc-head--formH2{margin-bottom: 0.3em; float: none;}.PlayNext--LandViewWidget-form-calc-head--formH3{font-size: 1.3em; font-weight: normal; margin: 0.2em 0 2em; max-width: 250px;}.PlayNext--LandViewWidget-form-calc-context{margin:1em 0 1em 0;font-size:1.6em;font-weight:bold;color:#5bb805;text-align:center;float:right;line-height: 1;}.PlayNext--LandViewWidget-form-calc-context--min{font-size:0.83em;}.PlayNext--LandViewWidget-form-calc-cards{width: 173px; height: 35px; float: right; margin-top: 15px; background: url(\'https://maps.fakt-group.ru/i/cards.png\') no-repeat;}.PlayNext--LandViewWidget-form-calc-block .slider-block{position:relative;font-size:1.35em;margin:0 0 2em;}.PlayNext--LandViewWidget-form-calc-block .slider-line{position:absolute; z-index:1; top:9px;left:0; right:0; height:6px; border-radius:5px; background:#e3e3e3;}.PlayNext--LandViewWidget-form-calc-block .slider-container{margin-top:1.5em; width:100%; z-index:5;}.PlayNext--LandViewWidget-form-calc-block .slider{position:relative;width:100%;height:24px;margin:8px 0 8px 0}.PlayNext--LandViewWidget-form-calc-block .slider-itself{padding:12px 11px;position:relative; z-index:5;}.PlayNext--LandViewWidget-form-calc-block .slider-itself .ui-slider-range{background: #e10716; height:6px;border-radius:3px; position:absolute;right:0; z-index:2; top:9px;left:0;}.PlayNext--LandViewWidget-form-calc-block .slider-itself .ui-slider-handle{position:absolute;width:30px;height:30px;background:#e10716; margin:-15px 0 0 -15px;z-index:3;outline:0;cursor:pointer; border-radius:50%; border:5px solid #fff;}.PlayNext--LandViewWidget-form-calc-block .slider-itself:hover .ui-slider-handle{}.PlayNext--LandViewWidget-form-calc-block .slider-hint{}.PlayNext--LandViewWidget-form-calc-block .slider-hint .value{display:inline-block;position:relative;padding:0 10px;}.PlayNext--LandViewWidget-form-calc-block .slider-hint .value:before{position:absolute;bottom:-5px;left:0;right:0;border:2px solid #e10716;border-top:0;height:2px;content:\'\';}.PlayNext--LandViewWidget-form-calc-block .name--discount{margin:10px 0 0;}.PlayNext--LandViewWidget-form-calc-block .slider-hint--discount .value--discount{display:inline-block;position:relative;padding:0 10px;}.PlayNext--LandViewWidget-form-calc-block .slider-hint--discount .value--discount:before{position:absolute;bottom:-5px;left:0;right:0;border:2px solid #e10716;border-top:0;height:2px;content:\'\';}.PlayNext--LandViewWidget-form #monthlyPayment{font-size:1.8em;color:#323232;margin-top: 3em;}.PlayNext--LandViewWidget-form-label{color:#323232;padding:0;}.PlayNext--LandViewWidget-form #monthlyPayment .inner{}.PlayNext--LandViewWidget-form #monthlyPayment .PlayNext--LandViewWidget-form-value{font-weight:bold;color:#e10716;margin-top:1em;}.PlayNext--LandViewWidget-form-head{background:url(\'https://maps.fakt-group.ru/i/widget/form-bg.jpg\') no-repeat 0 0;background-size:cover;text-align:left;}.PlayNext--LandViewWidget-form-head-filter{background:rgba(0,0,0,0.75);padding:35px 0 35px 80px;}.PlayNext--LandViewWidget-form-head-h2{color:#fff;font-size:2.25em;font-weight:bold;text-align:center;margin-bottom: 1em;text-transform:uppercase;}.PlayNext--LandViewWidget-form-head-item{color:#fff;float:left;padding:40px 40px 40px 80px;width:33.333%;position:relative;}.PlayNext--LandViewWidget-form-head-item-img{position:absolute;left:0;top:40px;z-index:2;width:40px;height:40px;background:url(\'https://maps.fakt-group.ru/i/widget/form-head.png\') no-repeat 0 0;}.PlayNext--LandViewWidget-form-head-item-name{font-size:1.8em;}.PlayNext--LandViewWidget-form-head-item-value{font-weight:bold;margin:1em 0;font-size:1.8em;}.PlayNext--LandViewWidget-form-head-item-value2{font-size:1.35em;}.PlayNext--LandViewWidget-form-head-item-value2--price{color:#929292;}.PlayNext--LandViewWidget-form-head-item-value2--pricePerUnit{color:#929292;}.PlayNext--LandViewWidget-form-head-item-img--2{background-position:-40px 0;}.PlayNext--LandViewWidget-form-close{position:absolute;right:-30px;top:-30px;width:60px;height:60px;background:url(\'https://maps.fakt-group.ru/i/widget/form-close.png\') no-repeat 0 0;cursor:pointer;}.PlayNext--LandViewWidget-form-close:hover{background-position:0 -60px;}.PlayNext--LandViewWidget-form-clear{clear:both;}.PlayNext--LandViewWidget-form-close-mob{display:none;text-align:center; margin: 2.5em 0 0;}.PlayNext--LandViewWidget-form-close-mob span{cursor:pointer;text-decoration:underline;font-weight:bold;font-size:1.5em;}.PlayNext--LandViewWidget-form-calc-error{display: none; background-color: #f2dede; color: #a94442; padding: 20px 20px 17px; font-size: 16px; margin-bottom: 15px;}div.MapNext .PlayNext--LandViewWidget-lands-table-block{font-size: 16px;width: 100%;max-width: 100%;margin-bottom: 20px;}div.MapNext .PlayNext--LandViewWidget-lands-offer{margin-top: 20px; margin-left: 30px}div.MapNext .PlayNext--LandViewWidget-lands-table{width: 100%;max-width: 100%; font-size: 18px; color: #333333; margin-bottom: 20px;border-spacing: 0;border-collapse: collapse;}div.MapNext .PlayNext--LandViewWidget-lands-table tbody tr:nth-child(even){background: #fafafa;}div.MapNext .PlayNext--LandViewWidget-lands-table td{border:0; padding: 8px 15px; line-height: 1.2; vertical-align: middle;}div.MapNext .PlayNext--LandViewWidget-lands-table th{vertical-align: middle; padding: 8px 15px; font-size: 18px; text-align: left; border: none;background: #f6f6f6;line-height: 1.2;}div.MapNext .PlayNext--LandViewWidget-lands-table-tr-item__status{white-space:nowrap;}div.MapNext .PlayNext--LandViewWidget-lands-table-tr-item__geometry > div{width: 60px; height: 60px; display: inline-block;}div.MapNext .PlayNext--LandViewWidget-right{text-align: right;}div.MapNext .rub, div.MapNext-landQueue .rub{display: inline-block;font-size: 1em;line-height: 0.3;border-bottom: 1px solid;width:0.4em;}.PlayNext--LandViewWidget-lands-table-head{display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;-webkit-box-align: center; -ms-flex-align: center; align-items: center;margin: 0 0 20px;}.PlayNext--LandViewWidget-lands-table-head-title{font-size: 24px; color: #e80617;}.PlayNext--LandViewWidget-lands-table-head-sort{display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;-webkit-box-align: center; -ms-flex-align: center; align-items: center;margin-left: auto;}.PlayNext--LandViewWidget-lands-table-head-sort-title{font-size: 16px; margin-right: 20px;}.PlayNext--LandViewWidget-lands-table-head-priceMin{margin-left: 20px; background-color: #FFF8BA; border-radius: 2em; font-size: 18px; padding: 7px 15px;}.PlayNext--LandViewWidget-lands-allLands{text-align: center; margin-top: 15px;}.PlayNext--LandViewWidget-lands-allLands > span{font-size: 16px; position: relative; padding-right: 18px; transition: all .2s; border-bottom: 1px dashed #dcdcdc; cursor: pointer; padding-bottom: 3px;}.PlayNext--LandViewWidget-lands-allLands > span:hover{color: #e20816;}.PlayNext--LandViewWidget-lands-allLands > span::after{position: absolute; content: \"\"; width: 10px; height: 5px; right: 0; top: 50%; margin-top: -2px; background: url(\"https://maps.fakt-group.ru/i/arrow_down.svg\") no-repeat center / contain;}.PlayNext--LandViewWidget-lands-allLands_open > span::after{-moz-transform: rotate(180deg); -o-transform: rotate(180deg); -webkit-transform:rotate(180deg); transform: rotate(180deg);}.PlayNext--LandViewWidget-getPrice{border-radius: 5px; font-size: 15px; transition: all .2s; color: #2c2c2c; cursor: pointer; text-align: center; border: 1px solid #83b602; padding: 10px; background: #fff;}.PlayNext--LandViewWidget-getPrice:hover{background: #83b602; color: #fff;}.PlayNext--LandViewWidget-getPrice > span{position: relative; padding-right: 24px; white-space: nowrap;}.PlayNext--LandViewWidget-getPrice > span::after, .PlayNext--LandViewWidget-getPrice > span::before{position: absolute; z-index: 1; top: 50%; margin-top: -9px; right: 0; content: \"\"; width: 15px; height: 19px; background: url(\"https://maps.fakt-group.ru/i/lock_bold_green.svg\") no-repeat center / contain;}.PlayNext--LandViewWidget-getPrice > span::after{opacity: 0; z-index: 2; transition: all .2s; background-image: url(\"https://maps.fakt-group.ru/i/lock_bold_white.svg\");}.PlayNext--LandViewWidget-getPrice:hover > span::after{opacity: 1;}.PlayNext--LandViewWidget-reserved .PlayNext--LandViewWidget-form-calc-block{width: 70%; float: none; margin: 0 auto 2em}.PlayNext--LandViewWidget-reserved .PlayNext--LandViewWidget-form-calc-form{display: none;}.MapNext-redColor{color: #e20816;}.MapNext-greenColor{color: #83b602;}.MapNext-textCenter{text-align: center!important;}.MapNext-textRight{text-align: right!important;}.PlayNext--LandViewWidget-lands-table-tr-item__price{text-align: right; white-space: nowrap;}.PlayNext--LandViewWidget-lands-table-tr-item__price_hot{font-weight: bold;}div.MapNext  th.PlayNext--LandViewWidget-lands-table_th-price-title{font-size: 12px; padding-top: 10px; padding-bottom: 10px; font-weight: bold; text-transform: uppercase; text-align: right; border-bottom: 1px solid #d3d3d3!important;}div.MapNext  th.PlayNext--LandViewWidget-lands-table_th-price{text-align: right; }div.MapNext .PlayNext--LandViewWidget-lands-table tr th:last-child, div.MapNext .PlayNext--LandViewWidget-lands-table tr td:last-child{padding-right: 40px;}.PlayNext--LandViewWidget-landQueue{margin: 0 0 -20px;display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;-webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;}.PlayNext--LandViewWidget-landQueue-item{position: relative; z-index: 2; font-size: 18px; color: #000; background: #eeeeee; padding: 15px 25px; cursor: pointer; margin-right: 7px; margin-top: 30px; text-align: center; -ms-flex-negative: 0; flex-shrink: 0;}.PlayNext--LandViewWidget-landQueue-item:after{content: \" \"; position: absolute; display: block; width: 20px; height: 20px; background: #eeeeee; bottom: -4px; left: 50%; margin-left: -10px; z-index: -1;-moz-transform: rotate(45deg); -o-transform: rotate(45deg); -webkit-transform:rotate(45deg); transform: rotate(45deg);}.PlayNext--LandViewWidget-landQueue-item.active{background: #e20816; color: #fff;}.PlayNext--LandViewWidget-landQueue-item.active:after{background: #e20816;}.PlayNext--LandViewWidget-landQueue-item-priceMin{color: #e20816; font-size: 0.8em; font-weight: bold; margin-top: 10px;}.PlayNext--LandViewWidget-landQueue-item.active .PlayNext--LandViewWidget-landQueue-item-priceMin{color: #ffffff;}.PlayNext--LandViewWidget-arrows{display: inline-block; width: 12px; height: 7px; background: url(\'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAOCAYAAAAbvf3sAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNqEkNEJgDAMRGMRV/BPEHQMwUH8cy79cpDiIBV0EE3hhBJPLRy0ybu0vewoykZEZtWg2oWvSrWoRge4U3k0GOzBTA6TN1VNTDdcgxkcntETk4Ujs+eYdJt8YhILx0KeXG9NYmFrSE0LzjS5GOv6klD6+ci0gs2pCh+xBjCrLQQSK+2xxtcgago/T32YfmGbCE3uEmAA6kc80qYO8fQAAAAASUVORK5CYII=\') no-repeat 0 0;}.PlayNext--LandViewWidget-arrows-open{-moz-transform: rotate(180deg);; -o-transform: rotate(180deg);; -webkit-transform:rotate(180deg);; transform: rotate(180deg);;}.PlayNext--LandViewWidget-mobile{display: none; width: 100%;}.PlayNext--LandViewWidget-mobile-queue{margin: 0 -15px;}.PlayNext--LandViewWidget-mobile-queue-header-wrap{padding: 18px 15px; border-bottom: 1px solid #eeeeee; cursor: pointer;}.PlayNext--LandViewWidget-mobile-queue-header{color: #e30617; font-size: 20px; display: table; width: 100%;}.PlayNext--LandViewWidget-mobile-queue-header > div{display: table-cell; vertical-align: middle;}.PlayNext--LandViewWidget-mobile-queue-header-arrow{width: 32px;}.PlayNext--LandViewWidget-mobile-queue-header-priceMin{font-size: 16px; margin-top: 2px; color: #000; white-space: nowrap;}.PlayNext--LandViewWidget-lands-table-head-arrow{margin-right: 20px; cursor: pointer;  transition: opacity .3s}.PlayNext--LandViewWidget-lands-table-head-arrow:hover{opacity: 0.5;}.PlayNext--LandViewWidget-mobile-queue-body-land-header{width: 100%; cursor: pointer; margin-bottom: 10px; padding: 15px; background: #eeeeee; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;-webkit-box-align: center; -ms-flex-align: center; align-items: center;-webkit-box-pack: space-between; -ms-flex-pack: space-between; justify-content: space-between;}.PlayNext--LandViewWidget-mobile-queue-body-land-header-arrow{width: 32px;}.PlayNext--LandViewWidget-mobile-queue-body-land-header-arrow span{background-position: 0 -7px;}.PlayNext--LandViewWidget-mobile-queue-body-land-header-number{-webkit-box-flex: 1; -ms-flex: 1 0 auto; flex: 1 0 auto;}.PlayNext--LandViewWidget-mobile-queue-body-land-header-status{text-align: right;}.PlayNext--LandViewWidget-mobile-queue-body-land-body{padding: 5px 15px 15px; width: 100%;}.PlayNext--LandViewWidget-mobile-queue-body-land-body > table{width: 100%;}.PlayNext--LandViewWidget-mobile-queue-body-land-body > table > tbody > tr > td{padding: 10px 0;}.PlayNext--LandViewWidget-mobile-queue-body-land-body > table > tbody > tr > td:last-child{text-align: right; font-weight: bold; white-space: nowrap; padding-left: 20px;}.PlayNext--LandViewWidget-select{font: inherit; font-size: 16px; width: 190px; cursor: pointer; transition: all .2s; display: block; padding: 15px 40px 15px 20px; border: 1px solid #a1a1a1; border-radius: 3px; background: url(\'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAYAAADebrddAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiXLhwIQMQ+APxDyDeyYAJ3IGYA4g3sgAJRiBeAcRsQJwKxPOQFCYB8Wwg/gXEXExA4j8QVwMxE1QiCUnhHKg4SP4/C1SiD2pDD1SBHRDHQcVKoPIMLEhW9kJpkIZ4KLsESRxsBQOahiIg/gOle5ElWbD4vh+IJ0D9ggIAAgwAOwgYhiqtKqEAAAAASUVORK5CYII=\') no-repeat calc(100% - 20px) center; -webkit-appearance: none;-moz-appearance: none; outline: none; appearance: none;}.PlayNext--LandViewWidget-select:focus, .PlayNext--LandViewWidget-select:hover{border-color: #e20816;}.PlayNext--LandViewWidget-select_mobile{margin: 24px 0 10px; width: 100%;}#lands-table *{box-sizing: border-box;}.PlayNext--LandViewWidget-mobile-queue_action{background-color: #fef7f8;}.PlayNext--LandViewWidget-mobile-queue_action .PlayNext--LandViewWidget-mobile-queue-body-land-header{background-color: #feedee;}.PlayNext--LandViewWidget-mobile-queue_action .PlayNext--LandViewWidget-mobile-queue-header-name a{color: #d20000; text-decoration: underline;}div.MapNext .PlayNext--LandViewWidget-lands-item{margin-top: 35px;}div.MapNext .PlayNext--LandViewWidget-lands-item_action{background: #fef7f8; padding: 30px;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table th{background: #feedee;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table tbody tr:nth-child(even){background: #feedee;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head-title{font-weight: bold; max-width: 220px; line-height: 1.2;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head-title a{color: #e80617; text-decoration: underline;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head-title a:hover{color: #d20000;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head{margin-bottom: 20px; margin-top: 20px}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PN-LandRow:nth-child(2n) .PN-LandRow_pc{background: #feedee;}div.MapNext .PlayNext--LandViewWidget-lands-item_action .PN-LandHead{background: #feedee;}.PN-timerAction{margin: 0 auto; display: none; padding: 0 20px;}.PlayNext--LandViewWidget-lands-item_action .PN-timerAction{display: block;}.PlayNext--LandViewWidget-mobile-queue_action .PN-timerAction{display: block; margin: 20px 0;}.PN-timerAction-title{font-size: 13px; color: #e80617; padding: 0 3px;}.PN-timerAction-timer{display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;}.PN-timerAction-digit{font-size: 37px; line-height: 1.2; font-weight: bold; color: #e80617;}.PN-timerAction-block{text-align: center; padding: 0 3px;}.PN-timerAction-text{font-size: 14px;}@media all and (max-width: 1200px) {\ndiv.MapNext .PlayNext--LandViewWidget-lands-item_action{padding: 0 0 0;}\ndiv.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head{padding: 30px; margin-bottom: 0;}\n}\n@media all and (max-width: 980px) {\ndiv.MapNext .PlayNext--LandViewWidget-lands-item_action{padding: 30px;}\ndiv.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head{padding: 0; margin-bottom: 30px;}\ndiv.MapNext .PlayNext--LandViewWidget-lands-item_action .PlayNext--LandViewWidget-lands-table-head-title{font-size: 20px;}\n.PN-timerAction-digit{font-size: 25px;}\n.remodal.PlayNext--LandViewWidget-form{width:100%;}\n.PlayNext--LandViewWidget-form-calc-block{width:100%;float:none;padding:30px;}\n.PlayNext--LandViewWidget-form-calc-form{width:100%;float:none;padding:30px;}\n.PlayNext--LandViewWidget-form-head-filter{width:100%;float:none;padding:30px;}\n.PlayNext--LandViewWidget-form-head-item{width:100%;float:none;padding:20px 0 20px 80px;}\n.PlayNext--LandViewWidget-form-close{display:none;}\n.PlayNext--LandViewWidget-form-close-mob{display:block;}\n.PlayNext--LandViewWidget-form-calc-head{margin: 0.5em 0 1em;}\n.PlayNext--LandViewWidget-form-calc-context{margin: 0 0 1em;}\n}\n@media all and (max-width: 750px) {\n.PlayNext--LandViewWidget-lands-table-block{display: none;}\n.PlayNext--LandViewWidget-mobile{display: block;}\n.MapNext-landQueue{padding-bottom: 15px}\n.PlayNext--LandViewWidget-landQueue{justify-content: space-evenly}\n.MapNext-map{height: 300px;}\n.MapNext-map-print{display: none;}\n}\n";


var loadScript = function (url, callback) {

    var script = document.createElement("script")
    script.type = "text/javascript";

    if (script.readyState) { //IE
        script.onreadystatechange = function () {
            if (script.readyState == "loaded" || script.readyState == "complete") {
                script.onreadystatechange = null;
                callback();
            }
        };
    } else { //Others
        script.onload = function () {
            if (callback) callback();
        };
    }

    script.src = url;
    document.getElementsByTagName("head")[0].appendChild(script);
};

if (typeof jQuery === "undefined" || jQuery.fn.jquery !== '3.2.1') {
    // jQuery is loaded => print the version
    if (typeof jQuery === "undefined") {
        console.log("MapNext: jQuery is not here, ver.3.2.1 needed.");
    } else {
        console.log("MapNext: jQuery version is bad: " + jQuery.fn.jquery + ", ver.3.2.1 needed.");
    }
    loadScript("https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js", MapNext.start);
    console.log("MapNext added $, ver.3.2.1");
} else {
    console.log("MapNext: jQuery version is ok: " + jQuery.fn.jquery);
    MapNext.start();
}
