{"id":70113,"date":"2016-11-14T09:59:17","date_gmt":"2016-11-14T07:59:17","guid":{"rendered":"https:\/\/eu4moldova.eu\/eu-and-moldova\/"},"modified":"2026-03-28T14:23:16","modified_gmt":"2026-03-28T12:23:16","slug":"eu-and-moldova","status":"publish","type":"page","link":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/","title":{"rendered":"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c"},"content":{"rendered":"<div>\n<div class=\"scrolling-section\">\n<div class=\"europe\">\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01.svg\" \/>\n        <\/div>\n<\/p><\/div>\n<div class=\"moldova_cont\">\n<div class=\"moldova\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/MOLDOVA_vect.svg\" \/>\n        <\/div>\n<\/p><\/div>\n<\/div>\n<\/div>\n<div>\n<div class=\"text-wrapper\">\n<div class=\"text-container1\">\n<div class=\"text-line11\">\u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 c\u043e\u044e\u0437 \u2014<\/p>\n<div class=\"text-line12\">\u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\n     <\/div>\n<div class=\"text-line13\">\u043f\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e\n     <\/div>\n<\/p><\/div>\n<div class=\"text-container2\">\n<div class=\"text-line21\">\u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0439 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\n     <\/div>\n<div class=\"text-line22\">\u0438 \u043b\u0438\u0434\u0435\u0440 \u0432 \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438\n     <\/div>\n<\/p><\/div>\n<div class=\"text-container3\">\n<div class=\"text-line31\">\u0433\u0430\u0440\u0430\u043d\u0442 \u043c\u0438\u0440\u0430 \t\t\t<\/div>\n<div class=\"text-line32\">\u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438\t\t<\/div>\n<\/p><\/div>\n<div class=\"text-container4\">\n<div class=\"text-line41\">\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043a \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0438 \t\t<\/div>\n<div class=\"text-line42\">\u0432\u043e \u0432\u0441\u0435\u043c \u043c\u0438\u0440\u0435\n         <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/div>\n<h1>\u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435: \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0438 \u0432 \u043b\u044e\u0434\u0435\u0439 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f<\/h1>\n<div>\n<p>    <canvas id=\"container\" width=\"200\" height=\"200\"><\/canvas><\/p>\n<p><script>\n    var points = [],\n    velocity2 = 3, \/\/ velocity squared\n    canvas = \ndocument.getElementById('container'),\n  context = canvas.getContext('2d'),\n  radius = 5,\n  boundaryX = 200,\n  boundaryY = 200,\n  numberOfPoints = 16;<\/p>\n<p>init();<\/p>\n<p>function init() {\n  \/\/ create points\n  for (var i = 0; i<numberOfPoints; i++) {\n    createPoint();\n  }\n  \/\/ create connections\n  for (var i = 0, l=points.length; i<l; i++) {\n    var point = points[i];\n    if(i == 0) {\n      points[i].buddy = points[points.length-1];\n    } else {\n      points[i].buddy = points[i-1];\n    }\n  }\n  \n  \/\/ animate\n  animate();\n}\n\nfunction createPoint() {\n  var point = {}, vx2, vy2;\n  point.x = Math.random()*boundaryX;\n  point.y = Math.random()*boundaryY;\n  \/\/ random vx \n  point.vx = (Math.floor(Math.random())*2-1)*Math.random();\n  vx2 = Math.pow(point.vx, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vy2 = velocity2 - vx2;\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\n  points.push(point);\n}\n\nfunction resetVelocity(point, axis, dir) {\n  var vx, vy;\n  if(axis == 'x') {\n    point.vx = dir*Math.random();  \n    vx2 = Math.pow(point.vx, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vy2 = velocity2 - vx2;\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\n  } else {\n    point.vy = dir*Math.random();  \n    vy2 = Math.pow(point.vy, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vx2 = velocity2 - vy2;\n  point.vx = Math.sqrt(vx2) * (Math.random()*2-1);\n  }\n}\n\nfunction drawCircle(x, y) {\n  context.beginPath();\n  context.arc(x, y, radius, 0, 2 * Math.PI, false);\n  context.fillStyle = '#ffffff';\n  context.fill();  \n}\n\nfunction drawLine(x1, y1, x2, y2) {\n  context.beginPath();\n  context.moveTo(x1, y1);\n  context.lineTo(x2, y2);\n  context.strokeStyle = '#ffffff'\n  context.stroke();\n}  \n\nfunction draw() {\n  for(var i =0, l=points.length; i<l; i++) {\n    \/\/ circles\n    var point = points[i];\n    point.x += point.vx;\n    point.y += point.vy;\n    drawCircle(point.x, point.y);\n    \/\/ lines\n    drawLine(point.x, point.y, point.buddy.x, point.buddy.y);\n    \/\/ check for edge\n    if(point.x < 0+radius) {\n      resetVelocity(point, 'x', 1);\n    } else if(point.x > boundaryX-radius) {\n      resetVelocity(point, 'x', -1);\n    } else if(point.y < 0+radius) {\n      resetVelocity(point, 'y', 1);\n    } else if(point.y > boundaryY-radius) {\n      resetVelocity(point, 'y', -1);\n    } \n  }\n}<\/p>\n<p>function animate() {\n  context.clearRect ( 0 , 0 , 200 , 200 );\n  draw();\n  requestAnimationFrame(animate);\n}\n<\/script><\/p>\n<\/div>\n<div>\n<h3>\u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u043e \u0432\u043e \u0438\u043c\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e<\/h3>\n<div>\n<p>\u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u0430. \u041e\u043d \u0441\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0443, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c \u0440\u0435\u0444\u043e\u0440\u043c\u0430\u043c, \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0431\u043b\u0430\u0433\u043e\u043f\u043e\u043b\u0443\u0447\u0438\u044e. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u044f\u043c \u0438 \u0442\u0435\u0441\u043d\u043e\u043c\u0443 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0443 \u041c\u043e\u043b\u0434\u043e\u0432\u044b \u043d\u0430 \u043f\u0443\u0442\u0438 \u043a \u043f\u0440\u043e\u0446\u0432\u0435\u0442\u0430\u044e\u0449\u0435\u043c\u0443 \u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u043c\u0443 \u0431\u0443\u0434\u0443\u0449\u0435\u043c\u0443. \u0421\u043e\u0442\u043d\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0441\u0435\u043a\u0442\u043e\u0440\u0430\u0445 \u0443\u043b\u0443\u0447\u0448\u0430\u044e\u0442 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0436\u0438\u0437\u043d\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0431\u0438\u0437\u043d\u0435\u0441, \u0441\u043e\u0437\u0434\u0430\u044e\u0442 \u0440\u0430\u0431\u043e\u0447\u0438\u0435 \u043c\u0435\u0441\u0442\u0430 \u0438 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u044e\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0434\u043b\u044f \u043c\u043e\u043b\u043e\u0434\u0435\u0436\u0438.<\/p>\n<\/div>\n<\/div>\n<div>\n<h3>\u041e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u0415\u0421 \u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u044b<\/h3>\n<div>\n<p>\u041f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u043e\u0435 \u0432 2014 \u0433\u043e\u0434\u0443 \u0421\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e\u0431 \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0423\u0433\u043b\u0443\u0431\u043b\u0435\u043d\u043d\u0443\u044e \u0438 \u0432\u0441\u0435\u043e\u0431\u044a\u0435\u043c\u043b\u044e\u0449\u0443\u044e \u0437\u043e\u043d\u0443 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u043b\u0438 (\u0423\u0412\u0417\u0421\u0422)\u00a0\u2014 \u044d\u0442\u043e \u043e\u0441\u043d\u043e\u0432\u0430 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u044b \u0432 \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437. \u042d\u0442\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u043e \u043e\u0442\u043a\u0440\u044b\u043b\u043e \u0440\u044b\u043d\u043a\u0438, \u0443\u043a\u0440\u0435\u043f\u0438\u043b\u043e \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u043e \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u043e\u0441\u0442 \u0441\u0442\u0440\u0430\u043d\u044b.<\/p>\n<\/div>\n<\/div>\n<div>\n<h3>\u041f\u0435\u0440\u0435\u0433\u043e\u0432\u043e\u0440\u044b \u043e \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u0432 \u0415\u0421<\/h3>\n<div>\n<p>\u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u0441\u0434\u0435\u043b\u0430\u043b\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0448\u0430\u0433 \u043a \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044e \u0432 \u0415\u0421 \u0432 \u0438\u044e\u043d\u0435 2022 \u0433\u043e\u0434\u0430, \u043a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0430 \u0441\u0442\u0430\u0442\u0443\u0441 \u0441\u0442\u0440\u0430\u043d\u044b-\u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430. \u0412 \u0438\u044e\u043d\u0435 2024 \u0433\u043e\u0434\u0430 \u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u043b\u0430 \u043a \u043f\u0435\u0440\u0435\u0433\u043e\u0432\u043e\u0440\u0430\u043c \u043e \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0438. \u042d\u0442\u043e \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0441\u043e\u0431\u043e\u0439 \u043d\u043e\u0432\u0443\u044e \u0432\u0435\u0445\u0443 \u0432 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437\u043e\u043c.<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0411\u043e\u043b\u044c\u0448\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u041f\u0430\u043a\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f \u0415\u0421 \u0438 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0435 \u041c\u043e\u043b\u0434\u043e\u0432\u044b \u043d\u0430 \u043f\u0443\u0442\u0438 \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0432 \u0415\u0421 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0437\u0434\u0435\u0441\u044c:<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/%d1%83%d0%b2%d0%b5%d0%bb%d0%b8%d1%87%d0%b5%d0%bd%d0%b8%d0%b5\/\">\u041f\u0430\u043a\u0435\u0442 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f \u0415\u0421<\/a><\/p>\n<\/div>\n<div>\n<h3>\u041f\u043e\u043c\u043e\u0449\u044c \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437\u0430: \u0447\u0442\u043e \u0441\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430 \u0441\u0443\u0445\u0438\u043c\u0438 \u0446\u0438\u0444\u0440\u0430\u043c\u0438<\/h3>\n<div>\n<p>\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0435 \u041c\u043e\u043b\u0434\u043e\u0432\u0430, \u043d\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0444\u0438\u043d\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u043c. \u041e\u043d\u0430 \u043f\u043e\u043c\u043e\u0433\u0430\u0435\u0442 \u0443\u043a\u0440\u0435\u043f\u043b\u044f\u0442\u044c \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0438\u0438, \u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0438 \u0443\u043b\u0443\u0447\u0448\u0430\u0442\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0436\u0438\u0437\u043d\u0438 \u0433\u0440\u0430\u0436\u0434\u0430\u043d. \u0412 \u0446\u0435\u043b\u043e\u043c, \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u0432\u0435\u0434\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u041c\u043e\u043b\u0434\u043e\u0432\u044b, \u043e\u0434\u043d\u0430\u043a\u043e \u043d\u0435\u043c\u043d\u043e\u0433\u0438\u0435 \u0437\u043d\u0430\u044e\u0442 \u043e \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u043c \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0435 \u0438 \u043f\u043e\u043b\u044c\u0437\u0435, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043f\u0440\u0438\u043d\u043e\u0441\u0438\u0442 \u044d\u0442\u0430 \u043f\u043e\u043c\u043e\u0449\u044c.<\/p>\n<p>\u0421 2021 \u0433\u043e\u0434\u0430 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u0432\u044b\u0434\u0435\u043b\u0438\u043b \u0441\u0432\u044b\u0448\u0435 430 \u043c\u043b\u043d \u0435\u0432\u0440\u043e \u0432 \u0432\u0438\u0434\u0435 \u0431\u0435\u0437\u0432\u043e\u0437\u043c\u0435\u0437\u0434\u043d\u044b\u0445 \u0433\u0440\u0430\u043d\u0442\u043e\u0432 \u043d\u0430 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0440\u0435\u0444\u043e\u0440\u043c\u044b, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0441\u0435\u043a\u0442\u043e\u0440\u0430, \u043f\u0440\u0435\u043e\u0434\u043e\u043b\u0435\u043d\u0438\u0435 \u043a\u0440\u0438\u0437\u0438\u0441\u0430 \u0441 \u0431\u0435\u0436\u0435\u043d\u0446\u0430\u043c\u0438 \u0438 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u044b \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438. <span style=\"font-weight: 400;\">\u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u041f\u043b\u0430\u043d\u0430 \u0440\u043e\u0441\u0442\u0430 \u0434\u043b\u044f \u041c\u043e\u043b\u0434\u043e\u0432\u044b \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043c\u043e\u0431\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c 1,6 \u043c\u043b\u0440\u0434 \u0435\u0432\u0440\u043e \u043f\u043e\u0434 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 \u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u043a\u0438.<\/span><\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/%d1%80%d0%b0%d0%b7%d0%b2%d0%b8%d1%82%d0%b8%d0%b5-%d0%be%d1%82%d0%bd%d0%be%d1%88%d0%b5%d0%bd%d0%b8%d0%b9-%d0%bc%d0%b5%d0%b6%d0%b4%d1%83-%d1%80%d0%b5%d1%81%d0%bf%d1%83%d0%b1%d0%bb%d0%b8%d0%ba%d0%be\/\">\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0431\u044e\u043b\u043b\u0435\u0442\u0435\u043d\u044c \u0415\u0421 \u2013 \u041c\u043e\u043b\u0434\u043e\u0432\u0430<\/a><\/p>\n<\/div>\n<div>\n<div>\n<p>\u0412 2024 \u0433\u043e\u0434\u0443 \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u043b \u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u044b\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u043f\u0430\u043a\u0435\u0442 \u0432 \u0440\u0430\u0437\u043c\u0435\u0440\u0435 1,9 \u043c\u043b\u0440\u0434 \u0435\u0432\u0440\u043e, \u0447\u0442\u043e\u0431\u044b \u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0435 \u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043d\u0430 \u043f\u0443\u0442\u0438 \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0432 \u0415\u0421. \u041f\u043b\u0430\u043d \u0440\u043e\u0441\u0442\u0430 \u043f\u0440\u0438\u0437\u0432\u0430\u043d \u0443\u0441\u043a\u043e\u0440\u0438\u0442\u044c \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0435 \u0440\u0435\u0444\u043e\u0440\u043c\u044b, \u0441\u0442\u0438\u043c\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0438 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u0443\u044e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e \u0432 \u0435\u0434\u0438\u043d\u044b\u0439 \u0440\u044b\u043d\u043e\u043a \u0415\u0421. \u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435 \u043e \u041f\u043b\u0430\u043d\u0435 \u0440\u043e\u0441\u0442\u0430 \u0434\u043b\u044f \u041c\u043e\u043b\u0434\u043e\u0432\u044b \u043c\u043e\u0436\u043d\u043e \u0443\u0437\u043d\u0430\u0442\u044c \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435.<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/moldova-growth-plan_rus\/\">\u041f\u043b\u0430\u043d \u0440\u043e\u0441\u0442\u0430<\/a><\/p>\n<\/div>\n<div>\n<p><\/p>\n<div class=\"animation-target\">\n<\/div>\n<p><\/p>\n<\/div>\n<div>\n<div>\n<p>\u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u2014 \u0441 2017 \u0433\u043e\u0434\u0430 \u043e\u043d \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043b \u0431\u043e\u043b\u0435\u0435 400 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u043a\u0430\u043a \u043d\u0430 \u043c\u0435\u0441\u0442\u043d\u043e\u043c (\u043f\u043e \u0432\u0441\u0435\u0439 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u044b), \u0442\u0430\u043a \u0438 \u043d\u0430 \u0440\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u043c (\u0432 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u043e \u0441\u0442\u0440\u0430\u043d\u0430\u043c\u0438 \u0412\u043e\u0441\u0442\u043e\u0447\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u0430) \u0443\u0440\u043e\u0432\u043d\u0435. \u042d\u0442\u043e \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u043b\u043e \u0441\u0442\u0438\u043c\u0443\u043b\u043e\u043c \u0434\u043b\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430 \u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0441\u0435\u043a\u0442\u043e\u0440\u0430\u0445.<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/projects\/eu-project-page\/?id=1865\">\u041f\u0440\u043e\u0435\u043a\u0442\u044b \u0415\u0421<\/a><\/p>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/04\/1.jpg\" alt=\"\"><\/p>\n<h3>\u20ac2,2 \u043c\u043b\u0440\u0434<\/h3>\n<div>\u043d\u0430 \u0437\u0430\u0439\u043c\u044b \u0438 \u0433\u0440\u0430\u043d\u0442\u044b \u0441 2021 \u0433\u043e\u0434\u0430<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/10\/Moldova_growth-scaled.jpg\" alt=\"90 mayors and deputy mayors from the Republic of Moldova attended a forum on regional development\"><\/p>\n<h3>\u20ac1,9 \u043c\u043b\u0440\u0434<\/h3>\n<div>\n<p>\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043d\u0430 \u043f\u0443\u0442\u0438 \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0432 \u0415\u0421<\/p>\n<\/div>\n<\/div>\n<div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/01\/Ciumas.jpg\" alt=\"\"><\/p>\n<h3>\u20ac1,6 \u043c\u043b\u0440\u0434<\/h3>\n<div>\n<p>\u043d\u0430 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 \u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u043a\u0438<\/p>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/01\/Electric-Maraton-scaled.jpg\" alt=\"\"><\/p>\n<h3>\u20ac430 \u043c\u043b\u043d<\/h3>\n<div>\n<p> \u043d\u0430 \u0431\u0435\u0437\u0432\u043e\u0437\u043c\u0435\u0437\u0434\u043d\u044b\u0435 \u0433\u0440\u0430\u043d\u0442\u044b \u0432 2021 \u2013 2024 \u0433\u043e\u0434\u0430\u0445<\/p>\n<\/div>\n<\/div>\n<div>\n<p>    <!-- Particle background container --><\/p>\n<div id=\"particles-js\" class=\"particle-bg\"><\/div>\n<p><!-- Include particles.js library from CDN --><br \/>\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/particles.js@2.0.0\/particles.min.js\"><\/script><\/p>\n<p><!-- Initialize the particle animation --><br \/>\n<script>\n  document.addEventListener(\"DOMContentLoaded\", function () {\n    if (typeof particlesJS !== \"undefined\") {\n      particlesJS(\"particles-js\", {\n        \"particles\": {\n          \"number\": {\n            \"value\": 60,\n            \"density\": {\n              \"enable\": true,\n              \"value_area\": 800\n            }\n          },\n          \"color\": {\n            \"value\": \"#ffffff\"\n          },\n          \"shape\": {\n            \"type\": \"circle\",\n            \"stroke\": {\n              \"width\": 0,\n              \"color\": \"#000000\"\n            }\n          },\n          \"opacity\": {\n            \"value\": 0.5\n          },\n          \"size\": {\n            \"value\": 3,\n            \"random\": true\n          },\n          \"line_linked\": {\n            \"enable\": true,\n            \"distance\": 150,\n            \"color\": \"#ffffff\",\n            \"opacity\": 0.4,\n            \"width\": 1\n          },\n          \"move\": {\n            \"enable\": true,\n            \"speed\": 4,\n            \"direction\": \"none\",\n            \"out_mode\": \"out\"\n          }\n        },\n        \"interactivity\": {\n          \"events\": {\n            \"onhover\": {\n              \"enable\": true,\n              \"mode\": \"repulse\"\n            },\n            \"onclick\": {\n              \"enable\": true,\n              \"mode\": \"push\"\n            }\n          },\n          \"modes\": {\n            \"repulse\": {\n              \"distance\": 100,\n              \"duration\": 0.4\n            },\n            \"push\": {\n              \"particles_nb\": 4\n            }\n          }\n        },\n        \"retina_detect\": true\n      });\n    }\n  });\n<\/script><\/p>\n<\/div>\n<h1>\u0428\u0430\u0433 \u0437\u0430 \u0448\u0430\u0433\u043e\u043c<\/h1>\n<h1>\u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043e\u0431\u0440\u0435\u0442\u0430\u0435\u0442 \u0441\u0432\u043e\u0435 \u043c\u0435\u0441\u0442\u043e<\/h1>\n<h1>\u0432 \u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u043e\u0439 \u0441\u0435\u043c\u044c\u0435!<\/h1>\n<h1>\u0411\u043b\u0438\u0436\u0435 \u043a \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437\u0443<\/h1>\n<div>\n<p>\u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u0430\u0435\u0442\u0441\u044f \u043a \u0447\u043b\u0435\u043d\u0442\u0441\u0432\u0443 \u0432 \u0415\u0421 \u2014 \u0441\u0442\u0440\u0430\u043d\u0430 \u043f\u0440\u043e\u0434\u0432\u0438\u0433\u0430\u0435\u0442\u0441\u044f \u0431\u044b\u0441\u0442\u0440\u044b\u043c\u0438 \u0442\u0435\u043c\u043f\u0430\u043c\u0438 \u043d\u0430 \u043f\u0443\u0442\u0438 \u0435\u0432\u0440\u043e\u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438<\/p>\n<\/div>\n<div>\n<div>\n<p>\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u00abConnecting Europe Facility\u00bb (CEF) \u0444\u0438\u043d\u0430\u043d\u0441\u0438\u0440\u0443\u0435\u0442 \u043a\u0440\u0443\u043f\u043d\u044b\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u044b \u043c\u043e\u0434\u0435\u0440\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0421 2014 \u0433\u043e\u0434\u0430 \u043c\u043e\u043b\u0434\u0430\u0432\u0441\u043a\u0438\u0435 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u0435\u0437\u0434\u0438\u0442\u044c \u0432 \u0415\u0421 \u0431\u0435\u0437 \u0432\u0438\u0437<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u044f\u044e\u0442 \u0441\u0432\u043e\u0438 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u044b \u0447\u0435\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0443 <b>Horizon\u00a0<\/b><\/span><b>Europe<\/b><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u041c\u0435\u0445\u0430\u043d\u0438\u0437\u043c\u0430 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0441\u043a\u043e\u0439 \u0437\u0430\u0449\u0438\u0442\u044b \u0415\u0421, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0435\u0442 \u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435 \u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u0440\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 \u043a\u0440\u0438\u0437\u0438\u0441\u043d\u044b\u0445 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044f\u0445<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0421 1 \u044f\u043d\u0432\u0430\u0440\u044f 2026 \u0433\u043e\u0434\u0430 \u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u0438 \u0415\u0421<strong> \u043e\u0442\u043c\u0435\u043d\u0438\u043b\u0438 \u043f\u043b\u0430\u0442\u0443 \u0437\u0430 \u0440\u043e\u0443\u043c\u0438\u043d\u0433<\/strong><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0423\u0447\u0430\u0449\u0438\u0435\u0441\u044f, \u0441\u0442\u0443\u0434\u0435\u043d\u0442\u044b \u0438 \u043f\u0440\u0435\u043f\u043e\u0434\u0430\u0432\u0430\u0442\u0435\u043b\u0438 \u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u043c\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043f\u043e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435 \u042d\u0440\u0430\u0437\u043c\u0443\u0441+<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0421\u0442\u0440\u0430\u043d\u0430 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u043b\u0430\u0441\u044c \u043a <b>\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435 LIFE<\/b> \u0434\u043b\u044f \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0440 \u0432 \u0441\u0444\u0435\u0440\u0435 \u043a\u043b\u0438\u043c\u0430\u0442\u0430 \u0438 \u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e \u041f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u0435 \u0441 \u0415\u0421 \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0438 \u043e\u0431\u043e\u0440\u043e\u043d\u044b. \u042d\u0442\u043e \u0443\u043f\u0440\u043e\u0447\u0438\u0442 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0438 \u0443\u043a\u0440\u0435\u043f\u0438\u0442 \u0432\u043e\u043e\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0435 \u0441\u0438\u043b\u044b \u0441\u0442\u0440\u0430\u043d\u044b.<\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>\u0412 2025 \u0433\u043e\u0434\u0443 \u041c\u043e\u043b\u0434\u043e\u0432\u0430 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u043b\u0430\u0441\u044c \u043a <strong>SEPA, <\/strong>\u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0434\u0435\u043b\u0430\u0442\u044c\u00a0\u0431\u044b\u0441\u0442\u0440\u044b\u0435 \u0438 \u043d\u0435\u0434\u043e\u0440\u043e\u0433\u0438\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u044b \u0432 \u0435\u0432\u0440\u043e \u0432\u043d\u0443\u0442\u0440\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b<\/p>\n<div class=\"flex flex-col text-sm\">\n<article class=\"text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]\" dir=\"auto\" data-turn-id=\"request-WEB:3317d4e9-e785-4a27-8e46-e28fe7e6e7b5-9\" data-testid=\"conversation-turn-20\" data-scroll-anchor=\"true\" data-turn=\"assistant\" tabindex=\"-1\">\n<div class=\"text-base my-auto mx-auto pb-10 [--thread-content-margin:--spacing(4)] @w-sm\/main:[--thread-content-margin:--spacing(6)] @w-lg\/main:[--thread-content-margin:--spacing(16)] px-(--thread-content-margin)\">\n<div class=\"[--thread-content-max-width:40rem] @w-lg\/main:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group\/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn\" tabindex=\"-1\">\n<div class=\"z-0 flex min-h-[46px] justify-start\"><\/div>\n<div class=\"mt-3 w-full empty:hidden\">\n<div class=\"text-center\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/article>\n<\/div>\n<\/div>\n<\/div>\n<h1>\u041e \u0447\u0435\u043c \u044d\u0442\u043e\u0442 \u0441\u0430\u0439\u0442?<\/h1>\n<div>\n<p>\u042d\u0442\u043e \u043d\u0430\u0434\u0435\u0436\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0431 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0430\u0445 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437\u0430 \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435: \u0440\u0435\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0443\u0441\u043f\u0435\u0445\u0430, \u043d\u043e\u0432\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0438 \u0441\u0430\u043c\u044b\u0435 \u0441\u0432\u0435\u0436\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u043e\u0431 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f\u0445 \u043c\u0435\u0436\u0434\u0443 \u0415\u0421 \u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u043e\u0439:<\/p>\n<\/p>\n<\/div>\n<div>\n<h3>\u041e\u0449\u0443\u0442\u0438\u043c\u044b\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b<\/h3>\n<div>\n<p>\u0438\u0441\u0442\u043e\u0440\u0438\u0438, \u0438\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u044b \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u044b \u0415\u0421 \u0443\u043b\u0443\u0447\u0448\u0430\u044e\u0442 \u0436\u0438\u0437\u043d\u044c \u043b\u044e\u0434\u0435\u0439 \u0432\u043e \u0432\u0441\u0435\u0439 \u041c\u043e\u043b\u0434\u043e\u0432\u0435<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/category\/istorii\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c<\/h3>\n<div>\n<p>\u043a\u043e\u043d\u043a\u0443\u0440\u0441\u044b \u043f\u0440\u043e\u0435\u043a\u0442\u043d\u044b\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0433\u0440\u0430\u043d\u0442\u044b, \u0441\u0442\u0438\u043f\u0435\u043d\u0434\u0438\u0438, \u0441\u0442\u0430\u0436\u0438\u0440\u043e\u0432\u043a\u0438 \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430, \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0435 \u0415\u0421 \u0438 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0430\u043c\u0438<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/category\/vozmozhnosti\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438<\/h3>\n<div>\n<p>\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u043e\u0431 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f\u0445 \u0415\u0421 \u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u044b, \u0432\u0430\u0436\u043d\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u044f\u0445 \u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u0445, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0449\u0438\u0445 \u0431\u0443\u0434\u0443\u0449\u0435\u0435 \u0441\u0442\u0440\u0430\u043d\u044b<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/category\/novosti\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>\u041a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438<\/h3>\n<div>\n<p>\u0411\u0443\u0434\u044c \u0432 \u043a\u0443\u0440\u0441\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u2014 \u0443\u0437\u043d\u0430\u0439 \u043e \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f\u0445 \u0415\u0421: \u043e\u0441\u0432\u0435\u0449\u0430\u0435\u043c \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u0438 \u0441\u043f\u043e\u0441\u043e\u0431\u0441\u0442\u0432\u0443\u0435\u043c \u0434\u0438\u0430\u043b\u043e\u0433\u0443<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/ru\/campaigns\/\"><\/a><\/p>\n<\/div>\n<div>\n<p>\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0438 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0421\u041c\u0418\u00bb, \u0444\u0438\u043d\u0430\u043d\u0441\u0438\u0440\u0443\u0435\u043c\u044b\u0439 \u0415\u0421 \u0438 \u0432\u043d\u0435\u0434\u0440\u044f\u0435\u043c\u044b\u0439 GOPA PACE. \u041e\u043d \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0443\u044e \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0415\u0421 \u0432 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0435 \u041c\u043e\u043b\u0434\u043e\u0432\u0430.<\/p>\n<\/div>\n<p><!--more--><br \/>\n<!-- {\"type\":\"layout\",\"children\":[{\"type\":\"section\",\"props\":{\"height_offset_top\":true,\"height_viewport\":90,\"image_position\":\"center-center\",\"padding\":\"none\",\"padding_remove_bottom\":true,\"padding_remove_top\":true,\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"\n\n<div class=\\\"scrolling-section\\\">\\n    \n\n<div class=\\\"europe\\\">\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01.svg\\\" \\\/>\\n        <\\\/div>\\n    <\\\/div>\\n\\n\n\n<div class=\\\"moldova_cont\\\">\\n        \n\n<div class=\\\"moldova\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/MOLDOVA_vect.svg\\\" \\\/>\\n        <\\\/div>\\n\\n\\n    <\\\/div>\\n\\n \\n    \\n<\\\/div>\\n\\n\\n\",\"css\":\"@keyframes euscroll {\\n    0%  { transform: translateX(0); }\\n    100% { transform: translateX(-100%); }\\n}\\n\\n@keyframes moldovascroll {\\n    0%  { transform: translateX(-100%); }\\n    48% { transform: translateX(20%); }\\n    52% { transform: translateX(20%); }\\n    100% { transform: translateX(-100%); }\\n    \\n}\\n\\n.scrolling-section {\\n    position: relative; \\\/* Creates a common reference for absolute children *\\\/\\n    overflow: hidden;\\n    height: 100vh;\\n    width: 100vw;\\n}\\n\\n.europe, .moldova_cont {\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100vw;\\n    height: 100vh;\\n    display: flex;\\n    align-items: center;\\n    white-space: nowrap;\\n}\\n\\n.europe {\\n    z-index: 1; \\\/* Background layer *\\\/\\n}\\n\\n.moldova_cont {\\n    z-index: 3; \\\/* Foreground layer *\\\/\\n}\\n\\n.union, .moldova {\\n    flex: 0 0 auto;\\n    display: inline-block;\\n}\\n\\n.union img, .moldova img {\\n    height: 100vh;\\n    width: auto;\\n}\\n\\n.moldova img {\\n\\t\\n    opacity: 0.45;\\n    filter:  blur(8px);\\n     \\n}\\n\\n.union {\\n    animation: euscroll 60s infinite linear;\\n}\\n\\n.moldova {\\n    animation: moldovascroll 16s infinite ease-in-out;\\n}\\n\\n\\n.text-container {\\n\\tposition: absolute;\\n    z-index: 2;\\n    width: 800px;\\n    color: #000000;\\n    text-align: center;\\n    font-size: 64px;\\n    font-weight: bold;\\n    overflow: hidden;\\n}\"},\"name\":\"Scroll\"}]}],\"props\":{\"margin\":\"remove-vertical\"}},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"\n\n<div class=\\\"text-wrapper\\\">\\n\n\n<div class=\\\"text-container1\\\">\\n    \n\n<div class=\\\"text-line11\\\">\\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 c\\u043e\\u044e\\u0437 \\u2014\\n        \\n      \n\n<div class=\\\"text-line12\\\">\\u0432\\u0430\\u0436\\u043d\\u0435\\u0439\\u0448\\u0438\\u0439 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\n     <\\\/div>\\n      \n\n<div class=\\\"text-line13\\\">\\u043f\\u043e \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u044e\\n     <\\\/div>\\n <\\\/div> \\n    \\n\n\n<div class=\\\"text-container2\\\">\\n    \n\n<div class=\\\"text-line21\\\">\\u043d\\u0430\\u0434\\u0435\\u0436\\u043d\\u044b\\u0439 \\u0442\\u043e\\u0440\\u0433\\u043e\\u0432\\u044b\\u0439 \\u0441\\u043e\\u044e\\u0437\\u043d\\u0438\\u043a\\n     <\\\/div>\\n    \n\n<div class=\\\"text-line22\\\">\\u0438 \\u043b\\u0438\\u0434\\u0435\\u0440 \\u0432 \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u0436\\u0435\\u043d\\u0438\\u0438 \\u0443\\u0441\\u0442\\u043e\\u0439\\u0447\\u0438\\u0432\\u043e\\u0441\\u0442\\u0438\\n     <\\\/div>\\n <\\\/div>    \\n     \\n\n\n<div class=\\\"text-container3\\\">\\n\\n     \n\n<div class=\\\"text-line31\\\">\\u0433\\u0430\\u0440\\u0430\\u043d\\u0442 \\u043c\\u0438\\u0440\\u0430 \\t\\t\\t<\\\/div>\\n     \n\n<div class=\\\"text-line32\\\">\\u0438 \\u0441\\u0442\\u0430\\u0431\\u0438\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u0438\\t\\t<\\\/div>\\n  <\\\/div>    \\n   \\n\n\n<div class=\\\"text-container4\\\">\\n    \\n    \n\n<div class=\\\"text-line41\\\">\\u0441\\u0442\\u043e\\u0440\\u043e\\u043d\\u043d\\u0438\\u043a \\u0434\\u0435\\u043c\\u043e\\u043a\\u0440\\u0430\\u0442\\u0438\\u0438 \\t\\t<\\\/div>\\n     \n\n<div class=\\\"text-line42\\\">\\u0432\\u043e \\u0432\\u0441\\u0435\\u043c \\u043c\\u0438\\u0440\\u0435\\n         <\\\/div>\\n <\\\/div>\\n <\\\/div>\\n\\n\",\"css\":\".text {\\n    display: flex;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n.text-container1 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -55vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n.text-container2 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -40vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n\\n  }\\n.text-container3 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -35vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n.text-container4 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -30vh;\\n    z-index: 2;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n\\n.text-container1 div {\\n    opacity: 0;\\n\\n}\\n\\n\\\/* Individual animations for each text line *\\\/\\n.text-line11 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 0s;\\n}\\n.text-line12 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 0.5s;\\n}\\n.text-line13 {\\n    animation: fadeInOut13 21s forwards infinite;\\n    animation-delay: 1s;\\n}\\n\\n.text-container2 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n.text-line21 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 6s;\\n}\\n.text-line22 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 6.5s;\\n}\\n\\n.text-container3 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n.text-line31 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 11s;\\n}\\n.text-line32 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 11.5s;\\n}\\n\\n.text-container4 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n\\n.text-line41 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 16s;\\n}\\n.text-line42 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 16.5s;\\n}\\n\\n\\\/* Keyframes for each text-line *\\\/\\n@keyframes fadeInOut11 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut12 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut13 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut21 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut22 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut31 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut32 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut41 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut42 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\"},\"name\":\"Text\"}]}]}],\"name\":\"TOP\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding_remove_bottom\":true,\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"1-4\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"\\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437 \\u0432 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0435: \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0438 \\u0432 \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0438 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u044f\",\"title_element\":\"h1\",\"title_style\":\"heading-small\"}},{\"type\":\"html\",\"props\":{\"content\":\"<canvas id=\\\"container\\\" width=\\\"200\\\" height=\\\"200\\\"><\\\/canvas>\\n\\n<script>\\n    var points = [],\\n    velocity2 = 3, \\\/\\\/ velocity squared\\n    canvas = \\ndocument.getElementById('container'),\\n  context = canvas.getContext('2d'),\\n  radius = 5,\\n  boundaryX = 200,\\n  boundaryY = 200,\\n  numberOfPoints = 16;\\n\\ninit();\\n\\nfunction init() {\\n  \\\/\\\/ create points\\n  for (var i = 0; i<numberOfPoints; i++) {\\n    createPoint();\\n  }\\n  \\\/\\\/ create connections\\n  for (var i = 0, l=points.length; i<l; i++) {\\n    var point = points[i];\\n    if(i == 0) {\\n      points[i].buddy = points[points.length-1];\\n    } else {\\n      points[i].buddy = points[i-1];\\n    }\\n  }\\n  \\n  \\\/\\\/ animate\\n  animate();\\n}\\n\\nfunction createPoint() {\\n  var point = {}, vx2, vy2;\\n  point.x = Math.random()*boundaryX;\\n  point.y = Math.random()*boundaryY;\\n  \\\/\\\/ random vx \\n  point.vx = (Math.floor(Math.random())*2-1)*Math.random();\\n  vx2 = Math.pow(point.vx, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vy2 = velocity2 - vx2;\\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\\n  points.push(point);\\n}\\n\\nfunction resetVelocity(point, axis, dir) {\\n  var vx, vy;\\n  if(axis == 'x') {\\n    point.vx = dir*Math.random();  \\n    vx2 = Math.pow(point.vx, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vy2 = velocity2 - vx2;\\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\\n  } else {\\n    point.vy = dir*Math.random();  \\n    vy2 = Math.pow(point.vy, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vx2 = velocity2 - vy2;\\n  point.vx = Math.sqrt(vx2) * (Math.random()*2-1);\\n  }\\n}\\n\\nfunction drawCircle(x, y) {\\n  context.beginPath();\\n  context.arc(x, y, radius, 0, 2 * Math.PI, false);\\n  context.fillStyle = '#ffffff';\\n  context.fill();  \\n}\\n\\nfunction drawLine(x1, y1, x2, y2) {\\n  context.beginPath();\\n  context.moveTo(x1, y1);\\n  context.lineTo(x2, y2);\\n  context.strokeStyle = '#ffffff'\\n  context.stroke();\\n}  \\n\\nfunction draw() {\\n  for(var i =0, l=points.length; i<l; i++) {\\n    \\\/\\\/ circles\\n    var point = points[i];\\n    point.x += point.vx;\\n    point.y += point.vy;\\n    drawCircle(point.x, point.y);\\n    \\\/\\\/ lines\\n    drawLine(point.x, point.y, point.buddy.x, point.buddy.y);\\n    \\\/\\\/ check for edge\\n    if(point.x < 0+radius) {\\n      resetVelocity(point, 'x', 1);\\n    } else if(point.x > boundaryX-radius) {\\n      resetVelocity(point, 'x', -1);\\n    } else if(point.y < 0+radius) {\\n      resetVelocity(point, 'y', 1);\\n    } else if(point.y > boundaryY-radius) {\\n      resetVelocity(point, 'y', -1);\\n    } \\n  }\\n}\\n\\nfunction animate() {\\n  context.clearRect ( 0 , 0 , 200 , 200 );\\n  draw();\\n  requestAnimationFrame(animate);\\n}\\n<\\\/script>\\n    \\n    \",\"css\":\"\\n\\n.container {\\n  align-items: center;\\n  position: relative;\\n  width: 400px;\\n  height: 400px;\\n  margin: auto;\\n  transform: rotate(45deg);\\n  top: 0; bottom: 0; left: 0; right: 0;\\n}\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"prevent_collapse\":false,\"vertical_align\":\"bottom\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0441\\u043e\\u044e\\u0437 \\u2014 \\u0432\\u0430\\u0436\\u043d\\u0435\\u0439\\u0448\\u0438\\u0439 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440 \\u0420\\u0435\\u0441\\u043f\\u0443\\u0431\\u043b\\u0438\\u043a\\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430. \\u041e\\u043d \\u0441\\u043e\\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0443\\u0435\\u0442 \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u043e\\u043c\\u0443 \\u043f\\u0440\\u043e\\u0433\\u0440\\u0435\\u0441\\u0441\\u0443, \\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0442\\u0438\\u0432\\u043d\\u044b\\u043c \\u0440\\u0435\\u0444\\u043e\\u0440\\u043c\\u0430\\u043c, \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u044e \\u0438\\u043d\\u0444\\u0440\\u0430\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u0443\\u0440\\u044b \\u0438 \\u0441\\u043e\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u043c\\u0443 \\u0431\\u043b\\u0430\\u0433\\u043e\\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u044e. \\u0411\\u043b\\u0430\\u0433\\u043e\\u0434\\u0430\\u0440\\u044f \\u0441\\u0442\\u0440\\u0430\\u0442\\u0435\\u0433\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u043c \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u044f\\u043c \\u0438 \\u0442\\u0435\\u0441\\u043d\\u043e\\u043c\\u0443 \\u0441\\u043e\\u0442\\u0440\\u0443\\u0434\\u043d\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u0443 \\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0441\\u043e\\u044e\\u0437 \\u0430\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e \\u0441\\u043f\\u043e\\u0441\\u043e\\u0431\\u0441\\u0442\\u0432\\u0443\\u0435\\u0442 \\u043f\\u0440\\u043e\\u0433\\u0440\\u0435\\u0441\\u0441\\u0443 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b \\u043d\\u0430 \\u043f\\u0443\\u0442\\u0438 \\u043a \\u043f\\u0440\\u043e\\u0446\\u0432\\u0435\\u0442\\u0430\\u044e\\u0449\\u0435\\u043c\\u0443 \\u0438 \\u0441\\u0442\\u0430\\u0431\\u0438\\u043b\\u044c\\u043d\\u043e\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0443\\u0449\\u0435\\u043c\\u0443. \\u0421\\u043e\\u0442\\u043d\\u0438 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u043e\\u0432 \\u0432 \\u0440\\u0430\\u0437\\u043b\\u0438\\u0447\\u043d\\u044b\\u0445 \\u0441\\u0435\\u043a\\u0442\\u043e\\u0440\\u0430\\u0445 \\u0443\\u043b\\u0443\\u0447\\u0448\\u0430\\u044e\\u0442 \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0436\\u0438\\u0437\\u043d\\u0438 \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d, \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u044e\\u0442 \\u0431\\u0438\\u0437\\u043d\\u0435\\u0441, \\u0441\\u043e\\u0437\\u0434\\u0430\\u044e\\u0442 \\u0440\\u0430\\u0431\\u043e\\u0447\\u0438\\u0435 \\u043c\\u0435\\u0441\\u0442\\u0430 \\u0438 \\u043e\\u0442\\u043a\\u0440\\u044b\\u0432\\u0430\\u044e\\u0442 \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0435\\u0439 \\u0434\\u043b\\u044f \\u043c\\u043e\\u043b\\u043e\\u0434\\u0435\\u0436\\u0438.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u0423\\u0441\\u0442\\u043e\\u0439\\u0447\\u0438\\u0432\\u043e\\u0435 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0441\\u0442\\u0432\\u043e \\u0432\\u043e \\u0438\\u043c\\u044f \\u043b\\u0443\\u0447\\u0448\\u0435\\u0433\\u043e \\u0431\\u0443\\u0434\\u0443\\u0449\\u0435\\u0433\\u043e\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-small\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u043d\\u043d\\u043e\\u0435 \\u0432 2014 \\u0433\\u043e\\u0434\\u0443 \\u0421\\u043e\\u0433\\u043b\\u0430\\u0448\\u0435\\u043d\\u0438\\u0435 \\u043e\\u0431 \\u0430\\u0441\\u0441\\u043e\\u0446\\u0438\\u0430\\u0446\\u0438\\u0438, \\u0432\\u043a\\u043b\\u044e\\u0447\\u0430\\u044f \\u0423\\u0433\\u043b\\u0443\\u0431\\u043b\\u0435\\u043d\\u043d\\u0443\\u044e \\u0438 \\u0432\\u0441\\u0435\\u043e\\u0431\\u044a\\u0435\\u043c\\u043b\\u044e\\u0449\\u0443\\u044e \\u0437\\u043e\\u043d\\u0443 \\u0441\\u0432\\u043e\\u0431\\u043e\\u0434\\u043d\\u043e\\u0439 \\u0442\\u043e\\u0440\\u0433\\u043e\\u0432\\u043b\\u0438 (\\u0423\\u0412\\u0417\\u0421\\u0422)\\u00a0\\u2014 \\u044d\\u0442\\u043e \\u043e\\u0441\\u043d\\u043e\\u0432\\u0430 \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u043e\\u0439 \\u0438 \\u043f\\u043e\\u043b\\u0438\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u043e\\u0439 \\u0438\\u043d\\u0442\\u0435\\u0433\\u0440\\u0430\\u0446\\u0438\\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b \\u0432 \\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0441\\u043e\\u044e\\u0437. \\u042d\\u0442\\u043e \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0441\\u0442\\u0432\\u043e \\u043e\\u0442\\u043a\\u0440\\u044b\\u043b\\u043e \\u0440\\u044b\\u043d\\u043a\\u0438, \\u0443\\u043a\\u0440\\u0435\\u043f\\u0438\\u043b\\u043e \\u0442\\u043e\\u0440\\u0433\\u043e\\u0432\\u044b\\u0435 \\u043e\\u0442\\u043d\\u043e\\u0448\\u0435\\u043d\\u0438\\u044f \\u0438 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0430\\u043b\\u043e \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0439 \\u0440\\u043e\\u0441\\u0442 \\u0441\\u0442\\u0440\\u0430\\u043d\\u044b.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041e\\u0442\\u043d\\u043e\\u0448\\u0435\\u043d\\u0438\\u044f \\u0415\\u0421 \\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h2\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u0441\\u0434\\u0435\\u043b\\u0430\\u043b\\u0430 \\u0438\\u0441\\u0442\\u043e\\u0440\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0439 \\u0448\\u0430\\u0433 \\u043a \\u0432\\u0441\\u0442\\u0443\\u043f\\u043b\\u0435\\u043d\\u0438\\u044e \\u0432 \\u0415\\u0421 \\u0432 \\u0438\\u044e\\u043d\\u0435 2022 \\u0433\\u043e\\u0434\\u0430, \\u043a\\u043e\\u0433\\u0434\\u0430 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0443\\u0441 \\u0441\\u0442\\u0440\\u0430\\u043d\\u044b-\\u043a\\u0430\\u043d\\u0434\\u0438\\u0434\\u0430\\u0442\\u0430. \\u0412 \\u0438\\u044e\\u043d\\u0435 2024 \\u0433\\u043e\\u0434\\u0430 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e \\u043f\\u0440\\u0438\\u0441\\u0442\\u0443\\u043f\\u0438\\u043b\\u0430 \\u043a \\u043f\\u0435\\u0440\\u0435\\u0433\\u043e\\u0432\\u043e\\u0440\\u0430\\u043c \\u043e \\u043f\\u0440\\u0438\\u0441\\u043e\\u0435\\u0434\\u0438\\u043d\\u0435\\u043d\\u0438\\u0438. \\u042d\\u0442\\u043e \\u043e\\u0437\\u043d\\u0430\\u043c\\u0435\\u043d\\u043e\\u0432\\u0430\\u043b\\u043e \\u0441\\u043e\\u0431\\u043e\\u0439 \\u043d\\u043e\\u0432\\u0443\\u044e \\u0432\\u0435\\u0445\\u0443 \\u0432 \\u0441\\u043e\\u0442\\u0440\\u0443\\u0434\\u043d\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\u0441 \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437\\u043e\\u043c.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041f\\u0435\\u0440\\u0435\\u0433\\u043e\\u0432\\u043e\\u0440\\u044b \\u043e \\u0432\\u0441\\u0442\\u0443\\u043f\\u043b\\u0435\\u043d\\u0438\\u0438 \\u0432 \\u0415\\u0421\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h3\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u0411\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u0438 \\u043e \\u041f\\u0430\\u043a\\u0435\\u0442\\u0435 \\u0440\\u0430\\u0441\\u0448\\u0438\\u0440\\u0435\\u043d\\u0438\\u044f \\u0415\\u0421 \\u0438 \\u043f\\u0440\\u043e\\u0433\\u0440\\u0435\\u0441\\u0441\\u0435 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b \\u043d\\u0430 \\u043f\\u0443\\u0442\\u0438 \\u0432\\u0441\\u0442\\u0443\\u043f\\u043b\\u0435\\u043d\\u0438\\u044f \\u0432 \\u0415\\u0421 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e \\u0437\\u0434\\u0435\\u0441\\u044c:<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/%d1%83%d0%b2%d0%b5%d0%bb%d0%b8%d1%87%d0%b5%d0%bd%d0%b8%d0%b5\\\/\",\"link_style\":\"default\",\"link_text\":\"\\u041f\\u0430\\u043a\\u0435\\u0442 \\u0440\\u0430\\u0441\\u0448\\u0438\\u0440\\u0435\\u043d\\u0438\\u044f \\u0415\\u0421\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}],\"props\":{\"layout\":\"1-4,1-2,1-4\"}}],\"name\":\"Stonger partnership\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"3-5,2-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-5\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430, \\u043a\\u043e\\u0442\\u043e\\u0440\\u0443\\u044e \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437 \\u043f\\u0440\\u0435\\u0434\\u043e\\u0441\\u0442\\u0430\\u0432\\u043b\\u044f\\u0435\\u0442 \\u0420\\u0435\\u0441\\u043f\\u0443\\u0431\\u043b\\u0438\\u043a\\u0435 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430, \\u043d\\u0435 \\u043e\\u0433\\u0440\\u0430\\u043d\\u0438\\u0447\\u0438\\u0432\\u0430\\u0435\\u0442\\u0441\\u044f \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u0438\\u0435\\u043c. \\u041e\\u043d\\u0430 \\u043f\\u043e\\u043c\\u043e\\u0433\\u0430\\u0435\\u0442 \\u0443\\u043a\\u0440\\u0435\\u043f\\u043b\\u044f\\u0442\\u044c \\u0438\\u043d\\u0441\\u0442\\u0438\\u0442\\u0443\\u0446\\u0438\\u0438, \\u043c\\u043e\\u0434\\u0435\\u0440\\u043d\\u0438\\u0437\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u0438\\u043d\\u0444\\u0440\\u0430\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u0443\\u0440\\u0443, \\u0441\\u043e\\u0437\\u0434\\u0430\\u0432\\u0430\\u0442\\u044c \\u043d\\u043e\\u0432\\u044b\\u0435 \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u0443\\u043b\\u0443\\u0447\\u0448\\u0430\\u0442\\u044c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0436\\u0438\\u0437\\u043d\\u0438 \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d. \\u0412 \\u0446\\u0435\\u043b\\u043e\\u043c, \\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0441\\u043e\\u044e\\u0437 \\u0432\\u043e\\u0441\\u043f\\u0440\\u0438\\u043d\\u0438\\u043c\\u0430\\u0435\\u0442\\u0441\\u044f \\u043a\\u0430\\u043a \\u0432\\u0435\\u0434\\u0443\\u0449\\u0438\\u0439 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b, \\u043e\\u0434\\u043d\\u0430\\u043a\\u043e \\u043d\\u0435\\u043c\\u043d\\u043e\\u0433\\u0438\\u0435 \\u0437\\u043d\\u0430\\u044e\\u0442 \\u043e \\u0440\\u0435\\u0430\\u043b\\u044c\\u043d\\u043e\\u043c \\u043c\\u0430\\u0441\\u0448\\u0442\\u0430\\u0431\\u0435 \\u0438 \\u043f\\u043e\\u043b\\u044c\\u0437\\u0435, \\u043a\\u043e\\u0442\\u043e\\u0440\\u0443\\u044e \\u043f\\u0440\\u0438\\u043d\\u043e\\u0441\\u0438\\u0442 \\u044d\\u0442\\u0430 \\u043f\\u043e\\u043c\\u043e\\u0449\\u044c.<\\\/p>\\n\n\n<p>\\u0421 2021 \\u0433\\u043e\\u0434\\u0430 \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437 \\u0432\\u044b\\u0434\\u0435\\u043b\\u0438\\u043b \\u0441\\u0432\\u044b\\u0448\\u0435 430 \\u043c\\u043b\\u043d \\u0435\\u0432\\u0440\\u043e \\u0432 \\u0432\\u0438\\u0434\\u0435 \\u0431\\u0435\\u0437\\u0432\\u043e\\u0437\\u043c\\u0435\\u0437\\u0434\\u043d\\u044b\\u0445 \\u0433\\u0440\\u0430\\u043d\\u0442\\u043e\\u0432 \\u043d\\u0430 \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u0440\\u0435\\u0444\\u043e\\u0440\\u043c\\u044b, \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u044d\\u043d\\u0435\\u0440\\u0433\\u0435\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u043e\\u0433\\u043e \\u0441\\u0435\\u043a\\u0442\\u043e\\u0440\\u0430, \\u043f\\u0440\\u0435\\u043e\\u0434\\u043e\\u043b\\u0435\\u043d\\u0438\\u0435 \\u043a\\u0440\\u0438\\u0437\\u0438\\u0441\\u0430 \\u0441 \\u0431\\u0435\\u0436\\u0435\\u043d\\u0446\\u0430\\u043c\\u0438 \\u0438 \\u0438\\u043d\\u0438\\u0446\\u0438\\u0430\\u0442\\u0438\\u0432\\u044b \\u0432 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438. <span style=\\\"font-weight: 400;\\\">\\u0412 \\u0440\\u0430\\u043c\\u043a\\u0430\\u0445 \\u041f\\u043b\\u0430\\u043d\\u0430 \\u0440\\u043e\\u0441\\u0442\\u0430 \\u0434\\u043b\\u044f \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b \\u0443\\u0434\\u0430\\u043b\\u043e\\u0441\\u044c \\u043c\\u043e\\u0431\\u0438\\u043b\\u0438\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c 1,6 \\u043c\\u043b\\u0440\\u0434 \\u0435\\u0432\\u0440\\u043e \\u043f\\u043e\\u0434 \\u0441\\u0442\\u0440\\u0430\\u0442\\u0435\\u0433\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u044b, \\u0432 \\u0442\\u043e\\u043c \\u0447\\u0438\\u0441\\u043b\\u0435 \\u0432 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0438\\u043d\\u0444\\u0440\\u0430\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u0443\\u0440\\u044b \\u0438 \\u044d\\u043d\\u0435\\u0440\\u0433\\u0435\\u0442\\u0438\\u043a\\u0438.<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/%d1%80%d0%b0%d0%b7%d0%b2%d0%b8%d1%82%d0%b8%d0%b5-%d0%be%d1%82%d0%bd%d0%be%d1%88%d0%b5%d0%bd%d0%b8%d0%b9-%d0%bc%d0%b5%d0%b6%d0%b4%d1%83-%d1%80%d0%b5%d1%81%d0%bf%d1%83%d0%b1%d0%bb%d0%b8%d0%ba%d0%be\\\/\",\"link_style\":\"default\",\"link_text\":\"\\u0418\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u044e\\u043b\\u043b\\u0435\\u0442\\u0435\\u043d\\u044c \\u0415\\u0421 \\u2013 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041f\\u043e\\u043c\\u043e\\u0449\\u044c \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437\\u0430: \\u0447\\u0442\\u043e \\u0441\\u043a\\u0440\\u044b\\u0432\\u0430\\u0435\\u0442\\u0441\\u044f \\u0437\\u0430 \\u0441\\u0443\\u0445\\u0438\\u043c\\u0438 \\u0446\\u0438\\u0444\\u0440\\u0430\\u043c\\u0438\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-small\"}},{\"type\":\"fragment\",\"props\":{\"margin\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u0412 2024 \\u0433\\u043e\\u0434\\u0443 \\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0441\\u043e\\u044e\\u0437 \\u0443\\u0442\\u0432\\u0435\\u0440\\u0434\\u0438\\u043b \\u0431\\u0435\\u0441\\u043f\\u0440\\u0435\\u0446\\u0435\\u0434\\u0435\\u043d\\u0442\\u043d\\u044b\\u0439 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u043e\\u0432\\u044b\\u0439 \\u043f\\u0430\\u043a\\u0435\\u0442 \\u0432 \\u0440\\u0430\\u0437\\u043c\\u0435\\u0440\\u0435 1,9 \\u043c\\u043b\\u0440\\u0434 \\u0435\\u0432\\u0440\\u043e, \\u0447\\u0442\\u043e\\u0431\\u044b \\u043e\\u043a\\u0430\\u0437\\u0430\\u0442\\u044c \\u0420\\u0435\\u0441\\u043f\\u0443\\u0431\\u043b\\u0438\\u043a\\u0435 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u043d\\u0430 \\u043f\\u0443\\u0442\\u0438 \\u0432\\u0441\\u0442\\u0443\\u043f\\u043b\\u0435\\u043d\\u0438\\u044f \\u0432 \\u0415\\u0421. \\u041f\\u043b\\u0430\\u043d \\u0440\\u043e\\u0441\\u0442\\u0430 \\u043f\\u0440\\u0438\\u0437\\u0432\\u0430\\u043d \\u0443\\u0441\\u043a\\u043e\\u0440\\u0438\\u0442\\u044c \\u0432\\u0430\\u0436\\u043d\\u0435\\u0439\\u0448\\u0438\\u0435 \\u0440\\u0435\\u0444\\u043e\\u0440\\u043c\\u044b, \\u0441\\u0442\\u0438\\u043c\\u0443\\u043b\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u043a\\u0443 \\u0438 \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0442\\u044c \\u043f\\u043e\\u0441\\u0442\\u0435\\u043f\\u0435\\u043d\\u043d\\u0443\\u044e \\u0438\\u043d\\u0442\\u0435\\u0433\\u0440\\u0430\\u0446\\u0438\\u044e \\u0432 \\u0435\\u0434\\u0438\\u043d\\u044b\\u0439 \\u0440\\u044b\\u043d\\u043e\\u043a \\u0415\\u0421. \\u041f\\u043e\\u0434\\u0440\\u043e\\u0431\\u043d\\u0435\\u0435 \\u043e \\u041f\\u043b\\u0430\\u043d\\u0435 \\u0440\\u043e\\u0441\\u0442\\u0430 \\u0434\\u043b\\u044f \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b \\u043c\\u043e\\u0436\\u043d\\u043e \\u0443\\u0437\\u043d\\u0430\\u0442\\u044c \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/moldova-growth-plan_rus\\\/\",\"link_style\":\"default\",\"link_text\":\"\\u041f\\u043b\\u0430\\u043d \\u0440\\u043e\\u0441\\u0442\\u0430\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"},\"name\":\"pane_eu\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"bottom\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"<br \/>\\n\n\n<div class=\\\"animation-target\\\">\\n<\\\/div>\\n\\n<br \/>\\n\",\"css\":\"\\n.animation-target {\\n  display:block;\\n  width:10px;\\n  min-height:10px;\\n  background:white;\\n  margin:1em auto;\\n  padding:1em;\\n  \\n}\\n\\n\\n\\n.animation-target {\\n  animation: animation 2000ms linear infinite both;\\n}\\n\\n\\\/* Generated with Bounce.js. Edit at https:\\\/\\\/goo.gl\\\/Z3kBJC *\\\/\\n\\n@keyframes animation { \\n  0% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  2.15% { transform: matrix3d(0.589, 0, 0, 0, 0, 1.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  4.3% { transform: matrix3d(0.297, 0, 0, 0, 0, 1.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  6.46% { transform: matrix3d(0.158, 0, 0, 0, 0, 2.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  8.61% { transform: matrix3d(0.125, 0, 0, 0, 0, 2.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  14.16% { transform: matrix3d(0.183, 0, 0, 0, 0, 2.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  19.72% { transform: matrix3d(0.205, 0, 0, 0, 0, 1.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  24.9% { transform: matrix3d(0.201, 0, 0, 0, 0, 1.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  25% { transform: matrix3d(0.201, 0, 0, 0, 0, 1.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  27.15% { transform: matrix3d(0.138, 0.145, 0, 0, -1.445, 1.382, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  29.3% { transform: matrix3d(0.038, 0.196, 0, 0, -1.964, 0.379, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  30.83% { transform: matrix3d(-0.006, 0.2, 0, 0, -2, -0.059, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  31.46% { transform: matrix3d(-0.016, 0.199, 0, 0, -1.994, -0.164, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  33.61% { transform: matrix3d(-0.029, 0.198, 0, 0, -1.979, -0.292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  39.16% { transform: matrix3d(-0.006, 0.2, 0, 0, -1.999, -0.065, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  41.99% { transform: matrix3d(0, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  44.72% { transform: matrix3d(0.002, 0.2, 0, 0, -2, 0.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  49.9% { transform: matrix3d(0.001, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  50% { transform: matrix3d(0.001, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  52.15% { transform: matrix3d(0, 0.611, 0, 0, -1.486, 0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  54.3% { transform: matrix3d(0, 0.903, 0, 0, -1.121, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  55.83% { transform: matrix3d(-0.001, 1.015, 0, 0, -0.981, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  56.46% { transform: matrix3d(-0.001, 1.042, 0, 0, -0.948, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  58.61% { transform: matrix3d(0, 1.075, 0, 0, -0.907, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  64.16% { transform: matrix3d(0, 1.017, 0, 0, -0.979, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  66.99% { transform: matrix3d(0, 0.999, 0, 0, -1.001, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  69.72% { transform: matrix3d(0, 0.995, 0, 0, -1.006, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  75% { transform: matrix3d(0, 0.999, 0, 0, -1.002, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  80.83% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  91.99% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  100% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } \\n}\\n\\n\\n\\n\\n\\n\\nResources\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437 \\u043d\\u0435 \\u0442\\u043e\\u043b\\u044c\\u043a\\u043e \\u043f\\u0440\\u0435\\u0434\\u043e\\u0441\\u0442\\u0430\\u0432\\u043b\\u044f\\u0435\\u0442 \\u043f\\u0440\\u044f\\u043c\\u043e\\u0435 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u0438\\u0435 \\u2014 \\u0441 2017 \\u0433\\u043e\\u0434\\u0430 \\u043e\\u043d \\u0440\\u0435\\u0430\\u043b\\u0438\\u0437\\u043e\\u0432\\u0430\\u043b \\u0431\\u043e\\u043b\\u0435\\u0435 400 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u043e\\u0432 \\u043a\\u0430\\u043a \\u043d\\u0430 \\u043c\\u0435\\u0441\\u0442\\u043d\\u043e\\u043c (\\u043f\\u043e \\u0432\\u0441\\u0435\\u0439 \\u0442\\u0435\\u0440\\u0440\\u0438\\u0442\\u043e\\u0440\\u0438\\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b), \\u0442\\u0430\\u043a \\u0438 \\u043d\\u0430 \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e\\u043c (\\u0432 \\u0441\\u043e\\u0442\\u0440\\u0443\\u0434\\u043d\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\u0441\\u043e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0430\\u043c\\u0438 \\u0412\\u043e\\u0441\\u0442\\u043e\\u0447\\u043d\\u043e\\u0433\\u043e \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0441\\u0442\\u0432\\u0430) \\u0443\\u0440\\u043e\\u0432\\u043d\\u0435. \\u042d\\u0442\\u043e \\u043f\\u043e\\u0441\\u043b\\u0443\\u0436\\u0438\\u043b\\u043e \\u0441\\u0442\\u0438\\u043c\\u0443\\u043b\\u043e\\u043c \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0433\\u0440\\u0435\\u0441\\u0441\\u0430 \\u0432 \\u0440\\u0430\\u0437\\u043b\\u0438\\u0447\\u043d\\u044b\\u0445 \\u0441\\u0435\\u043a\\u0442\\u043e\\u0440\\u0430\\u0445.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/projects\\\/eu-project-page\\\/?id=1865\",\"link_style\":\"default\",\"link_text\":\"\\u041f\\u0440\\u043e\\u0435\\u043a\\u0442\\u044b \\u0415\\u0421\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-5\"},\"children\":[{\"type\":\"fragment\",\"props\":{\"margin\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\\u043d\\u0430 \\u0437\\u0430\\u0439\\u043c\\u044b \\u0438 \\u0433\\u0440\\u0430\\u043d\\u0442\\u044b \\u0441 2021 \\u0433\\u043e\\u0434\\u0430\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/04\\\/1.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac2,2 \\u043c\\u043b\\u0440\\u0434\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u043d\\u0430 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u0420\\u0435\\u0441\\u043f\\u0443\\u0431\\u043b\\u0438\\u043a\\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043d\\u0430 \\u043f\\u0443\\u0442\\u0438 \\u0432\\u0441\\u0442\\u0443\\u043f\\u043b\\u0435\\u043d\\u0438\\u044f \\u0432 \\u0415\\u0421<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/Moldova_growth-scaled.jpg\",\"image_align\":\"top\",\"image_alt\":\"90 mayors and deputy mayors from the Republic of Moldova attended a forum on regional development\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac1,9 \\u043c\\u043b\\u0440\\u0434\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n\n\n\",\"margin\":\"default\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>\\u043d\\u0430 \\u0441\\u0442\\u0440\\u0430\\u0442\\u0435\\u0433\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u044b, \\u0432 \\u0442\\u043e\\u043c \\u0447\\u0438\\u0441\\u043b\\u0435 \\u043d\\u0430 \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u0435 \\u0438\\u043d\\u0444\\u0440\\u0430\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u0443\\u0440\\u044b \\u0438 \\u044d\\u043d\\u0435\\u0440\\u0433\\u0435\\u0442\\u0438\\u043a\\u0438<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/01\\\/Ciumas.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac1,6 \\u043c\\u043b\\u0440\\u0434\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p> \\u043d\\u0430 \\u0431\\u0435\\u0437\\u0432\\u043e\\u0437\\u043c\\u0435\\u0437\\u0434\\u043d\\u044b\\u0435 \\u0433\\u0440\\u0430\\u043d\\u0442\\u044b \\u0432 2021 \\u2013 2024 \\u0433\\u043e\\u0434\\u0430\\u0445<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/01\\\/Electric-Maraton-scaled.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac430 \\u043c\\u043b\\u043d\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"}]}]}]}]}]}],\"name\":\"EU Support\"},{\"type\":\"section\",\"props\":{\"height\":\"pixels\",\"height_viewport\":300,\"image_position\":\"center-center\",\"padding_remove_bottom\":true,\"padding_remove_top\":true,\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"<!-- Particle background container -->\\n<\/p>\n<div id=\\\"particles-js\\\" class=\\\"particle-bg\\\"><\\\/div>\\n\\n<!-- Include particles.js library from CDN -->\\n<script src=\\\"https:\\\/\\\/cdn.jsdelivr.net\\\/npm\\\/particles.js@2.0.0\\\/particles.min.js\\\"><\\\/script>\\n\\n<!-- Initialize the particle animation -->\\n<script>\\n  document.addEventListener(\\\"DOMContentLoaded\\\", function () {\\n    if (typeof particlesJS !== \\\"undefined\\\") {\\n      particlesJS(\\\"particles-js\\\", {\\n        \\\"particles\\\": {\\n          \\\"number\\\": {\\n            \\\"value\\\": 60,\\n            \\\"density\\\": {\\n              \\\"enable\\\": true,\\n              \\\"value_area\\\": 800\\n            }\\n          },\\n          \\\"color\\\": {\\n            \\\"value\\\": \\\"#ffffff\\\"\\n          },\\n          \\\"shape\\\": {\\n            \\\"type\\\": \\\"circle\\\",\\n            \\\"stroke\\\": {\\n              \\\"width\\\": 0,\\n              \\\"color\\\": \\\"#000000\\\"\\n            }\\n          },\\n          \\\"opacity\\\": {\\n            \\\"value\\\": 0.5\\n          },\\n          \\\"size\\\": {\\n            \\\"value\\\": 3,\\n            \\\"random\\\": true\\n          },\\n          \\\"line_linked\\\": {\\n            \\\"enable\\\": true,\\n            \\\"distance\\\": 150,\\n            \\\"color\\\": \\\"#ffffff\\\",\\n            \\\"opacity\\\": 0.4,\\n            \\\"width\\\": 1\\n          },\\n          \\\"move\\\": {\\n            \\\"enable\\\": true,\\n            \\\"speed\\\": 4,\\n            \\\"direction\\\": \\\"none\\\",\\n            \\\"out_mode\\\": \\\"out\\\"\\n          }\\n        },\\n        \\\"interactivity\\\": {\\n          \\\"events\\\": {\\n            \\\"onhover\\\": {\\n              \\\"enable\\\": true,\\n              \\\"mode\\\": \\\"repulse\\\"\\n            },\\n            \\\"onclick\\\": {\\n              \\\"enable\\\": true,\\n              \\\"mode\\\": \\\"push\\\"\\n            }\\n          },\\n          \\\"modes\\\": {\\n            \\\"repulse\\\": {\\n              \\\"distance\\\": 100,\\n              \\\"duration\\\": 0.4\\n            },\\n            \\\"push\\\": {\\n              \\\"particles_nb\\\": 4\\n            }\\n          }\\n        },\\n        \\\"retina_detect\\\": true\\n      });\\n    }\\n  });\\n<\\\/script>\\n\",\"css\":\"\\\/* Particle background styling *\\\/\\n.particle-bg {\\n  position: absolute;\\n  width: 100%;\\n  z-index: 0;\\n  height: 300px\\n\\n}\\n\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"\\u0428\\u0430\\u0433 \\u0437\\u0430 \\u0448\\u0430\\u0433\\u043e\\u043c\",\"margin_remove_bottom\":true,\"parallax_x\":\"-50 1%,0 100%\",\"parallax_y\":\"0\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"\\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043e\\u0431\\u0440\\u0435\\u0442\\u0430\\u0435\\u0442 \\u0441\\u0432\\u043e\\u0435 \\u043c\\u0435\\u0441\\u0442\\u043e\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"parallax_easing\":\"0\",\"parallax_x\":\"50 1%,0 100%\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"\\u0432 \\u0435\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u043e\\u0439 \\u0441\\u0435\\u043c\\u044c\\u0435!\",\"margin_remove_top\":true,\"parallax_x\":\"-50 1%,0 100%\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"2-3,1-3\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-3\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"\\u0411\\u043b\\u0438\\u0436\\u0435 \\u043a \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437\\u0443\",\"css\":\".el-element {\\ncolor: #000000;\\n}\",\"title_element\":\"h1\",\"title_style\":\"heading-small\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p>\\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043d\\u0435 \\u0442\\u043e\\u043b\\u044c\\u043a\\u043e \\u043f\\u0440\\u0438\\u0431\\u043b\\u0438\\u0436\\u0430\\u0435\\u0442\\u0441\\u044f \\u043a \\u0447\\u043b\\u0435\\u043d\\u0442\\u0441\\u0432\\u0443 \\u0432 \\u0415\\u0421 \\u2014 \\u0441\\u0442\\u0440\\u0430\\u043d\\u0430 \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u0433\\u0430\\u0435\\u0442\\u0441\\u044f \\u0431\\u044b\\u0441\\u0442\\u0440\\u044b\\u043c\\u0438 \\u0442\\u0435\\u043c\\u043f\\u0430\\u043c\\u0438 \\u043d\\u0430 \\u043f\\u0443\\u0442\\u0438 \\u0435\\u0432\\u0440\\u043e\\u0438\\u043d\\u0442\\u0435\\u0433\\u0440\\u0430\\u0446\\u0438\\u0438<\\\/p>\",\"css\":\".el-element {\\ncolor: #000000;\\n}\",\"margin\":\"default\",\"text_style\":\"large\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"}}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-4,1-4,1-4,1-4|1-2,1-2,1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u041f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u0430 \\u00abConnecting Europe Facility\\u00bb (CEF) \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u0438\\u0440\\u0443\\u0435\\u0442 \\u043a\\u0440\\u0443\\u043f\\u043d\\u044b\\u0435 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u044b \\u043c\\u043e\\u0434\\u0435\\u0440\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0438 \\u0438\\u043d\\u0444\\u0440\\u0430\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u0443\\u0440\\u044b<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u0421 2014 \\u0433\\u043e\\u0434\\u0430 \\u043c\\u043e\\u043b\\u0434\\u0430\\u0432\\u0441\\u043a\\u0438\\u0435 \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d\\u0435 \\u043c\\u043e\\u0433\\u0443\\u0442 \\u0435\\u0437\\u0434\\u0438\\u0442\\u044c \\u0432 \\u0415\\u0421 \\u0431\\u0435\\u0437 \\u0432\\u0438\\u0437<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>\\u0418\\u0441\\u0441\\u043b\\u0435\\u0434\\u043e\\u0432\\u0430\\u0442\\u0435\\u043b\\u0438 \\u0440\\u0430\\u0441\\u0448\\u0438\\u0440\\u044f\\u044e\\u0442 \\u0441\\u0432\\u043e\\u0438 \\u0433\\u043e\\u0440\\u0438\\u0437\\u043e\\u043d\\u0442\\u044b \\u0447\\u0435\\u0440\\u0435\\u0437 \\u043f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u0443 <b>Horizon\\u00a0<\\\/b><\\\/span><b>Europe<\\\/b><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043c\\u043e\\u0436\\u0435\\u0442 \\u0437\\u0430\\u043f\\u0440\\u043e\\u0441\\u0438\\u0442\\u044c \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u0432 \\u0440\\u0430\\u043c\\u043a\\u0430\\u0445 \\u041c\\u0435\\u0445\\u0430\\u043d\\u0438\\u0437\\u043c\\u0430 \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d\\u0441\\u043a\\u043e\\u0439 \\u0437\\u0430\\u0449\\u0438\\u0442\\u044b \\u0415\\u0421, \\u043a\\u043e\\u0442\\u043e\\u0440\\u0430\\u044f \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0432\\u0430\\u0435\\u0442 \\u043e\\u043f\\u0435\\u0440\\u0430\\u0442\\u0438\\u0432\\u043d\\u043e\\u0435 \\u0438 \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u043e\\u0435 \\u0440\\u0435\\u0430\\u0433\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u0438\\u0435 \\u0432 \\u043a\\u0440\\u0438\\u0437\\u0438\\u0441\\u043d\\u044b\\u0445 \\u0441\\u0438\\u0442\\u0443\\u0430\\u0446\\u0438\\u044f\\u0445<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u0421 1 \\u044f\\u043d\\u0432\\u0430\\u0440\\u044f 2026 \\u0433\\u043e\\u0434\\u0430 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u0438 \\u0415\\u0421<strong> \\u043e\\u0442\\u043c\\u0435\\u043d\\u0438\\u043b\\u0438 \\u043f\\u043b\\u0430\\u0442\\u0443 \\u0437\\u0430 \\u0440\\u043e\\u0443\\u043c\\u0438\\u043d\\u0433<\\\/strong><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u0423\\u0447\\u0430\\u0449\\u0438\\u0435\\u0441\\u044f, \\u0441\\u0442\\u0443\\u0434\\u0435\\u043d\\u0442\\u044b \\u0438 \\u043f\\u0440\\u0435\\u043f\\u043e\\u0434\\u0430\\u0432\\u0430\\u0442\\u0435\\u043b\\u0438 \\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u044e\\u0442\\u0441\\u044f \\u043d\\u043e\\u0432\\u044b\\u043c\\u0438 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u044f\\u043c\\u0438 \\u043f\\u043e \\u043f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u0435 \\u042d\\u0440\\u0430\\u0437\\u043c\\u0443\\u0441+<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u0421\\u0442\\u0440\\u0430\\u043d\\u0430 \\u043f\\u0440\\u0438\\u0441\\u043e\\u0435\\u0434\\u0438\\u043d\\u0438\\u043b\\u0430\\u0441\\u044c \\u043a <b>\\u043f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u0435 LIFE<\\\/b> \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u0436\\u0435\\u043d\\u0438\\u044f \\u043c\\u0435\\u0440 \\u0432 \\u0441\\u0444\\u0435\\u0440\\u0435 \\u043a\\u043b\\u0438\\u043c\\u0430\\u0442\\u0430 \\u0438 \\u0443\\u0441\\u0442\\u043e\\u0439\\u0447\\u0438\\u0432\\u043e\\u0433\\u043e \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u044f<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u043b\\u0430 \\u043f\\u0435\\u0440\\u0432\\u043e\\u0435 \\u0441\\u043e\\u0433\\u043b\\u0430\\u0448\\u0435\\u043d\\u0438\\u0435 \\u043e \\u041f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0441\\u0442\\u0432\\u0435 \\u0441 \\u0415\\u0421 \\u0432 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u043e\\u0431\\u043e\\u0440\\u043e\\u043d\\u044b. \\u042d\\u0442\\u043e \\u0443\\u043f\\u0440\\u043e\\u0447\\u0438\\u0442 \\u0441\\u043e\\u0442\\u0440\\u0443\\u0434\\u043d\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0438 \\u0443\\u043a\\u0440\\u0435\\u043f\\u0438\\u0442 \\u0432\\u043e\\u043e\\u0440\\u0443\\u0436\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0441\\u0438\\u043b\\u044b \\u0441\\u0442\\u0440\\u0430\\u043d\\u044b.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>\\u0412 2025 \\u0433\\u043e\\u0434\\u0443 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430 \\u043f\\u0440\\u0438\\u0441\\u043e\\u0435\\u0434\\u0438\\u043d\\u0438\\u043b\\u0430\\u0441\\u044c \\u043a <strong>SEPA, <\\\/strong>\\u0447\\u0442\\u043e \\u043f\\u043e\\u0437\\u0432\\u043e\\u043b\\u044f\\u0435\\u0442 \\u0434\\u0435\\u043b\\u0430\\u0442\\u044c\\u00a0\\u0431\\u044b\\u0441\\u0442\\u0440\\u044b\\u0435 \\u0438 \\u043d\\u0435\\u0434\\u043e\\u0440\\u043e\\u0433\\u0438\\u0435 \\u043f\\u0435\\u0440\\u0435\\u0432\\u043e\\u0434\\u044b \\u0432 \\u0435\\u0432\\u0440\\u043e \\u0432\\u043d\\u0443\\u0442\\u0440\\u0438 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u044b<\\\/p>\\n<\/p>\n<div class=\\\"flex flex-col text-sm\\\">\\n<\/p>\n<article class=\\\"text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]\\\" dir=\\\"auto\\\" data-turn-id=\\\"request-WEB:3317d4e9-e785-4a27-8e46-e28fe7e6e7b5-9\\\" data-testid=\\\"conversation-turn-20\\\" data-scroll-anchor=\\\"true\\\" data-turn=\\\"assistant\\\" tabindex=\\\"-1\\\">\\n<\/p>\n<div class=\\\"text-base my-auto mx-auto pb-10 [--thread-content-margin:--spacing(4)] @w-sm\\\/main:[--thread-content-margin:--spacing(6)] @w-lg\\\/main:[--thread-content-margin:--spacing(16)] px-(--thread-content-margin)\\\">\\n<\/p>\n<div class=\\\"[--thread-content-max-width:40rem] @w-lg\\\/main:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group\\\/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn\\\" tabindex=\\\"-1\\\">\\n<\/p>\n<div class=\\\"z-0 flex min-h-[46px] justify-start\\\"><\\\/div>\\n<\/p>\n<div class=\\\"mt-3 w-full empty:hidden\\\">\\n<\/p>\n<div class=\\\"text-center\\\"><\\\/div>\\n<\\\/div>\\n<\\\/div>\\n<\\\/div>\\n<\\\/article>\\n<\\\/div>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-3,2-3\",\"margin\":\"remove-vertical\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"row_gap\":\"collapse\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"\\u041e \\u0447\\u0435\\u043c \\u044d\\u0442\\u043e\\u0442 \\u0441\\u0430\\u0439\\u0442?\",\"title_element\":\"h1\",\"title_style\":\"heading-large\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p>\\u042d\\u0442\\u043e \\u043d\\u0430\\u0434\\u0435\\u0436\\u043d\\u0430\\u044f \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0430, \\u043d\\u0430 \\u043a\\u043e\\u0442\\u043e\\u0440\\u043e\\u0439 \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u0439\\u0442\\u0438 \\u0434\\u043e\\u0441\\u0442\\u043e\\u0432\\u0435\\u0440\\u043d\\u0443\\u044e \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u044e \\u043e\\u0431 \\u0438\\u043d\\u0438\\u0446\\u0438\\u0430\\u0442\\u0438\\u0432\\u0430\\u0445 \\u0415\\u0432\\u0440\\u043e\\u0441\\u043e\\u044e\\u0437\\u0430 \\u0432 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0435: \\u0440\\u0435\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0438\\u0441\\u0442\\u043e\\u0440\\u0438\\u0438 \\u0443\\u0441\\u043f\\u0435\\u0445\\u0430, \\u043d\\u043e\\u0432\\u044b\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u0441\\u0430\\u043c\\u044b\\u0435 \\u0441\\u0432\\u0435\\u0436\\u0438\\u0435 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u043e\\u0431 \\u043e\\u0442\\u043d\\u043e\\u0448\\u0435\\u043d\\u0438\\u044f\\u0445 \\u043c\\u0435\\u0436\\u0434\\u0443 \\u0415\\u0421 \\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u043e\\u0439:<\\\/p>\\n<\/p>\n<p><\\\/p>\",\"margin\":\"default\",\"text_color\":\"success\",\"text_style\":\"large\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-3\"},\"children\":[{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>\\u0438\\u0441\\u0442\\u043e\\u0440\\u0438\\u0438, \\u0438\\u043d\\u0442\\u0435\\u0440\\u0432\\u044c\\u044e \\u0438 \\u0440\\u0435\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u043f\\u0440\\u0438\\u043c\\u0435\\u0440\\u044b \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u0438\\u043d\\u0438\\u0446\\u0438\\u0430\\u0442\\u0438\\u0432\\u044b \\u0415\\u0421 \\u0443\\u043b\\u0443\\u0447\\u0448\\u0430\\u044e\\u0442 \\u0436\\u0438\\u0437\\u043d\\u044c \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0432\\u043e \\u0432\\u0441\\u0435\\u0439 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0435<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"play-circle\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/category\\\/istorii\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041e\\u0449\\u0443\\u0442\\u0438\\u043c\\u044b\\u0435 \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442\\u044b\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>\\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0441\\u044b \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u043d\\u044b\\u0445 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0439, \\u0433\\u0440\\u0430\\u043d\\u0442\\u044b, \\u0441\\u0442\\u0438\\u043f\\u0435\\u043d\\u0434\\u0438\\u0438, \\u0441\\u0442\\u0430\\u0436\\u0438\\u0440\\u043e\\u0432\\u043a\\u0438 \\u0438 \\u043f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u044b \\u043e\\u0431\\u043c\\u0435\\u043d\\u0430, \\u043f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0435\\u043c\\u044b\\u0435 \\u0415\\u0421 \\u0438 \\u0435\\u0433\\u043e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0430\\u043c\\u0438<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"crosshairs\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/category\\\/vozmozhnosti\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041f\\u0440\\u043e\\u0441\\u0442\\u043e\\u0439 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u043a \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u044f\\u043c\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u043e\\u0431 \\u043e\\u0442\\u043d\\u043e\\u0448\\u0435\\u043d\\u0438\\u044f\\u0445 \\u0415\\u0421 \\u0438 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u044b, \\u0432\\u0430\\u0436\\u043d\\u044b\\u0445 \\u0440\\u0435\\u0448\\u0435\\u043d\\u0438\\u044f\\u0445 \\u0438 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u0430\\u0445, \\u043e\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u044f\\u044e\\u0449\\u0438\\u0445 \\u0431\\u0443\\u0434\\u0443\\u0449\\u0435\\u0435 \\u0441\\u0442\\u0440\\u0430\\u043d\\u044b<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"info\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/category\\\/novosti\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041f\\u043e\\u0441\\u043b\\u0435\\u0434\\u043d\\u0438\\u0435 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>\\u0411\\u0443\\u0434\\u044c \\u0432 \\u043a\\u0443\\u0440\\u0441\\u0435 \\u0441\\u043e\\u0431\\u044b\\u0442\\u0438\\u0439 \\u2014 \\u0443\\u0437\\u043d\\u0430\\u0439 \\u043e \\u043a\\u0430\\u043c\\u043f\\u0430\\u043d\\u0438\\u044f\\u0445 \\u0415\\u0421: \\u043e\\u0441\\u0432\\u0435\\u0449\\u0430\\u0435\\u043c \\u043a\\u043b\\u044e\\u0447\\u0435\\u0432\\u044b\\u0435 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441\\u044b \\u0438 \\u0441\\u043f\\u043e\\u0441\\u043e\\u0431\\u0441\\u0442\\u0432\\u0443\\u0435\\u043c \\u0434\\u0438\\u0430\\u043b\\u043e\\u0433\\u0443<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"happy\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/campaigns\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u041a\\u043e\\u043c\\u043c\\u0443\\u043d\\u0438\\u043a\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0435 \\u043a\\u0430\\u043c\\u043f\\u0430\\u043d\\u0438\\u0438\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}],\"name\":\"What is this all about\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding\":\"xsmall\",\"padding_remove_bottom\":true,\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p>\\u041f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u043e\\u0439 \\u0443\\u043f\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u0442 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442 \\u00ab\\u0421\\u0442\\u0440\\u0430\\u0442\\u0435\\u0433\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u043a\\u043e\\u043c\\u043c\\u0443\\u043d\\u0438\\u043a\\u0430\\u0446\\u0438\\u0438 \\u0438 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u0421\\u041c\\u0418\\u00bb, \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u0438\\u0440\\u0443\\u0435\\u043c\\u044b\\u0439 \\u0415\\u0421 \\u0438 \\u0432\\u043d\\u0435\\u0434\\u0440\\u044f\\u0435\\u043c\\u044b\\u0439 GOPA PACE. \\u041e\\u043d \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u0438\\u0432\\u0430\\u0435\\u0442 \\u043a\\u043e\\u043c\\u043c\\u0443\\u043d\\u0438\\u043a\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u0434\\u0435\\u044f\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c \\u041f\\u0440\\u0435\\u0434\\u0441\\u0442\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u0430 \\u0415\\u0421 \\u0432 \\u0420\\u0435\\u0441\\u043f\\u0443\\u0431\\u043b\\u0438\\u043a\\u0435 \\u041c\\u043e\\u043b\\u0434\\u043e\\u0432\\u0430.<\\\/p>\",\"css\":\".el-element {\\ncolor: #000000;\\n}\",\"margin\":\"remove-vertical\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"text_align\":\"center\",\"text_style\":\"small\"}}]}]}],\"name\":\"Disclaimer\"}],\"version\":\"4.5.32\"} --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 c\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u043f\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0439 \u0441\u043e\u044e\u0437\u043d\u0438\u043a \u0438 \u043b\u0438\u0434\u0435\u0440 \u0432 \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438 \u0433\u0430\u0440\u0430\u043d\u0442 \u043c\u0438\u0440\u0430 \u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043a \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0438 \u0432\u043e \u0432\u0441\u0435\u043c \u043c\u0438\u0440\u0435 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435: \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0438 \u0432 \u043b\u044e\u0434\u0435\u0439 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u043e \u0432\u043e \u0438\u043c\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u0430. \u041e\u043d \u0441\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0443, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c \u0440\u0435\u0444\u043e\u0440\u043c\u0430\u043c, \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 [&hellip;]<\/p>\n","protected":false},"author":35,"featured_media":54843,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-70113","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova\" \/>\n<meta property=\"og:description\" content=\"\u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 c\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u043f\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0439 \u0441\u043e\u044e\u0437\u043d\u0438\u043a \u0438 \u043b\u0438\u0434\u0435\u0440 \u0432 \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438 \u0433\u0430\u0440\u0430\u043d\u0442 \u043c\u0438\u0440\u0430 \u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043a \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0438 \u0432\u043e \u0432\u0441\u0435\u043c \u043c\u0438\u0440\u0435 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435: \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0438 \u0432 \u043b\u044e\u0434\u0435\u0439 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u043e \u0432\u043e \u0438\u043c\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u0430. \u041e\u043d \u0441\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0443, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c \u0440\u0435\u0444\u043e\u0440\u043c\u0430\u043c, \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/\" \/>\n<meta property=\"og:site_name\" content=\"EU for Moldova\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/EUDelegationMoldova\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-28T12:23:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag-620x350-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@euinmoldova\" \/>\n<meta name=\"twitter:label1\" content=\"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f\" \/>\n\t<meta name=\"twitter:data1\" content=\"20 \u043c\u0438\u043d\u0443\u0442\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/\",\"name\":\"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/EU-flag-620x350-2.jpg\",\"datePublished\":\"2016-11-14T07:59:17+00:00\",\"dateModified\":\"2026-03-28T12:23:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/#primaryimage\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/EU-flag-620x350-2.jpg\",\"contentUrl\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/EU-flag-620x350-2.jpg\",\"width\":1600,\"height\":900,\"caption\":\"EU flag 620x350 2\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/eu-and-moldova\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/eu4moldova.eu\\\/ru\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#website\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/\",\"name\":\"EU for Moldova\",\"description\":\"European Union for the Republic of Moldova\",\"publisher\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/eu4moldova.eu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ru-RU\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#organization\",\"name\":\"European Union in the Republic of Moldova\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/eu-moldova-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/eu-moldova-logo-1.png\",\"width\":5057,\"height\":870,\"caption\":\"European Union in the Republic of Moldova\"},\"image\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/EUDelegationMoldova\\\/\",\"https:\\\/\\\/x.com\\\/euinmoldova\",\"https:\\\/\\\/www.instagram.com\\\/euinmoldova\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/EUDelegationMoldova\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/","og_locale":"ru_RU","og_type":"article","og_title":"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova","og_description":"\u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 c\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u043f\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0439 \u0441\u043e\u044e\u0437\u043d\u0438\u043a \u0438 \u043b\u0438\u0434\u0435\u0440 \u0432 \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438 \u0433\u0430\u0440\u0430\u043d\u0442 \u043c\u0438\u0440\u0430 \u0438 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043a \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0438 \u0432\u043e \u0432\u0441\u0435\u043c \u043c\u0438\u0440\u0435 \u0415\u0432\u0440\u043e\u0441\u043e\u044e\u0437 \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435: \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0438 \u0432 \u043b\u044e\u0434\u0435\u0439 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0423\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0435 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u043e \u0432\u043e \u0438\u043c\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u0415\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u044e\u0437 \u2014 \u0432\u0430\u0436\u043d\u0435\u0439\u0448\u0438\u0439 \u043f\u0430\u0440\u0442\u043d\u0435\u0440 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041c\u043e\u043b\u0434\u043e\u0432\u0430. \u041e\u043d \u0441\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0443, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c \u0440\u0435\u0444\u043e\u0440\u043c\u0430\u043c, \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044e \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 [&hellip;]","og_url":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/","og_site_name":"EU for Moldova","article_publisher":"https:\/\/www.facebook.com\/EUDelegationMoldova\/","article_modified_time":"2026-03-28T12:23:16+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag-620x350-2.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@euinmoldova","twitter_misc":{"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f":"20 \u043c\u0438\u043d\u0443\u0442"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/","url":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/","name":"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c - EU for Moldova","isPartOf":{"@id":"https:\/\/eu4moldova.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/#primaryimage"},"image":{"@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/#primaryimage"},"thumbnailUrl":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag-620x350-2.jpg","datePublished":"2016-11-14T07:59:17+00:00","dateModified":"2026-03-28T12:23:16+00:00","breadcrumb":{"@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/"]}]},{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/#primaryimage","url":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag-620x350-2.jpg","contentUrl":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag-620x350-2.jpg","width":1600,"height":900,"caption":"EU flag 620x350 2"},{"@type":"BreadcrumbList","@id":"https:\/\/eu4moldova.eu\/ru\/eu-and-moldova\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eu4moldova.eu\/ru\/"},{"@type":"ListItem","position":2,"name":"\u0427\u0422\u041e \u041c\u042b \u0414\u0415\u041b\u0410\u0415\u041c"}]},{"@type":"WebSite","@id":"https:\/\/eu4moldova.eu\/#website","url":"https:\/\/eu4moldova.eu\/","name":"EU for Moldova","description":"European Union for the Republic of Moldova","publisher":{"@id":"https:\/\/eu4moldova.eu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eu4moldova.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ru-RU"},{"@type":"Organization","@id":"https:\/\/eu4moldova.eu\/#organization","name":"European Union in the Republic of Moldova","url":"https:\/\/eu4moldova.eu\/","logo":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/eu4moldova.eu\/#\/schema\/logo\/image\/","url":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/eu-moldova-logo-1.png","contentUrl":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/eu-moldova-logo-1.png","width":5057,"height":870,"caption":"European Union in the Republic of Moldova"},"image":{"@id":"https:\/\/eu4moldova.eu\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/EUDelegationMoldova\/","https:\/\/x.com\/euinmoldova","https:\/\/www.instagram.com\/euinmoldova","https:\/\/www.youtube.com\/c\/EUDelegationMoldova"]}]}},"_links":{"self":[{"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/pages\/70113","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/users\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/comments?post=70113"}],"version-history":[{"count":56,"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/pages\/70113\/revisions"}],"predecessor-version":[{"id":148604,"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/pages\/70113\/revisions\/148604"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/media\/54843"}],"wp:attachment":[{"href":"https:\/\/eu4moldova.eu\/ru\/wp-json\/wp\/v2\/media?parent=70113"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}