It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://texgu.ru

  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.    <meta charset="UTF-8">
  6.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.    <title>РќРµ опубликован</title>
  8.    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap" rel="stylesheet">
  9.    <script src="https://yastatic.net/pcode/adfox/loader.js" crossorigin="anonymous"></script>
  10.    <script type="text/javascript" language="javascript">
  11.        var punycode = new function Punycode() {
  12.            this.utf16 = {
  13.                decode: function (input) {
  14.                    var output = [], i = 0, len = input.length, value, extra;
  15.                    while (i < len) {
  16.                        value = input.charCodeAt(i++);
  17.                        if ((value & 0xF800) === 0xD800) {
  18.                            extra = input.charCodeAt(i++);
  19.                            if (((value & 0xFC00) !== 0xD800) || ((extra & 0xFC00) !== 0xDC00)) {
  20.                                throw new RangeError("UTF-16(decode): Illegal UTF-16 sequence");
  21.                            }
  22.                            value = ((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000;
  23.                        }
  24.                        output.push(value);
  25.                    }
  26.                    return output;
  27.                },
  28.                encode: function (input) {
  29.                    var output = [], i = 0, len = input.length, value;
  30.                    while (i < len) {
  31.                        value = input[i++];
  32.                        if ((value & 0xF800) === 0xD800) {
  33.                            throw new RangeError("UTF-16(encode): Illegal UTF-16 value");
  34.                        }
  35.                        if (value > 0xFFFF) {
  36.                            value -= 0x10000;
  37.                            output.push(String.fromCharCode(((value >>> 10) & 0x3FF) | 0xD800));
  38.                            value = 0xDC00 | (value & 0x3FF);
  39.                        }
  40.                        output.push(String.fromCharCode(value));
  41.                    }
  42.                    return output.join("");
  43.                }
  44.            }
  45.            var initial_n = 0x80;
  46.            var initial_bias = 72;
  47.            var delimiter = "\x2D";
  48.            var base = 36;
  49.            var damp = 700;
  50.            var tmin = 1;
  51.            var tmax = 26;
  52.            var skew = 38;
  53.            var maxint = 0x7FFFFFFF;
  54.  
  55.            function decode_digit(cp) {
  56.                return cp - 48 < 10 ? cp - 22 : cp - 65 < 26 ? cp - 65 : cp - 97 < 26 ? cp - 97 : base;
  57.            }
  58.  
  59.            function encode_digit(d, flag) {
  60.                return d + 22 + 75 * (d < 26) - ((flag != 0) << 5);
  61.            }
  62.            function adapt(delta, numpoints, firsttime) {
  63.                var k;
  64.                delta = firsttime ? Math.floor(delta / damp) : (delta >> 1);
  65.                delta += Math.floor(delta / numpoints);
  66.  
  67.                for (k = 0; delta > (((base - tmin) * tmax) >> 1); k += base) {
  68.                    delta = Math.floor(delta / (base - tmin));
  69.                }
  70.                return Math.floor(k + (base - tmin + 1) * delta / (delta + skew));
  71.            }
  72.  
  73.            function encode_basic(bcp, flag) {
  74.                bcp -= (bcp - 97 < 26) << 5;
  75.                return bcp + ((!flag && (bcp - 65 < 26)) << 5);
  76.            }
  77.  
  78.            this.decode = function (input, preserveCase) {
  79.                var output = [];
  80.                var case_flags = [];
  81.                var input_length = input.length;
  82.  
  83.                var n, out, i, bias, basic, j, ic, oldi, w, k, digit, t, len;
  84.  
  85.                n = initial_n;
  86.                i = 0;
  87.                bias = initial_bias;
  88.  
  89.                basic = input.lastIndexOf(delimiter);
  90.                if (basic < 0) basic = 0;
  91.  
  92.                for (j = 0; j < basic; ++j) {
  93.                    if (preserveCase) case_flags[output.length] = (input.charCodeAt(j) - 65 < 26);
  94.                    if (input.charCodeAt(j) >= 0x80) {
  95.                        throw new RangeError("Illegal input >= 0x80");
  96.                    }
  97.                    output.push(input.charCodeAt(j));
  98.                }
  99.  
  100.                for (ic = basic > 0 ? basic + 1 : 0; ic < input_length;) {
  101.  
  102.                    for (oldi = i, w = 1, k = base; ; k += base) {
  103.                        if (ic >= input_length) {
  104.                            throw RangeError("punycode_bad_input(1)");
  105.                        }
  106.                        digit = decode_digit(input.charCodeAt(ic++));
  107.  
  108.                        if (digit >= base) {
  109.                            throw RangeError("punycode_bad_input(2)");
  110.                        }
  111.                        if (digit > Math.floor((maxint - i) / w)) {
  112.                            throw RangeError("punycode_overflow(1)");
  113.                        }
  114.                        i += digit * w;
  115.                        t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
  116.                        if (digit < t) { break; }
  117.                        if (w > Math.floor(maxint / (base - t))) {
  118.                            throw RangeError("punycode_overflow(2)");
  119.                        }
  120.                        w *= (base - t);
  121.                    }
  122.  
  123.                    out = output.length + 1;
  124.                    bias = adapt(i - oldi, out, oldi === 0);
  125.  
  126.                    if (Math.floor(i / out) > maxint - n) {
  127.                        throw RangeError("punycode_overflow(3)");
  128.                    }
  129.                    n += Math.floor(i / out);
  130.                    i %= out;
  131.  
  132.                    if (preserveCase) { case_flags.splice(i, 0, input.charCodeAt(ic - 1) - 65 < 26); }
  133.  
  134.                    output.splice(i, 0, n);
  135.                    i++;
  136.                }
  137.                if (preserveCase) {
  138.                    for (i = 0, len = output.length; i < len; i++) {
  139.                        if (case_flags[i]) {
  140.                            output[i] = (String.fromCharCode(output[i]).toUpperCase()).charCodeAt(0);
  141.                        }
  142.                    }
  143.                }
  144.                return this.utf16.encode(output);
  145.            };
  146.  
  147.            this.encode = function (input, preserveCase) {
  148.  
  149.                var n, delta, h, b, bias, j, m, q, k, t, ijv, case_flags;
  150.  
  151.                if (preserveCase) {
  152.                    case_flags = this.utf16.decode(input);
  153.                }
  154.                input = this.utf16.decode(input.toLowerCase());
  155.  
  156.                var input_length = input.length;
  157.  
  158.                if (preserveCase) {
  159.  
  160.                    for (j = 0; j < input_length; j++) {
  161.                        case_flags[j] = input[j] != case_flags[j];
  162.                    }
  163.                }
  164.  
  165.                var output = [];
  166.  
  167.                n = initial_n;
  168.                delta = 0;
  169.                bias = initial_bias;
  170.  
  171.                for (j = 0; j < input_length; ++j) {
  172.                    if (input[j] < 0x80) {
  173.                        output.push(
  174.                            String.fromCharCode(
  175.                                case_flags ? encode_basic(input[j], case_flags[j]) : input[j]
  176.                            )
  177.                        );
  178.                    }
  179.                }
  180.  
  181.                h = b = output.length;
  182.  
  183.                if (b > 0) output.push(delimiter);
  184.  
  185.                while (h < input_length) {
  186.  
  187.                    for (m = maxint, j = 0; j < input_length; ++j) {
  188.                        ijv = input[j];
  189.                        if (ijv >= n && ijv < m) m = ijv;
  190.                    }
  191.  
  192.                    if (m - n > Math.floor((maxint - delta) / (h + 1))) {
  193.                        throw RangeError("punycode_overflow (1)");
  194.                    }
  195.                    delta += (m - n) * (h + 1);
  196.                    n = m;
  197.  
  198.                    for (j = 0; j < input_length; ++j) {
  199.                        ijv = input[j];
  200.  
  201.                        if (ijv < n) {
  202.                            if (++delta > maxint) return Error("punycode_overflow(2)");
  203.                        }
  204.  
  205.                        if (ijv == n) {
  206.  
  207.                            for (q = delta, k = base; ; k += base) {
  208.                                t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
  209.                                if (q < t) break;
  210.                                output.push(String.fromCharCode(encode_digit(t + (q - t) % (base - t), 0)));
  211.                                q = Math.floor((q - t) / (base - t));
  212.                            }
  213.                            output.push(String.fromCharCode(encode_digit(q, preserveCase && case_flags[j] ? 1 : 0)));
  214.                            bias = adapt(delta, h + 1, h == b);
  215.                            delta = 0;
  216.                            ++h;
  217.                        }
  218.                    }
  219.  
  220.                    ++delta, ++n;
  221.                }
  222.                return output.join("");
  223.            }
  224.  
  225.            this.ToASCII = function (domain) {
  226.                var domain_array = domain.split(".");
  227.                var out = [];
  228.                for (var i = 0; i < domain_array.length; ++i) {
  229.                    var s = domain_array[i];
  230.                    out.push(
  231.                        s.match(/[^A-Za-z0-9-]/) ?
  232.                            "xn--" + punycode.encode(s) :
  233.                            s
  234.                    );
  235.                }
  236.                return out.join(".");
  237.            }
  238.            this.ToUnicode = function (domain) {
  239.                var domain_array = domain.split(".");
  240.                var out = [];
  241.                for (var i = 0; i < domain_array.length; ++i) {
  242.                    var s = domain_array[i];
  243.                    out.push(
  244.                        s.match(/^xn--/) ?
  245.                            punycode.decode(s.slice(4)) :
  246.                            s
  247.                    );
  248.                }
  249.                return out.join(".");
  250.            }
  251.        }();
  252.    </script>
  253.    <style>
  254.        html {
  255.            height: 100%;
  256.        }
  257.  
  258.        header {
  259.            flex: 1 0 auto;
  260.        }
  261.  
  262.        body {
  263.            display: flex;
  264.            flex-direction: column;
  265.            height: 100%;
  266.            margin: 0;
  267.            font-family: 'Noto Sans', sans-serif;
  268.            color: #14295E;
  269.        }
  270.  
  271.        h1 {
  272.            font-size: 28px;
  273.            line-height: 30px;
  274.            margin-top: 0;
  275.            margin-bottom: 10px;
  276.        }
  277.  
  278.        a {
  279.            color: #14295E;
  280.        }
  281.  
  282.        .wrapper {
  283.            padding: 0px;
  284.            margin: 0 auto;
  285.            max-width: 1024px;
  286.            display: flex;
  287.            flex-direction: column;
  288.            flex: 1 0 auto;
  289.            justify-content: space-between;
  290.        }
  291.  
  292.        .logo {
  293.            padding: 30px 40px;
  294.        }
  295.  
  296.        .content {
  297.            display: flex;
  298.            justify-content: space-between;
  299.            margin: 0 82px;
  300.        }
  301.  
  302.        .left {
  303.            display: flex;
  304.            flex-direction: column;
  305.            align-items: flex-start;
  306.            justify-content: center;
  307.            width: 420px;
  308.            padding-right: 80px;
  309.        }
  310.  
  311.        .text {
  312.            font-size: 15px;
  313.            line-height: 20px;
  314.        }
  315.  
  316.        .image-wrapper {
  317.            width: 481px;
  318.        }
  319.  
  320.        .banner {
  321.            margin-top: 140px;
  322.            margin-bottom: 40px;
  323.            margin-left: 120px;
  324.            margin-right: 120px;
  325.        }
  326.  
  327.        footer {
  328.            display: grid;
  329.            grid-template: "logo links"
  330.                "text links";
  331.            grid-template-columns: 1fr 365px;
  332.            flex: 0 0 auto;
  333.            padding: 20px 44px;
  334.            border-top: 1px solid #DFE2EA;
  335.        }
  336.  
  337.        .footer-logo {
  338.            grid-area: logo;
  339.        }
  340.  
  341.        .footer-text {
  342.            grid-area: text;
  343.            color: #8994AF;
  344.            font-size: 10px;
  345.        }
  346.  
  347.        .footer-links {
  348.            display: grid;
  349.            grid-area: links;
  350.            grid-template-columns: repeat(2, 1fr);
  351.            grid-column-gap: 80px;
  352.            grid-row-gap: 10px;
  353.            font-size: 13px;
  354.        }
  355.  
  356.        .footer-links>a {
  357.            text-decoration: none;
  358.        }
  359.  
  360.        .footer-links>a:hover {
  361.            text-decoration: underline;
  362.        }
  363.  
  364.        @media only screen and (max-width: 960px) {
  365.            h1 {
  366.                margin-top: 22px;
  367.            }
  368.  
  369.            .logo {
  370.                padding: 15px 15px 15px;
  371.            }
  372.  
  373.            .content {
  374.                flex-direction: column-reverse;
  375.                align-items: center;
  376.                margin: 0 15px;
  377.            }
  378.  
  379.            .image-wrapper {
  380.                width: 290px;
  381.            }
  382.  
  383.            .left {
  384.                width: auto;
  385.                padding-right: 0px;
  386.            }
  387.  
  388.            .banner {
  389.                margin-top: 40px;
  390.                margin-left: 15px;
  391.                margin-right: 15px;
  392.            }
  393.  
  394.            footer {
  395.                display: block;
  396.                padding: 27px 27px 20px 30px;
  397.            }
  398.  
  399.            .footer-links {
  400.                padding: 14px 0;
  401.                margin: 14px 0;
  402.                border-top: 1px solid #F3F4F7;
  403.                border-bottom: 1px solid #F3F4F7;
  404.            }
  405.        }
  406.    </style>
  407. </head>
  408.  
  409. <body>
  410.    <header>
  411.        <div class="logo">
  412.            <a href="https://www.nic.ru/">
  413.                <svg width="100" height="42" viewBox="0 0 100 42" fill="none" xmlns="http://www.w3.org/2000/svg">
  414.                    <path
  415.                        d="M39.2312 20.9475C38.5291 20.9475 37.8711 20.8599 37.2572 20.6853C36.643 20.5101 36.1075 20.2386 35.6492 19.8703C35.2028 19.5083 34.8549 19.0539 34.6046 18.5081C34.354 17.9616 34.2285 17.3299 34.2285 16.6124C34.2285 15.6855 34.4043 14.8246 34.7557 14.0302C35.1069 13.2354 35.6004 12.5411 36.235 11.9456C36.8587 11.3621 37.6191 10.9003 38.5167 10.5599C39.4146 10.219 40.3862 10.0491 41.43 10.0491C42.0596 10.0491 42.6839 10.1195 43.304 10.2608C43.9238 10.4019 44.4992 10.6071 45.0306 10.8765L44.3344 13.7005H43.8667C43.5072 13.2651 43.0992 12.9417 42.6442 12.73C42.1892 12.5185 41.6776 12.4122 41.1093 12.4122C40.0711 12.4122 39.2371 12.7831 38.6084 13.5229C37.9788 14.2621 37.6643 15.1854 37.6643 16.2902C37.6643 17.0582 37.8584 17.6323 38.2463 18.0124C38.6344 18.3932 39.2371 18.5838 40.056 18.5838C40.6907 18.5838 41.2696 18.4531 41.7921 18.193C42.3143 17.9322 42.7617 17.643 43.1347 17.324H43.6016L42.9054 20.1468C42.2457 20.4352 41.6667 20.6404 41.1694 20.7634C40.6714 20.8857 40.0247 20.9475 39.2312 20.9475Z"
  416.                        fill="#14295E" />
  417.                    <path
  418.                        d="M53.1509 14.1788C53.1695 14.0678 53.1828 13.9659 53.1923 13.8744C53.2017 13.7815 53.2065 13.6867 53.2065 13.5876C53.2065 13.1011 53.0556 12.7287 52.7556 12.47C52.455 12.211 52.0227 12.0815 51.4591 12.0815C50.7787 12.0815 50.2065 12.2666 49.7435 12.636C49.2798 13.0064 48.9298 13.5204 48.6905 14.1788H53.1509ZM50.6269 20.948C48.8727 20.948 47.5192 20.5584 46.5648 19.7785C45.6118 18.9989 45.1343 17.922 45.1343 16.5476C45.1343 15.6088 45.2902 14.7467 45.602 13.9614C45.9136 13.1759 46.363 12.486 46.9503 11.8903C47.5121 11.3132 48.2153 10.8571 49.0582 10.5185C49.9023 10.1814 50.829 10.0122 51.8381 10.0122C53.371 10.0122 54.5287 10.3243 55.3083 10.9474C56.0872 11.5707 56.4772 12.4905 56.4772 13.706C56.4772 14.1239 56.4352 14.5317 56.3532 14.9311C56.2704 15.3303 56.1618 15.7267 56.0275 16.119H48.3689V16.3311C48.3689 17.0477 48.6204 17.6093 49.121 18.0138C49.6236 18.4189 50.3929 18.6208 51.4278 18.6208C52.1503 18.6208 52.834 18.4985 53.4804 18.2532C54.1263 18.0082 54.6887 17.7343 55.1659 17.4347H55.5337L54.9183 20.0924C54.2769 20.3745 53.6017 20.5878 52.8923 20.7312C52.184 20.8758 51.4287 20.948 50.6269 20.948Z"
  419.                        fill="#14295E" />
  420.                    <path
  421.                        d="M68.7965 10.7206C68.2832 10.2734 67.5642 10.0494 66.6405 10.0494C65.9678 10.0494 65.3521 10.1757 64.792 10.4257C64.2317 10.6779 63.6136 11.0274 62.9346 11.475L63.2065 10.3343L58.7385 10.3351L58.2337 12.5144H59.3852L57.5098 20.6619H60.8287L62.5044 13.3418C62.9323 13.1149 63.3172 12.9453 63.6601 12.831C64.0021 12.7178 64.305 12.6611 64.5681 12.6611C65.1059 12.6611 65.4755 12.7529 65.6772 12.9364C65.879 13.1214 65.9802 13.4122 65.9802 13.8107C65.9802 14.0439 65.9556 14.2963 65.9062 14.5651C65.858 14.8347 65.7908 15.1599 65.7059 15.5395L64.5355 20.6619H67.8761L69.4119 13.9393C69.466 13.7071 69.5068 13.4832 69.5305 13.2679C69.5547 13.0534 69.5666 12.8539 69.5666 12.67C69.5666 11.818 69.3098 11.1679 68.7965 10.7206Z"
  422.                        fill="#14295E" />
  423.                    <path
  424.                        d="M86.2181 14.1788C86.2359 14.0678 86.2498 13.9659 86.259 13.8744C86.2684 13.7815 86.2735 13.6867 86.2735 13.5876C86.2735 13.1011 86.1229 12.7287 85.822 12.47C85.522 12.211 85.0897 12.0815 84.5255 12.0815C83.8448 12.0815 83.2732 12.2666 82.8105 12.636C82.3474 13.0064 81.9971 13.5204 81.7569 14.1788H86.2181ZM83.6942 20.948C81.9394 20.948 80.5859 20.5584 79.632 19.7785C78.6788 18.9989 78.2007 17.922 78.2007 16.5476C78.2007 15.6088 78.3569 14.7467 78.6684 13.9614C78.9803 13.1759 79.4297 12.486 80.017 11.8903C80.5791 11.3132 81.2818 10.8571 82.1255 10.5185C82.9693 10.1814 83.8951 10.0122 84.9042 10.0122C86.4383 10.0122 87.5954 10.3243 88.375 10.9474C89.1545 11.5707 89.5439 12.4905 89.5439 13.706C89.5439 14.1239 89.5022 14.5317 89.4196 14.9311C89.3377 15.3303 89.2285 15.7267 89.0939 16.119H81.4356V16.3311C81.4356 17.0477 81.6865 17.6093 82.1886 18.0138C82.6909 18.4189 83.4593 18.6208 84.4945 18.6208C85.217 18.6208 85.9013 18.4985 86.5468 18.2532C87.1936 18.0082 87.7557 17.7343 88.2329 17.4347H88.6004L87.9856 20.0924C87.3436 20.3745 86.6681 20.5878 85.9596 20.7312C85.2501 20.8758 84.4954 20.948 83.6942 20.948Z"
  425.                        fill="#14295E" />
  426.                    <path
  427.                        d="M99.2681 13.4888H98.9758C98.8288 13.4395 98.622 13.403 98.3533 13.3789C98.0853 13.3543 97.8202 13.3412 97.5578 13.3412C97.124 13.3412 96.7066 13.3742 96.3042 13.438C95.9013 13.5028 95.4868 13.6046 95.0607 13.7463L93.4622 20.6619H90.1421L92.5276 10.3339H95.8489L95.4986 11.8518C96.1202 11.3921 96.7406 11.0182 97.3604 10.7295C97.9791 10.4418 98.6033 10.2974 99.2315 10.2974C99.3474 10.2974 99.4773 10.3007 99.6202 10.3066C99.764 10.3129 99.8906 10.3221 99.9998 10.3339L99.2681 13.4888Z"
  428.                        fill="#14295E" />
  429.                    <path
  430.                        d="M76.5138 10.3344L77.1899 7.38243H73.8798L73.2017 10.3344H71.8428L71.3381 12.5143H72.7301L70.8579 20.6624H74.168C74.1881 20.5789 74.205 20.4949 74.2248 20.4111L76.0396 12.5143H78.2428L78.7443 10.3344H76.5138Z"
  431.                        fill="#14295E" />
  432.                    <path
  433.                        d="M11.7508 12.4608C11.4899 12.2898 11.1042 12.2045 10.5951 12.2045H9.2993L8.66681 14.9427H9.9554C10.6505 14.9427 11.1891 14.8008 11.5705 14.5163C11.9524 14.2315 12.1431 13.8362 12.1431 13.3319C12.1431 12.9221 12.0131 12.6313 11.7508 12.4608ZM24.9706 16.7962C24.6395 18.2069 24.0778 19.23 23.2867 19.8664C22.4953 20.5029 21.3494 20.8215 19.8493 20.8215C18.5122 20.8215 17.5007 20.5807 16.8142 20.0993C16.1277 19.6176 15.7851 18.8891 15.7851 17.9117C15.7851 17.7115 15.8003 17.5081 15.8321 17.3026C15.8639 17.0971 15.898 16.91 15.935 16.7413L17.3935 10.4298H20.0342L18.5801 16.7478C18.5474 16.8758 18.5218 17.0166 18.501 17.1692C18.4796 17.3216 18.47 17.449 18.47 17.5491C18.47 17.9779 18.5986 18.3037 18.8564 18.5247C19.1129 18.7459 19.539 18.857 20.1346 18.857C20.7132 18.857 21.1801 18.6966 21.5364 18.3774C21.8932 18.0581 22.1495 17.561 22.3046 16.8853L23.7972 10.4298H26.4429L24.9706 16.7962ZM14.551 20.6232H11.6275L9.71537 16.8853H8.24415L7.38202 20.6232H4.764L7.10776 10.4298H11.071C12.313 10.4298 13.272 10.6403 13.9504 11.0624C14.6279 11.4847 14.9663 12.13 14.9663 12.9963C14.9663 13.8139 14.7186 14.5002 14.2228 15.0568C13.7274 15.6139 13.055 16.0339 12.2038 16.3169L14.551 20.6232ZM15.7148 0C7.0353 0 0 7.06316 0 15.7755C0 24.4884 7.0353 31.5513 15.7148 31.5513C24.3941 31.5513 31.4311 24.4884 31.4311 15.7755C31.4311 7.06316 24.3941 0 15.7148 0Z"
  434.                        fill="#14295E" />
  435.                    <path
  436.                        d="M67.6909 29.0176C79.3004 28.8359 89.1729 30.3268 99.1019 32.6982C90.5281 28.8251 81.2373 26.3193 70.6522 25.6576C68.319 25.5117 65.9229 25.4555 63.4578 25.4939C43.5033 25.8058 25.779 32.2138 14.1929 42C28.0245 34.4046 46.8631 29.342 67.6909 29.0176Z"
  437.                        fill="#EF3F23" />
  438.                </svg>
  439.            </a>
  440.        </div>
  441.    </header>
  442.    <div class="wrapper">
  443.        <div class="content">
  444.            <div class="left">
  445.                <h1>
  446.                    РЎР°Р№С‚
  447.                    <script>document.write(punycode.ToUnicode(location.hostname));</script> РЅРµ опубликован
  448.                </h1>
  449.                <div class="text">
  450.                    Р•СЃР»Рё здесь должен был быть ваш сайт, опубликуйте его РІ <a href="https://www.nic.ru/hcp">панели
  451.                        СѓРїСЂР°РІР»РµРЅРёСЏ.</a>
  452.                </div>
  453.            </div>
  454.            <div class="image-wrapper">
  455.                <svg viewBox="0 0 481 360" fill="none" xmlns="http://www.w3.org/2000/svg">
  456.                    <path d="M266.874 108.321L27.737 246.7L215.527 354.567L454.965 216.188L266.874 108.321Z"
  457.                        fill="#FAFAFA" stroke="#14295E" stroke-linejoin="bevel" />
  458.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  459.                        d="M248.358 132.645L251.526 132.541L261.769 137.465L309.277 133.838L321.829 125.218L308.12 118.684L260.612 122.311L251.229 128.652L248.148 128.887L245.524 131.018L248.358 132.645Z"
  460.                        fill="#14295E" />
  461.                    <path fill-rule="evenodd" clip-rule="evenodd"
  462.                        d="M248.416 132.318V122.908L250.844 121.488V130.898L248.416 132.318Z" fill="#DFE2EA"
  463.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  464.                    <path fill-rule="evenodd" clip-rule="evenodd"
  465.                        d="M248.416 132.318V122.908L245.989 121.488V130.898L248.416 132.318Z" fill="#FAFAFA"
  466.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  467.                    <path fill-rule="evenodd" clip-rule="evenodd"
  468.                        d="M258.008 86.807L248.416 92.3109L238.825 86.807L248.416 81.303L258.008 86.807Z" fill="#FAFAFA"
  469.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  470.                    <path fill-rule="evenodd" clip-rule="evenodd"
  471.                        d="M238.825 86.8066L248.416 92.3105V127.05L238.825 121.487V86.8066Z" fill="#FAFAFA"
  472.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  473.                    <path fill-rule="evenodd" clip-rule="evenodd"
  474.                        d="M258.008 86.8066L248.416 92.3105V127.05L258.008 121.487V86.8066Z" fill="#DFE2EA"
  475.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  476.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  477.                        d="M65.3697 238.715L68.5373 238.611L78.7801 243.535L126.289 239.908L138.841 231.287L125.132 224.753L77.6231 228.38L68.2403 234.721L65.1596 234.956L62.5354 237.087L65.3697 238.715Z"
  478.                        fill="#14295E" />
  479.                    <path fill-rule="evenodd" clip-rule="evenodd"
  480.                        d="M65.428 238.388V228.978L67.8554 227.557V236.967L65.428 238.388Z" fill="#DFE2EA"
  481.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  482.                    <path fill-rule="evenodd" clip-rule="evenodd"
  483.                        d="M65.428 238.388V228.978L63.0006 227.557V236.967L65.428 238.388Z" fill="#FAFAFA"
  484.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  485.                    <path fill-rule="evenodd" clip-rule="evenodd"
  486.                        d="M75.0193 192.876L65.428 198.38L55.8368 192.876L65.428 187.372L75.0193 192.876Z"
  487.                        fill="#FAFAFA" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  488.                    <path fill-rule="evenodd" clip-rule="evenodd"
  489.                        d="M55.8368 192.876L65.4281 198.38V233.12L55.8368 227.557V192.876Z" fill="#FAFAFA"
  490.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  491.                    <path fill-rule="evenodd" clip-rule="evenodd"
  492.                        d="M75.0192 192.876L65.428 198.38V233.12L75.0192 227.557V192.876Z" fill="#DFE2EA"
  493.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  494.                    <path
  495.                        d="M138.3 266.178L129.421 267.059C123.255 267.67 120.437 275.062 124.632 279.623C126.231 281.361 128.554 282.247 130.904 282.013L151.029 280.018L251.431 272.849C256.967 272.454 260.104 279.064 256.298 283.102C251.484 288.209 257.701 296.065 263.777 292.554L314.728 263.117L363.277 237.981C368.533 235.259 367.604 227.476 361.855 226.068C360.483 225.731 359.038 225.858 357.745 226.428L300.404 251.717C298.343 252.626 296.143 253.181 293.898 253.357L169.45 263.117L138.3 266.178Z"
  496.                        fill="#E8EAEF" />
  497.                    <path
  498.                        d="M227.292 280.813V267.205L215.681 260.564M227.292 280.813L215.681 274.143M227.292 280.813L215.681 260.564M134.407 227.453L134.407 214.072L146.017 220.714M134.407 227.453L146.017 234.123M134.407 227.453L146.017 220.714M180.849 240.639L180.849 254.133M180.849 240.639L169.239 233.997M180.849 240.639L192.46 247.28M180.849 254.133L169.239 247.463M180.849 254.133L192.46 260.803M180.849 254.133L169.239 233.997M180.849 254.133L192.46 247.28M204.071 253.922V267.473M204.071 253.922L192.46 247.28M204.071 253.922L215.681 260.564M204.071 267.473L192.46 260.803M204.071 267.473L215.681 274.143M204.071 267.473L192.46 247.28M204.071 267.473L215.681 260.564M157.628 227.355L157.628 240.793M157.628 227.355L146.017 220.714M157.628 227.355L169.239 233.997M157.628 240.793L146.017 234.123M157.628 240.793L169.239 247.463M157.628 240.793L146.017 220.714M157.628 240.793L169.239 233.997M146.017 220.714L146.017 234.123M169.239 233.997L169.239 247.463M192.46 247.28V260.803M215.681 274.143V260.564"
  499.                        stroke="#14295E" stroke-linejoin="round" />
  500.                    <path
  501.                        d="M227.292 280.813L227.292 267.205M227.292 280.813L238.539 274.282L249.787 267.75M227.292 280.813L249.787 254.199M227.292 280.813L317.31 228.668M317.31 228.668L317.428 215.3M317.31 228.668L333.343 219.283M317.31 228.668L294.776 241.624M317.31 228.668L294.855 228.246M317.31 228.668L333.421 206.09M317.31 228.668L349.434 210.06M227.292 267.205L317.428 215.3M227.292 267.205L249.787 254.199M317.428 215.3L333.421 206.09M317.428 215.3L294.855 228.246M381.558 191.451V178.371L365.486 187.625M381.558 191.451L367.572 199.524L365.486 200.729M381.558 191.451L349.434 210.06M381.558 191.451L365.486 187.625M272.282 254.687L272.282 241.193M272.282 254.687L294.776 241.624M272.282 254.687L249.787 267.75M272.282 254.687L249.787 254.199M272.282 254.687L294.855 228.246M272.282 241.193L294.855 228.246M272.282 241.193L249.787 254.199M349.434 210.06L349.414 196.88M349.434 210.06L333.343 219.283M349.434 210.06L365.486 200.729M349.434 210.06L333.421 206.09M349.434 210.06L365.486 187.625M349.414 196.88L333.421 206.09M349.414 196.88L365.486 187.625M333.421 206.09L333.343 219.283M365.486 187.625V200.729M294.776 241.624L294.855 228.246M249.787 267.75V254.199"
  502.                        stroke="#14295E" stroke-linejoin="round" />
  503.                    <path
  504.                        d="M379.263 176.698L221.779 267.622L132.971 216.349C131.997 215.786 131.485 215.057 131.437 214.32C131.383 213.506 131.894 212.681 132.971 212.059L283.026 125.425C285.078 124.24 288.404 124.24 290.456 125.425L379.263 176.698Z"
  505.                        fill="#FAFAFA" />
  506.                    <path
  507.                        d="M379.263 176.698L221.779 267.622L224.855 269.398C226.907 270.582 230.233 270.582 232.285 269.398L382.34 182.764C383.338 182.188 383.85 181.438 383.877 180.683C383.906 179.885 383.394 179.083 382.34 178.474L379.263 176.698Z"
  508.                        fill="#FAFAFA" />
  509.                    <path
  510.                        d="M132.956 219.807L221.763 271.08L224.84 272.856C226.892 274.041 230.218 274.041 232.27 272.856L382.325 186.222C383.322 185.646 383.835 184.896 383.862 184.141L383.877 180.683C383.85 181.438 383.338 182.188 382.34 182.764L232.285 269.398C230.233 270.582 226.907 270.582 224.855 269.398L221.779 267.622L132.971 216.349C131.997 215.786 131.485 215.057 131.437 214.32L131.418 217.694C131.431 218.46 131.944 219.223 132.956 219.807Z"
  511.                        fill="#FAFAFA" />
  512.                    <path
  513.                        d="M221.763 271.08L132.956 219.807C131.944 219.223 131.431 218.46 131.418 217.694L131.437 214.32M221.763 271.08L224.84 272.856C226.892 274.041 230.218 274.041 232.27 272.856L382.325 186.222C383.322 185.646 383.835 184.896 383.862 184.141L383.877 180.683M221.763 271.08L221.779 267.622M379.263 176.698L221.779 267.622M379.263 176.698L290.456 125.425C288.404 124.24 285.078 124.24 283.026 125.425L132.971 212.059C131.894 212.681 131.383 213.506 131.437 214.32M379.263 176.698L382.34 178.474C383.394 179.083 383.906 179.885 383.877 180.683M221.779 267.622L132.971 216.349C131.997 215.786 131.485 215.057 131.437 214.32M221.779 267.622L224.855 269.398C226.907 270.582 230.233 270.582 232.285 269.398L382.34 182.764C383.338 182.188 383.85 181.438 383.877 180.683"
  514.                        stroke="#14295E" />
  515.                    <path
  516.                        d="M379.263 176.698L221.779 267.622L133.687 216.762C131.24 215.349 131.24 213.059 133.687 211.646L282.31 125.838C284.757 124.426 288.725 124.426 291.172 125.838L379.263 176.698Z"
  517.                        fill="white" stroke="#14295E" />
  518.                    <path
  519.                        d="M379.263 176.698L221.779 267.622L224.139 268.984C226.587 270.397 230.554 270.397 233.001 268.984L381.624 183.177C384.071 181.764 384.071 179.474 381.624 178.061L379.263 176.698Z"
  520.                        fill="#DFE2EA" stroke="#14295E" />
  521.                    <path
  522.                        d="M379.263 176.698L221.779 267.622L133.687 216.762C131.24 215.349 131.24 213.059 133.687 211.646L282.31 125.838C284.757 124.426 288.725 124.426 291.172 125.838L379.263 176.698Z"
  523.                        fill="white" stroke="#14295E" />
  524.                    <path
  525.                        d="M379.263 176.698L221.779 267.622L224.139 268.985C226.587 270.397 230.554 270.397 233.001 268.985L381.624 183.177C384.071 181.764 384.071 179.474 381.624 178.061L379.263 176.698Z"
  526.                        fill="#DFE2EA" stroke="#14295E" />
  527.                    <path
  528.                        d="M379.276 176.705L221.792 267.629L133.7 216.769C131.253 215.357 131.253 213.066 133.7 211.653L282.323 125.846C284.77 124.433 288.738 124.433 291.185 125.846L379.276 176.705Z"
  529.                        fill="#96A2BF" />
  530.                    <path
  531.                        d="M379.276 176.705L221.792 267.629L133.7 216.769C131.253 215.357 131.253 213.066 133.7 211.653L282.323 125.846C284.77 124.433 288.738 124.433 291.185 125.846L379.276 176.705Z"
  532.                        fill="#FAFAFA" />
  533.                    <path
  534.                        d="M379.276 176.705L221.792 267.629L133.7 216.769C131.253 215.357 131.253 213.066 133.7 211.653L282.323 125.846C284.77 124.433 288.738 124.433 291.185 125.846L379.276 176.705Z"
  535.                        stroke="#14295E" />
  536.                    <path
  537.                        d="M225.227 242.248L225.227 242.248C223.878 243.033 223.089 244.128 223.085 245.322C223.081 246.517 223.864 247.609 225.21 248.387C226.559 249.165 228.296 249.536 230.007 249.53C231.719 249.524 233.458 249.142 234.81 248.355C236.159 247.57 236.947 246.476 236.951 245.282C236.955 244.086 236.172 242.994 234.826 242.217C233.478 241.438 231.74 241.067 230.029 241.073C228.318 241.079 226.579 241.462 225.227 242.248Z"
  538.                        stroke="#14295E" stroke-miterlimit="10" stroke-linejoin="round" />
  539.                    <path
  540.                        d="M379.276 176.705L221.792 267.629L224.152 268.992C226.599 270.405 230.567 270.405 233.014 268.992L381.637 183.184C384.084 181.772 384.084 179.481 381.637 178.068L379.276 176.705Z"
  541.                        fill="#DFE2EA" stroke="#14295E" />
  542.                    <path
  543.                        d="M308.625 188.2C308.798 188.3 308.884 188.431 308.882 188.562C308.88 188.69 308.794 188.817 308.625 188.915L277.966 206.525C277.624 206.723 277.07 206.723 276.728 206.525L258.281 195.875C258.133 195.79 258.05 195.682 258.029 195.571C258.002 195.424 258.086 195.272 258.281 195.16L288.94 177.549C289.282 177.352 289.836 177.352 290.178 177.549L308.625 188.2Z"
  544.                        fill="#FAFAFA" />
  545.                    <path
  546.                        d="M258.029 195.571C258.05 195.682 258.133 195.79 258.281 195.875L276.728 206.525C277.07 206.723 277.624 206.723 277.966 206.525L308.625 188.915C308.794 188.817 308.88 188.69 308.882 188.562M258.029 195.571C258.002 195.424 258.086 195.272 258.281 195.16L288.94 177.549C289.282 177.352 289.836 177.352 290.178 177.549L308.625 188.2C308.798 188.3 308.884 188.431 308.882 188.562M258.029 195.571L258.198 197.385C258.206 197.507 258.291 197.628 258.453 197.722L276.901 208.373C277.243 208.57 277.797 208.57 278.139 208.373L308.798 190.762C308.964 190.666 309.05 190.541 309.054 190.415L308.882 188.562"
  547.                        stroke="#14295E" />
  548.                    <path
  549.                        d="M343.228 168.133C343.401 168.233 343.486 168.365 343.484 168.496C343.482 168.623 343.397 168.751 343.228 168.848L312.569 186.459C312.227 186.656 311.672 186.656 311.33 186.459L292.883 175.808C292.736 175.723 292.652 175.615 292.632 175.504C292.605 175.358 292.688 175.205 292.883 175.093L323.542 157.483C323.884 157.285 324.438 157.285 324.78 157.483L343.228 168.133Z"
  550.                        fill="#FAFAFA" />
  551.                    <path
  552.                        d="M292.632 175.504C292.652 175.615 292.736 175.723 292.883 175.808L311.33 186.459C311.672 186.656 312.227 186.656 312.569 186.459L343.228 168.848C343.397 168.751 343.482 168.623 343.484 168.496M292.632 175.504C292.605 175.358 292.688 175.205 292.883 175.093L323.542 157.483C323.884 157.285 324.438 157.285 324.78 157.483L343.228 168.133C343.401 168.233 343.486 168.365 343.484 168.496M292.632 175.504L292.8 177.318C292.808 177.441 292.894 177.562 293.056 177.655L311.503 188.306C311.845 188.503 312.399 188.503 312.741 188.306L343.4 170.696C343.567 170.6 343.652 170.474 343.657 170.348L343.484 168.496"
  553.                        stroke="#14295E" />
  554.                    <path d="M271.696 201.086L273.648 199.959L263.593 194.154L261.641 195.281L271.696 201.086Z"
  555.                        fill="#EF3F23" />
  556.                    <path d="M271.127 194.338L273.079 193.211L269.152 190.944L267.2 192.071L271.127 194.338Z"
  557.                        fill="#EF3F23" />
  558.                    <path d="M273.949 189.548L275.902 188.421L274.712 187.734L272.759 188.861L273.949 189.548Z"
  559.                        fill="#EF3F23" />
  560.                    <path d="M280.847 187.112L282.799 185.985L280.271 184.525L278.318 185.652L280.847 187.112Z"
  561.                        fill="#EF3F23" />
  562.                    <path d="M288.176 184.924L290.128 183.797L285.83 181.315L283.878 182.442L288.176 184.924Z"
  563.                        fill="#EF3F23" />
  564.                    <path d="M260.99 195.656L289.065 179.447" stroke="#4F5F86" />
  565.                    <rect width="16.0253" height="1.36386" rx="0.681928"
  566.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 218.448 227.88)" fill="#4F5F86" />
  567.                    <rect width="16.0253" height="1.36386" rx="0.681928"
  568.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 215.405 226.123)" fill="#4F5F86" />
  569.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  570.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 210.028 225.835)" fill="#4F5F86" />
  571.                    <path
  572.                        d="M230.667 233.541C230.992 233.729 230.994 234.032 230.672 234.221L216.909 242.289C216.583 242.48 216.051 242.481 215.723 242.292C215.399 242.105 215.397 241.801 215.719 241.613L229.482 233.544C229.807 233.353 230.339 233.352 230.667 233.541Z"
  573.                        fill="#4F5F86" />
  574.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  575.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 224.915 234.455)" fill="#EF3F23" />
  576.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  577.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 222.111 232.836)" fill="#4F5F86" />
  578.                    <rect width="22.39" height="1.36386" rx="0.681928"
  579.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 213.544 218.644)" fill="#4F5F86" />
  580.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  581.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 202.751 221.658)" fill="#8994AF" />
  582.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  583.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 199.947 220.04)" fill="#8994AF" />
  584.                    <path fill-rule="evenodd" clip-rule="evenodd"
  585.                        d="M328.377 188.014C328.412 187.863 328.329 187.704 328.128 187.588L325.331 185.973C324.989 185.776 324.435 185.776 324.093 185.973L246.884 230.55C246.698 230.657 246.614 230.8 246.63 230.94C246.643 231.058 246.728 231.174 246.884 231.265L247.506 231.624L324.109 187.397C324.451 187.199 325.005 187.199 325.347 187.397L327.523 188.653L328.128 188.303C328.269 188.222 328.352 188.12 328.377 188.014Z"
  586.                        fill="#DFE2EA" />
  587.                    <path
  588.                        d="M247.506 231.624L324.109 187.397C324.451 187.199 325.005 187.199 325.347 187.397L327.523 188.653M247.506 231.624L249.681 232.88C249.887 232.998 250.17 233.046 250.438 233.021C250.614 233.005 250.784 232.958 250.92 232.88L327.523 188.653M247.506 231.624L246.884 231.265C246.728 231.174 246.643 231.058 246.63 230.94C246.614 230.8 246.698 230.657 246.884 230.55L324.093 185.973C324.435 185.776 324.989 185.776 325.331 185.973L328.128 187.588C328.329 187.704 328.412 187.863 328.377 188.014C328.352 188.12 328.269 188.222 328.128 188.303L327.523 188.653"
  589.                        stroke="#14295E" />
  590.                    <path
  591.                        d="M325.407 187.372C325.065 187.175 324.511 187.175 324.169 187.372L247.566 231.599L249.741 232.855C249.947 232.974 250.23 233.021 250.498 232.997C250.674 232.981 250.844 232.934 250.98 232.855L327.583 188.628L325.407 187.372Z"
  592.                        fill="#FAFAFA" stroke="#14295E" />
  593.                    <path
  594.                        d="M351.523 174.125C351.931 174.36 351.931 174.742 351.523 174.977L332.411 186.012C332.003 186.248 331.342 186.248 330.934 186.012L327.93 184.278C327.522 184.042 327.522 183.66 327.93 183.425L347.042 172.39C347.45 172.155 348.111 172.155 348.519 172.39L351.523 174.125Z"
  595.                        stroke="#EF3F23" />
  596.                    <path
  597.                        d="M273.072 208.328C273.245 208.428 273.331 208.559 273.329 208.69C273.327 208.818 273.241 208.945 273.072 209.043L242.413 226.653C242.071 226.85 241.517 226.85 241.175 226.653L222.728 216.002C222.581 215.917 222.497 215.81 222.476 215.699C222.449 215.552 222.533 215.4 222.728 215.288L253.387 197.677C253.729 197.48 254.283 197.48 254.625 197.677L273.072 208.328Z"
  598.                        fill="#FAFAFA" />
  599.                    <path
  600.                        d="M222.476 215.699C222.497 215.81 222.581 215.917 222.728 216.002L241.175 226.653C241.517 226.85 242.071 226.85 242.413 226.653L273.072 209.043C273.241 208.945 273.327 208.818 273.329 208.69M222.476 215.699C222.449 215.552 222.533 215.4 222.728 215.288L253.387 197.677C253.729 197.48 254.283 197.48 254.625 197.677L273.072 208.328C273.245 208.428 273.331 208.559 273.329 208.69M222.476 215.699L222.645 217.513C222.653 217.635 222.738 217.756 222.9 217.85L241.348 228.5C241.69 228.698 242.244 228.698 242.586 228.5L273.245 210.89C273.412 210.794 273.497 210.669 273.501 210.543L273.329 208.69"
  601.                        stroke="#14295E" />
  602.                    <path
  603.                        d="M284.758 174.653C284.932 174.753 285.017 174.884 285.015 175.015C285.013 175.143 284.927 175.27 284.758 175.368L219.257 213.284C218.915 213.481 218.361 213.481 218.019 213.284L199.572 202.633C199.424 202.548 199.34 202.441 199.32 202.33C199.293 202.183 199.377 202.031 199.572 201.919L265.073 164.002C265.415 163.805 265.969 163.805 266.311 164.002L284.758 174.653Z"
  604.                        fill="#FAFAFA" />
  605.                    <path
  606.                        d="M219.257 213.284L284.758 175.368C284.927 175.27 285.013 175.143 285.015 175.015C285.017 174.884 284.932 174.753 284.758 174.653L266.311 164.002C265.969 163.805 265.415 163.805 265.073 164.002L199.572 201.919C199.377 202.031 199.293 202.183 199.32 202.33C199.34 202.441 199.424 202.548 199.572 202.633L218.019 213.284C218.361 213.481 218.915 213.481 219.257 213.284Z"
  607.                        fill="#FAFAFA" />
  608.                    <path
  609.                        d="M199.32 202.33C199.34 202.441 199.424 202.548 199.572 202.633L218.019 213.284C218.361 213.481 218.915 213.481 219.257 213.284L284.758 175.368C284.927 175.27 285.013 175.143 285.015 175.015M199.32 202.33C199.293 202.183 199.377 202.031 199.572 201.919L265.073 164.002C265.415 163.805 265.969 163.805 266.311 164.002L284.758 174.653C284.932 174.753 285.017 174.884 285.015 175.015M199.32 202.33L199.585 204.206C199.593 204.329 199.679 204.45 199.841 204.543L218.288 215.194C218.63 215.391 219.184 215.391 219.526 215.194L284.701 177.234C284.868 177.138 284.953 177.013 284.958 176.887L285.015 175.015"
  610.                        stroke="#14295E" />
  611.                    <circle r="1.48896" transform="matrix(-0.866025 0.5 -0.866025 -0.5 235.722 263.478)"
  612.                        stroke="#14295E" />
  613.                    <circle r="1.48896" transform="matrix(-0.866025 0.5 -0.866025 -0.5 240.84 260.522)"
  614.                        stroke="#EF3F23" />
  615.                    <circle r="1.48896" transform="matrix(-0.866025 0.5 -0.866025 -0.5 230.604 266.433)"
  616.                        stroke="#14295E" />
  617.                    <rect width="22.39" height="1.36386" rx="0.681928"
  618.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 200.202 181.701)" fill="#4F5F86" />
  619.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  620.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 195.159 191.007)" fill="#4F5F86" />
  621.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  622.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 242.488 164.509)" fill="#DFE2EA" />
  623.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  624.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 257.033 155.901)" fill="#DFE2EA" />
  625.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  626.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 271.579 147.293)" fill="#DFE2EA" />
  627.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  628.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 285.343 138.895)" fill="#DFE2EA" />
  629.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  630.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 236.916 161.292)" fill="#DFE2EA" />
  631.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  632.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 251.461 152.684)" fill="#DFE2EA" />
  633.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  634.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 266.007 144.076)" fill="#DFE2EA" />
  635.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  636.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 279.771 135.678)" fill="#DFE2EA" />
  637.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  638.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 248.431 167.94)" fill="#DFE2EA" />
  639.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  640.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 262.977 159.333)" fill="#DFE2EA" />
  641.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  642.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 277.523 150.725)" fill="#DFE2EA" />
  643.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  644.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 291.659 142.541)" fill="#DFE2EA" />
  645.                    <rect width="13.1839" height="1.36386" rx="0.681928"
  646.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 203.133 192.639)" fill="#4F5F86" />
  647.                    <line y1="-0.5" x2="114.387" y2="-0.5"
  648.                        transform="matrix(0.866025 -0.5 -0.5 -0.866025 177.728 191.172)" stroke="#4F5F86" />
  649.                    <line y1="-0.5" x2="114.387" y2="-0.5"
  650.                        transform="matrix(0.866025 -0.5 -0.5 -0.866025 182.681 194.032)" stroke="#4F5F86" />
  651.                    <line y1="-0.5" x2="114.387" y2="-0.5"
  652.                        transform="matrix(0.866025 -0.5 -0.5 -0.866025 188.501 197.392)" stroke="#4F5F86" />
  653.                    <line y1="-0.5" x2="114.387" y2="-0.5"
  654.                        transform="matrix(0.866025 -0.5 -0.5 -0.866025 194.568 200.895)" stroke="#4F5F86" />
  655.                    <path d="M203.007 202.344L265.71 166.142" stroke="#4F5F86" />
  656.                    <path
  657.                        d="M206.549 204.389L212.245 199.633L225.131 199.027L229.055 193.248L240.442 191.778L239.492 183.185L258.009 185.83L254.471 175.743L266.403 174.587L278.637 173.606"
  658.                        stroke="white" />
  659.                    <path
  660.                        d="M206.232 204.205L223.719 206.257L224.782 198.826L224.801 190.792L243.924 193.788L250.86 189.748L255.027 184.109L265.369 182.035L265.797 174.237L275.368 171.718"
  661.                        stroke="#EF3F23" />
  662.                    <path d="M236.071 221.191L238.023 220.064L227.968 214.259L226.016 215.386L236.071 221.191Z"
  663.                        fill="#4F5F86" />
  664.                    <path d="M235.502 214.443L237.454 213.316L233.527 211.049L231.575 212.176L235.502 214.443Z"
  665.                        fill="#4F5F86" />
  666.                    <path d="M238.324 209.653L240.277 208.526L239.087 207.839L237.134 208.966L238.324 209.653Z"
  667.                        fill="#4F5F86" />
  668.                    <path d="M245.222 207.217L247.174 206.09L244.646 204.63L242.694 205.757L245.222 207.217Z"
  669.                        fill="#4F5F86" />
  670.                    <path d="M252.551 205.029L254.504 203.902L250.205 201.42L248.253 202.547L252.551 205.029Z"
  671.                        fill="#4F5F86" />
  672.                    <path d="M233.293 216.904L235.245 215.777L230.292 212.917L228.34 214.044L233.293 216.904Z"
  673.                        fill="#4F5F86" />
  674.                    <path d="M247.107 218.46L249.06 217.333L235.852 209.707L233.899 210.835L247.107 218.46Z"
  675.                        fill="#4F5F86" />
  676.                    <path d="M249.112 213.198L251.064 212.071L241.411 206.498L239.459 207.625L249.112 213.198Z"
  677.                        fill="#4F5F86" />
  678.                    <path d="M250 207.292L251.953 206.165L246.97 203.288L245.018 204.415L250 207.292Z" fill="#4F5F86" />
  679.                    <path d="M253.938 203.147L255.891 202.019L252.529 200.079L250.577 201.206L253.938 203.147Z"
  680.                        fill="#4F5F86" />
  681.                    <path d="M225.365 215.761L253.44 199.552" stroke="#4F5F86" />
  682.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  683.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 334.627 167.349)" fill="#DFE2EA" />
  684.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  685.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 332.274 165.99)" fill="#DFE2EA" />
  686.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  687.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 329.921 164.632)" fill="#DFE2EA" />
  688.                    <path
  689.                        d="M317.775 178.387C317.288 178.659 316.751 178.901 316.172 179.107L314.006 177.15C314.336 177.033 314.643 176.895 314.921 176.739L317.775 178.387Z"
  690.                        fill="#14295E" fill-opacity="0.33" stroke="#DFE2EA" />
  691.                    <path
  692.                        d="M316.188 179.101C314.854 179.577 313.329 179.854 311.752 179.907C310.175 179.96 308.596 179.787 307.162 179.403C305.727 179.02 304.482 178.439 303.54 177.713C302.598 176.987 301.99 176.14 301.771 175.248L305.783 174.947C305.908 175.456 306.255 175.94 306.793 176.354C307.331 176.769 308.042 177.101 308.861 177.32C309.68 177.539 310.581 177.637 311.482 177.607C312.382 177.577 313.253 177.419 314.015 177.147L316.188 179.101Z"
  693.                        fill="#14295E" fill-opacity="0.25" stroke="#DFE2EA" />
  694.                    <path
  695.                        d="M317.775 178.387C318.92 177.746 319.755 176.947 320.2 176.067C320.644 175.187 320.684 174.255 320.316 173.36C319.947 172.465 319.182 171.637 318.093 170.955C317.005 170.273 315.629 169.759 314.098 169.463C312.567 169.167 310.931 169.099 309.346 169.265C307.761 169.43 306.281 169.824 305.046 170.409C303.811 170.994 302.862 171.751 302.291 172.606C301.72 173.462 301.545 174.388 301.783 175.297L305.79 174.975C305.654 174.456 305.754 173.927 306.08 173.439C306.406 172.95 306.948 172.518 307.653 172.184C308.358 171.85 309.203 171.625 310.108 171.531C311.013 171.436 311.947 171.475 312.822 171.644C313.696 171.813 314.481 172.106 315.103 172.496C315.724 172.885 316.161 173.358 316.372 173.869C316.582 174.38 316.559 174.912 316.306 175.415C316.052 175.917 315.575 176.373 314.921 176.739L317.775 178.387Z"
  696.                        stroke="#DFE2EA" />
  697.                    <path
  698.                        d="M221.887 271.151L224.964 272.928C227.016 274.112 230.342 274.112 232.394 272.928L382.448 186.293C383.446 185.717 383.959 184.967 383.986 184.212L384.001 180.754C383.974 181.509 383.461 182.259 382.464 182.835L232.409 269.469C230.357 270.654 227.031 270.654 224.979 269.469L221.903 267.693L221.887 271.151Z"
  699.                        fill="#DFE2EA" />
  700.                    <path
  701.                        d="M221.903 267.693L379.387 176.769L382.464 178.546C383.518 179.154 384.03 179.957 384.001 180.754M221.903 267.693L224.979 269.469C227.031 270.654 230.357 270.654 232.409 269.469L382.464 182.835C383.461 182.259 383.974 181.509 384.001 180.754M221.903 267.693L221.887 271.151L224.964 272.928C227.016 274.112 230.342 274.112 232.394 272.928L382.448 186.293C383.446 185.717 383.959 184.967 383.986 184.212L384.001 180.754"
  702.                        stroke="#14295E" stroke-width="0.858238" />
  703.                    <path d="M125.831 284.86L82.8137 260.138L125.831 235.492L168.773 260.138L125.831 284.86Z"
  704.                        fill="white" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  705.                    <path d="M82.8052 266.596L125.779 291.566V285.064L82.8052 260.202L82.8052 266.596Z" fill="white"
  706.                        stroke="#14295E" stroke-linejoin="round" />
  707.                    <path d="M168.805 266.596L125.807 291.566L125.807 285.064L168.805 260.202L168.805 266.596Z"
  708.                        fill="#DFE2EA" stroke="#14295E" stroke-linejoin="round" />
  709.                    <path d="M96.492 260.455L125.468 277.184L125.468 272.827L96.492 256.171L96.492 260.455Z"
  710.                        fill="white" stroke="#14295E" stroke-linejoin="round" />
  711.                    <path d="M154.552 260.455L125.576 277.184L125.576 272.827L154.552 256.171L154.552 260.455Z"
  712.                        fill="#DFE2EA" stroke="#14295E" stroke-linejoin="round" />
  713.                    <path d="M125.611 272.906L96.4526 256.1L125.611 239.941L154.553 256.531L125.611 272.906Z"
  714.                        fill="#FAFAFA" />
  715.                    <path
  716.                        d="M96.4526 256.1L125.611 272.906M96.4526 256.1L110.816 251.576L125.611 260.122M96.4526 256.1L125.611 239.941M125.611 272.906V260.122M125.611 272.906L154.553 256.531M125.611 260.122L140.477 251.576M140.477 251.576L154.553 256.531M140.477 251.576L125.611 243.173V239.941M154.553 256.531L125.611 239.941"
  717.                        stroke="#14295E" stroke-linejoin="round" />
  718.                    <rect width="17.3302" height="17.3302"
  719.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 163.199)" stroke="#14295E"
  720.                        stroke-linejoin="round" />
  721.                    <rect width="17.3302" height="17.3302"
  722.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 260.177)" stroke="#14295E"
  723.                        stroke-linejoin="round" />
  724.                    <rect width="17.3302" height="17.3302"
  725.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 105.012)" stroke="#14295E"
  726.                        stroke-linejoin="round" />
  727.                    <rect width="17.3302" height="17.3302"
  728.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 201.99)" stroke="#14295E"
  729.                        stroke-linejoin="round" />
  730.                    <rect width="17.3302" height="17.3302"
  731.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 143.803)" stroke="#14295E"
  732.                        stroke-linejoin="round" />
  733.                    <rect width="17.3302" height="17.3302"
  734.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 240.781)" stroke="#14295E"
  735.                        stroke-linejoin="round" />
  736.                    <rect width="17.3302" height="17.3302"
  737.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 182.595)" stroke="#14295E"
  738.                        stroke-linejoin="round" />
  739.                    <rect width="17.3302" height="17.3302"
  740.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 124.408)" stroke="#14295E"
  741.                        stroke-linejoin="round" />
  742.                    <rect width="17.3302" height="17.3302"
  743.                        transform="matrix(-0.866025 -0.5 0.872496 -0.488621 125.541 221.386)" stroke="#14295E"
  744.                        stroke-linejoin="round" />
  745.                    <path
  746.                        d="M110.602 251.319L113.822 253.178L113.822 78.8232M110.602 251.319L113.846 249.503M110.602 251.319L110.602 76.9644M113.822 78.8232L110.602 76.9644M113.822 78.8232L113.846 75.1479L110.602 76.9644"
  747.                        stroke="#14295E" stroke-linejoin="round" />
  748.                    <path
  749.                        d="M122.424 70.3001L125.667 68.4836M122.424 70.3001L125.593 70.3001L128.761 70.3001M122.424 70.3001L122.424 244.883L122.424 258.256L125.643 260.075M125.667 68.4836L128.761 70.3001M125.667 68.4836L125.645 246.647L125.643 256.444L125.643 260.075M128.761 70.3001L128.761 244.883L128.761 258.435L125.643 260.075"
  750.                        stroke="#14295E" stroke-linejoin="round" />
  751.                    <path
  752.                        d="M140.572 77.1926L137.353 75.3338L137.353 249.874M140.572 77.1926L137.328 79.0091M140.572 77.1926L140.572 251.733M137.353 249.874L140.572 251.733M137.353 249.874L137.328 253.55L140.572 251.733"
  753.                        stroke="#14295E" stroke-linejoin="round" />
  754.                    <path d="M124.69 85.5907L110.105 77.132L126.491 67.8207L140.979 76.174L124.69 85.5907Z"
  755.                        fill="#DFE2EA" stroke="#14295E" stroke-linejoin="round" />
  756.                    <path
  757.                        d="M59.5413 106.035L74.4426 115.002L124.687 85.9933L141.397 76.1587L156.79 66.0555L172.67 55.9457L189.125 45.588L204.975 35.5054L220.935 25.3797L232.484 18.7685L226.175 15.0377L214.579 21.5755L196.965 30.6664L179.67 39.863L161.561 49.3173L144.085 58.4011L126.575 67.3643L59.5413 106.035Z"
  758.                        stroke="#14295E" stroke-linejoin="bevel" />
  759.                    <path
  760.                        d="M144.009 58.5452L144.009 43.6749L156.789 51.278L156.789 66.1483L150.399 62.3468L144.009 58.5452Z"
  761.                        stroke="#14295E" stroke-linejoin="bevel" />
  762.                    <path
  763.                        d="M196.984 30.778L196.984 21.484L204.971 26.2359L204.971 35.5299L200.977 33.1539L196.984 30.778Z"
  764.                        stroke="#14295E" stroke-linejoin="bevel" />
  765.                    <path
  766.                        d="M109.694 77.0577L109.694 59.7276L117.141 64.1579L124.588 68.5883L124.588 85.9185L109.694 77.0577Z"
  767.                        fill="#DFE2EA" />
  768.                    <path fill-rule="evenodd" clip-rule="evenodd"
  769.                        d="M124.588 85.9185L124.588 68.5883L133.028 63.7479L141.469 76.023L124.588 85.9185Z"
  770.                        fill="#DFE2EA" />
  771.                    <path fill-rule="evenodd" clip-rule="evenodd"
  772.                        d="M109.694 59.7276L117.141 64.1579L124.588 68.5883L133.028 63.7479L125.209 59.2967L124.218 58.733L117.766 55.0603L109.694 59.7276Z"
  773.                        fill="#DFE2EA" />
  774.                    <path
  775.                        d="M109.694 59.7275L109.694 77.0577L124.588 85.9185M109.694 59.7275L117.141 64.1579L124.588 68.5883M109.694 59.7275L117.766 55.0603M109.694 59.7275L116.598 49.6704L123.502 39.6133M124.588 68.5883L124.588 85.9185M124.588 68.5883L133.028 63.7479M124.588 68.5883L124.218 58.733M124.588 85.9185L141.469 76.023M141.469 58.9075V76.023M141.469 58.9075L133.921 54.4957M141.469 58.9075L123.502 39.6133M141.469 58.9075L133.028 63.7479M141.469 76.023L133.028 63.7479M126.373 50.084L133.921 54.4957M126.373 50.084L123.502 39.6133M126.373 50.084L123.947 51.4868M123.502 39.6133L123.947 51.4868M133.921 54.4957L125.209 59.2967M133.028 63.7479L125.209 59.2967M117.766 55.0603L123.947 51.4868M117.766 55.0603L124.218 58.733M123.947 51.4868L124.218 58.733M124.218 58.733L125.209 59.2967"
  776.                        stroke="#14295E" stroke-linejoin="bevel" />
  777.                    <path fill-rule="evenodd" clip-rule="evenodd"
  778.                        d="M127.385 79.8381L127.385 69.6176L129.965 68.1382C131.32 67.3612 133.044 67.7538 133.929 69.0409L137.34 74.0022L127.385 79.8381Z"
  779.                        fill="white" stroke="#14295E" stroke-linejoin="bevel" />
  780.                    <path
  781.                        d="M161.482 49.341L161.482 36.3295L172.664 42.9822L172.664 55.9937L167.073 52.6674L161.482 49.341Z"
  782.                        stroke="#14295E" stroke-linejoin="bevel" />
  783.                    <rect width="11.1528" height="17.3302"
  784.                        transform="matrix(9.61279e-08 -1 0.859406 0.511293 76.1 96.4533)" stroke="#14295E"
  785.                        stroke-linejoin="bevel" />
  786.                    <path
  787.                        d="M59.5048 106.124L59.5048 100.548L59.5048 94.9715L74.3995 103.833V109.435V115.038L59.5048 106.124Z"
  788.                        fill="#DFE2EA" />
  789.                    <path d="M59.5048 94.9715L74.3995 103.833L90.9893 94.1614L76.2905 85.3513L59.5048 94.9715Z"
  790.                        fill="#DFE2EA" />
  791.                    <path d="M74.3995 103.833V109.435V115.038L90.9893 105.357V99.7594L90.9893 94.1614L74.3995 103.833Z"
  792.                        fill="#DFE2EA" />
  793.                    <path
  794.                        d="M59.5048 94.9715L74.3995 103.833M59.5048 94.9715L76.2905 85.3513L90.9893 94.1614M59.5048 94.9715L59.5048 100.548M74.3995 103.833L90.9893 94.1614M74.3995 103.833V109.435M74.3995 115.038L59.5048 106.124L59.5048 100.548M74.3995 115.038L90.9893 105.357V99.7594M74.3995 115.038V109.435M90.9893 94.1614L90.9893 99.7594M90.9893 99.7594L74.3995 109.435M74.3995 109.435L59.5048 100.548"
  795.                        stroke="#14295E" stroke-linejoin="bevel" />
  796.                    <path
  797.                        d="M214.577 21.586L214.661 14.2087L220.967 17.9524L220.967 25.3875L217.772 23.4868L214.577 21.586Z"
  798.                        stroke="#14295E" stroke-linejoin="bevel" />
  799.                    <path
  800.                        d="M226.096 15.0625L226.096 7.62733L232.486 11.4289L232.486 18.8641L229.291 16.9633L226.096 15.0625Z"
  801.                        stroke="#14295E" stroke-linejoin="bevel" />
  802.                    <path
  803.                        d="M179.539 39.9127L179.539 28.76L189.124 34.4623L189.124 45.6151L184.331 42.7639L179.539 39.9127Z"
  804.                        stroke="#14295E" stroke-linejoin="bevel" />
  805.                    <rect width="11.1528" height="17.3314"
  806.                        transform="matrix(9.61279e-08 -1 0.859406 0.511293 92.8971 86.7556)" stroke="#14295E"
  807.                        stroke-linejoin="bevel" />
  808.                    <path d="M112.813 64.732V69.8818L121.664 75.1479L121.664 69.9981L112.813 64.732Z" fill="white"
  809.                        stroke="#14295E" stroke-linejoin="bevel" />
  810.                    <path
  811.                        d="M59.5404 95.1352L76.1904 85.3771L92.9196 75.7364L109.724 59.8186L126.562 50.1216L144.075 43.723L161.474 36.384L179.547 28.837L196.991 21.5544L214.652 14.2386L226.146 7.70677"
  812.                        stroke="#14295E" />
  813.                    <path
  814.                        d="M229.646 16.6838C229.619 18.3454 228.439 20.3812 227.01 21.2309C226.25 21.6833 225.573 21.7082 225.11 21.3819C225.104 21.3783 225.099 21.3747 225.094 21.371C224.697 21.0813 224.462 20.528 224.474 19.7608C224.502 18.0992 225.682 16.0634 227.11 15.2137C227.776 14.8175 228.378 14.7492 228.829 14.9576C228.962 15.0192 229.082 15.1051 229.186 15.2137C229.486 15.5257 229.657 16.0262 229.646 16.6838Z"
  815.                        fill="#DFE2EA" />
  816.                    <path
  817.                        d="M227.01 21.2309C228.439 20.3812 229.619 18.3454 229.646 16.6838C229.657 16.0262 229.486 15.5257 229.186 15.2137L228.829 14.9576C228.378 14.7492 227.776 14.8175 227.11 15.2137C225.682 16.0634 224.502 18.0992 224.474 19.7608C224.462 20.528 224.697 21.0813 225.094 21.371L225.11 21.3819C225.573 21.7082 226.25 21.6833 227.01 21.2309Z"
  818.                        fill="#DFE2EA" />
  819.                    <path
  820.                        d="M224.474 19.7608C224.502 18.0992 225.682 16.0634 227.11 15.2137C227.776 14.8175 228.378 14.7492 228.829 14.9576L223.225 10.9414L223.185 10.9132C222.723 10.5959 222.051 10.6243 221.297 11.0727C219.869 11.9224 218.689 13.9582 218.661 15.6198C218.65 16.2774 218.821 16.7779 219.121 17.0899L219.478 17.346L225.094 21.371C224.697 21.0813 224.462 20.528 224.474 19.7608Z"
  821.                        fill="#DFE2EA" />
  822.                    <path
  823.                        d="M219.121 17.0899C218.821 16.7779 218.65 16.2774 218.661 15.6198C218.689 13.9582 219.869 11.9224 221.297 11.0727C222.051 10.6243 222.723 10.5959 223.185 10.9132M219.121 17.0899L219.478 17.346M219.121 17.0899C219.225 17.1986 219.345 17.2844 219.478 17.346M225.11 21.3819C225.573 21.7082 226.25 21.6833 227.01 21.2309C228.439 20.3812 229.619 18.3454 229.646 16.6838C229.657 16.0262 229.486 15.5257 229.186 15.2137M225.11 21.3819L225.094 21.371M225.11 21.3819C225.104 21.3783 225.099 21.3747 225.094 21.371M223.185 10.9132L223.225 10.9414M223.185 10.9132C223.199 10.9224 223.212 10.9318 223.225 10.9414M229.186 15.2137L228.829 14.9576M229.186 15.2137C229.082 15.1051 228.962 15.0192 228.829 14.9576M228.829 14.9576C228.378 14.7492 227.776 14.8175 227.11 15.2137C225.682 16.0634 224.502 18.0992 224.474 19.7608C224.462 20.528 224.697 21.0813 225.094 21.371M228.829 14.9576L223.225 10.9414M225.094 21.371L219.478 17.346"
  824.                        stroke="#14295E" />
  825.                    <path
  826.                        d="M74.4049 103.796L91.055 94.0377L107.784 84.397L124.588 68.4793L141.427 58.7823L156.793 51.413L172.672 43.1486L189.07 34.4857L205.035 26.4724L220.937 17.9332L232.54 11.4669"
  827.                        stroke="#14295E" />
  828.                    <path fill-rule="evenodd" clip-rule="evenodd"
  829.                        d="M123.59 43.635V38.1146L126.017 36.9967V42.2147L123.59 43.635Z" fill="#DFE2EA"
  830.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  831.                    <path fill-rule="evenodd" clip-rule="evenodd"
  832.                        d="M123.59 43.635V38.1731L121.162 36.9967V42.2147L123.59 43.635Z" fill="#FAFAFA"
  833.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  834.                    <path d="M123.548 35.5916L121.17 36.9996L123.548 38.19L126.051 36.9996L123.548 35.5916Z"
  835.                        fill="white" stroke="#14295E" stroke-linejoin="round" />
  836.                    <path
  837.                        d="M82.8921 87.353L122.479 40.0261M126.115 39.0206L225.861 12.3993M226.877 21.6946C226.877 31.3285 226.877 50.1074 226.877 50.1074"
  838.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  839.                    <path d="M72.3444 89.0997L79.0558 93.0926L86.5311 88.7347L79.9079 84.7649L72.3444 89.0997Z"
  840.                        fill="#8994AF" />
  841.                    <path d="M86.5311 88.7347L79.0558 93.0926V95.617L86.5311 91.2571L86.5311 88.7347Z" fill="#8994AF" />
  842.                    <path d="M79.0558 93.0926L72.3444 89.0997L72.3444 91.6124L79.0558 95.617V93.0926Z" fill="#8994AF" />
  843.                    <path
  844.                        d="M72.3444 89.0997L79.0558 93.0926M72.3444 89.0997L79.9079 84.7649L86.5311 88.7347M72.3444 89.0997L72.3444 91.6124L79.0558 95.617M79.0558 93.0926L86.5311 88.7347M79.0558 93.0926V95.617M86.5311 88.7347L86.5311 91.2571L79.0558 95.617"
  845.                        stroke="#14295E" stroke-linejoin="bevel" />
  846.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  847.                        d="M219.186 337.181L222.354 337.077L232.597 342.001L280.105 334.182C280.105 334.182 285.605 333.747 285.114 329.952C284.656 326.416 278.948 326.573 278.948 326.573L231.44 326.846L222.057 333.187L218.976 333.422L216.352 335.553L219.186 337.181Z"
  848.                        fill="#14295E" />
  849.                    <path fill-rule="evenodd" clip-rule="evenodd"
  850.                        d="M219.245 336.854V327.444L221.672 326.023V335.433L219.245 336.854Z" fill="#DFE2EA"
  851.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  852.                    <path fill-rule="evenodd" clip-rule="evenodd"
  853.                        d="M219.245 336.854V327.444L216.817 326.023V335.433L219.245 336.854Z" fill="#FAFAFA"
  854.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  855.                    <path fill-rule="evenodd" clip-rule="evenodd"
  856.                        d="M213.671 290.307L216.458 291.915L219.245 293.523V331.586L209.653 326.023L213.671 290.307Z"
  857.                        fill="#FAFAFA" />
  858.                    <path
  859.                        d="M213.671 290.307L209.653 326.023L219.245 331.586V293.523M213.671 290.307C214.469 289.343 216.7 287.416 219.245 287.416C221.79 287.416 223.857 289.343 224.573 290.307L219.245 293.523M213.671 290.307L216.458 291.915L219.245 293.523"
  860.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  861.                    <path fill-rule="evenodd" clip-rule="evenodd"
  862.                        d="M224.636 290.41L219.244 293.489L219.245 331.586L228.836 326.023L224.636 290.41Z"
  863.                        fill="#DFE2EA" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  864.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  865.                        d="M413.499 228.376L416.667 228.272L426.91 233.196L474.418 225.377C474.418 225.377 479.918 224.943 479.427 221.148C478.969 217.612 473.261 217.768 473.261 217.768L425.753 218.042L416.37 224.383L413.289 224.618L410.665 226.749L413.499 228.376Z"
  866.                        fill="#14295E" />
  867.                    <path fill-rule="evenodd" clip-rule="evenodd"
  868.                        d="M413.558 228.049V218.639L415.985 217.219V226.629L413.558 228.049Z" fill="#DFE2EA"
  869.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  870.                    <path fill-rule="evenodd" clip-rule="evenodd"
  871.                        d="M413.558 228.049V218.639L411.13 217.219V226.629L413.558 228.049Z" fill="#FAFAFA"
  872.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  873.                    <path fill-rule="evenodd" clip-rule="evenodd"
  874.                        d="M407.985 181.502L410.771 183.111L413.558 184.719V222.781L403.967 217.218L407.985 181.502Z"
  875.                        fill="#FAFAFA" />
  876.                    <path
  877.                        d="M407.985 181.502L403.967 217.218L413.558 222.781V184.719M407.985 181.502C408.782 180.538 411.013 178.611 413.558 178.611C416.103 178.611 418.17 180.538 418.886 181.502L413.558 184.719M407.985 181.502L410.771 183.111L413.558 184.719"
  878.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  879.                    <path fill-rule="evenodd" clip-rule="evenodd"
  880.                        d="M418.949 181.606L413.558 184.684L413.558 222.781L423.149 217.218L418.949 181.606Z"
  881.                        fill="#DFE2EA" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  882.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  883.                        d="M165.014 176.816L168.181 176.712L178.424 181.636L225.932 173.817C225.932 173.817 231.432 173.382 230.941 169.587C230.483 166.051 224.775 166.208 224.775 166.208L177.267 166.481L167.884 172.822L164.804 173.057L162.179 175.188L165.014 176.816Z"
  884.                        fill="#14295E" />
  885.                    <path fill-rule="evenodd" clip-rule="evenodd"
  886.                        d="M165.072 176.489V167.079L167.499 165.658V175.068L165.072 176.489Z" fill="#DFE2EA"
  887.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  888.                    <path fill-rule="evenodd" clip-rule="evenodd"
  889.                        d="M165.072 176.489V167.079L162.645 165.658V175.068L165.072 176.489Z" fill="#FAFAFA"
  890.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  891.                    <path fill-rule="evenodd" clip-rule="evenodd"
  892.                        d="M159.499 129.942L162.285 131.55L165.072 133.158V171.221L155.481 165.658L159.499 129.942Z"
  893.                        fill="#FAFAFA" />
  894.                    <path
  895.                        d="M159.499 129.942L155.481 165.658L165.072 171.221V133.158M159.499 129.942C160.296 128.978 162.527 127.05 165.072 127.05C167.617 127.05 169.684 128.978 170.4 129.942L165.072 133.158M159.499 129.942L162.285 131.55L165.072 133.158"
  896.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  897.                    <path fill-rule="evenodd" clip-rule="evenodd"
  898.                        d="M170.463 130.045L165.072 133.124L165.072 171.221L174.663 165.658L170.463 130.045Z"
  899.                        fill="#DFE2EA" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  900.                    <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd"
  901.                        d="M321.48 279.087L324.648 278.983L334.891 283.907L382.399 280.28L394.951 271.659L381.242 265.125L333.734 268.752L324.351 275.093L321.27 275.328L318.646 277.459L321.48 279.087Z"
  902.                        fill="#14295E" />
  903.                    <path fill-rule="evenodd" clip-rule="evenodd"
  904.                        d="M321.539 278.76V269.35L323.966 267.929V277.339L321.539 278.76Z" fill="#DFE2EA"
  905.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  906.                    <path fill-rule="evenodd" clip-rule="evenodd"
  907.                        d="M321.539 278.76V269.35L319.111 267.929V277.339L321.539 278.76Z" fill="#FAFAFA"
  908.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  909.                    <path fill-rule="evenodd" clip-rule="evenodd"
  910.                        d="M331.13 233.248L321.539 238.752L311.947 233.248L321.539 227.744L331.13 233.248Z"
  911.                        fill="#FAFAFA" stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  912.                    <path fill-rule="evenodd" clip-rule="evenodd"
  913.                        d="M311.947 233.248L321.539 238.752V273.492L311.947 267.929V233.248Z" fill="#FAFAFA"
  914.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  915.                    <path fill-rule="evenodd" clip-rule="evenodd"
  916.                        d="M331.13 233.248L321.539 238.752V273.492L331.13 267.929V233.248Z" fill="#DFE2EA"
  917.                        stroke="#14295E" stroke-linecap="round" stroke-linejoin="round" />
  918.                    <path
  919.                        d="M252.059 71.3875C252.232 71.4875 252.318 71.6188 252.316 71.7497C252.314 71.8775 252.228 72.0049 252.059 72.1025L221.4 89.7127C221.058 89.9101 220.504 89.9101 220.162 89.7127L201.715 79.0621C201.568 78.9771 201.484 78.8694 201.463 78.7585C201.436 78.6118 201.52 78.4596 201.715 78.3472L232.374 60.737C232.716 60.5396 233.27 60.5396 233.612 60.737L252.059 71.3875Z"
  920.                        fill="#FAFAFA" />
  921.                    <path
  922.                        d="M201.463 78.7585C201.484 78.8694 201.568 78.9771 201.715 79.0621L220.162 89.7127C220.504 89.9101 221.058 89.9101 221.4 89.7127L252.059 72.1025C252.228 72.0049 252.314 71.8775 252.316 71.7497M201.463 78.7585C201.436 78.6118 201.52 78.4596 201.715 78.3472L232.374 60.737C232.716 60.5396 233.27 60.5396 233.612 60.737L252.059 71.3875C252.232 71.4875 252.318 71.6188 252.316 71.7497M201.463 78.7585L201.632 80.5723C201.64 80.6948 201.725 80.8159 201.887 80.9095L220.335 91.56C220.677 91.7575 221.231 91.7575 221.573 91.56L252.232 73.9498C252.399 73.8537 252.484 73.7284 252.488 73.6025L252.316 71.7497"
  923.                        stroke="#14295E" />
  924.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  925.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 242.441 70.0153)" fill="#8994AF" />
  926.                    <rect width="10.2289" height="1.36386" rx="0.681928"
  927.                        transform="matrix(-0.866025 0.5 -0.866025 -0.5 240.088 68.657)" fill="#8994AF" />
  928.                    <path
  929.                        d="M213.35 74.1034C214.594 73.3848 216.166 72.8776 217.885 72.6395C219.605 72.4014 221.404 72.442 223.078 72.7565C224.751 73.0711 226.232 73.647 227.353 74.4189C228.473 75.1908 229.188 76.1276 229.416 77.1229L225.398 77.4377C225.268 76.8694 224.86 76.3345 224.22 75.8937C223.581 75.453 222.735 75.1241 221.779 74.9445C220.824 74.7649 219.797 74.7418 218.815 74.8777C217.833 75.0137 216.936 75.3033 216.225 75.7136L213.35 74.1034Z"
  930.                        fill="#8994AF" stroke="#DFE2EA" />
  931.                    <path
  932.                        d="M213.35 74.1034C212.213 74.7596 211.389 75.5693 210.956 76.4551C210.522 77.3409 210.495 78.2733 210.875 79.1633C211.255 80.0533 212.031 80.8712 213.129 81.5391C214.226 82.207 215.608 82.7024 217.143 82.9783C218.678 83.2541 220.315 83.3011 221.897 83.1147C223.48 82.9283 224.955 82.5148 226.182 81.9137C227.409 81.3125 228.348 80.5438 228.908 79.6807C229.467 78.8177 229.63 77.8892 229.38 76.9838L225.378 77.3582C225.521 77.8752 225.428 78.4054 225.108 78.8981C224.789 79.3909 224.253 79.8299 223.552 80.1731C222.851 80.5164 222.009 80.7525 221.105 80.8589C220.202 80.9653 219.267 80.9385 218.391 80.781C217.514 80.6235 216.725 80.3406 216.099 79.9592C215.472 79.5779 215.029 79.1109 214.812 78.6027C214.595 78.0945 214.61 77.5621 214.858 77.0564C215.105 76.5506 215.576 76.0883 216.225 75.7136L213.35 74.1034Z"
  933.                        stroke="#DFE2EA" />
  934.                    <path
  935.                        d="M201.494 78.8361V76.3234L205.276 74.156L208.61 76.1467V78.5864L204.85 80.8384L201.494 78.8361Z"
  936.                        fill="#8994AF" />
  937.                    <path
  938.                        d="M201.494 76.3234L201.494 78.8361L204.85 80.8384M201.494 76.3234L205.276 74.156L208.61 76.1467M201.494 76.3234L204.85 78.3199M204.85 78.3199L208.61 76.1467M204.85 78.3199V80.8384M208.61 76.1467V78.5864L204.85 80.8384"
  939.                        stroke="#14295E" stroke-linejoin="bevel" />
  940.                    <path
  941.                        d="M228.982 62.8302V60.3175L232.764 58.1501L236.097 60.1408V62.5806L232.338 64.8325L228.982 62.8302Z"
  942.                        fill="#8994AF" />
  943.                    <path
  944.                        d="M228.982 60.3175L228.982 62.8302L232.338 64.8325M228.982 60.3175L232.764 58.1501L236.097 60.1408M228.982 60.3175L232.338 62.314M232.338 62.314L236.097 60.1408M232.338 62.314V64.8325M236.097 60.1408V62.5806L232.338 64.8325"
  945.                        stroke="#14295E" stroke-linejoin="bevel" />
  946.                    <path
  947.                        d="M244.859 72.1537V69.641L248.64 67.4736L251.974 69.4643V71.9041L248.214 74.156L244.859 72.1537Z"
  948.                        fill="#8994AF" />
  949.                    <path
  950.                        d="M244.859 69.641L244.859 72.1537L248.214 74.156M244.859 69.641L248.64 67.4736L251.974 69.4643M244.859 69.641L248.214 71.6375M248.214 71.6375L251.974 69.4643M248.214 71.6375V74.156M251.974 69.4643V71.9041L248.214 74.156"
  951.                        stroke="#14295E" stroke-linejoin="bevel" />
  952.                    <path
  953.                        d="M217.441 88.1455V85.6328L221.223 83.4654L224.556 85.4561V87.8958L220.797 90.1478L217.441 88.1455Z"
  954.                        fill="#8994AF" />
  955.                    <path
  956.                        d="M217.441 85.6328L217.441 88.1455L220.797 90.1478M217.441 85.6328L221.223 83.4654L224.556 85.4561M217.441 85.6328L220.797 87.6292M220.797 87.6292L224.556 85.4561M220.797 87.6292V90.1478M224.556 85.4561V87.8958L220.797 90.1478"
  957.                        stroke="#14295E" stroke-linejoin="bevel" />
  958.                    <path
  959.                        d="M204.955 76.2524L226.889 50.1687M226.889 50.1687L232.668 60.0241M226.889 50.1687C225.061 61.7532 221.316 85.1297 220.96 85.9596M226.889 50.1687L248.452 69.3609"
  960.                        stroke="#14295E" />
  961.                </svg>
  962.            </div>
  963.        </div>
  964.        <div class="banner">
  965.            <div id="adfox_158469918412142908"></div>
  966.        </div>
  967.    </div>
  968.    <footer>
  969.        <div class="footer-logo">
  970.            <a href="https://www.nic.ru/">
  971.                <svg width="77" height="40" viewBox="0 0 77 40" fill="none" xmlns="http://www.w3.org/2000/svg">
  972.                    <path
  973.                        d="M28.2465 24.9625C27.741 24.9625 27.2673 24.8999 26.8253 24.7752C26.383 24.65 25.9975 24.4561 25.6675 24.1931C25.3461 23.9345 25.0955 23.6099 24.9153 23.22C24.7349 22.8297 24.6446 22.3785 24.6446 21.866C24.6446 21.2039 24.7711 20.589 25.0242 20.0215C25.277 19.4539 25.6323 18.9579 26.0893 18.5326C26.5383 18.1157 27.0858 17.7859 27.7321 17.5428C28.3786 17.2993 29.0781 17.1779 29.8297 17.1779C30.283 17.1779 30.7324 17.2282 31.1789 17.3292C31.6252 17.4299 32.0395 17.5765 32.4221 17.7689L31.9209 19.7861H31.5841C31.3253 19.4751 31.0315 19.2441 30.7039 19.0928C30.3763 18.9418 30.008 18.8658 29.5988 18.8658C28.8513 18.8658 28.2508 19.1308 27.7981 19.6592C27.3448 20.1872 27.1184 20.8467 27.1184 21.6359C27.1184 22.1844 27.2581 22.5945 27.5374 22.866C27.8169 23.138 28.2508 23.2741 28.8404 23.2741C29.2973 23.2741 29.7142 23.1808 30.0904 22.995C30.4664 22.8087 30.7885 22.6021 31.0571 22.3743H31.3932L30.892 24.3906C30.417 24.5966 30.0001 24.7431 29.642 24.831C29.2835 24.9184 28.8178 24.9625 28.2465 24.9625Z"
  974.                        fill="#14295E" />
  975.                    <path
  976.                        d="M38.2687 20.1277C38.2821 20.0484 38.2917 19.9756 38.2985 19.9103C38.3053 19.8439 38.3087 19.7762 38.3087 19.7054C38.3087 19.3579 38.2001 19.0919 37.9841 18.9071C37.7677 18.7222 37.4565 18.6297 37.0507 18.6297C36.5607 18.6297 36.1487 18.7618 35.8154 19.0257C35.4816 19.2902 35.2296 19.6574 35.0572 20.1277H38.2687ZM36.4514 24.9628C35.1884 24.9628 34.2139 24.6845 33.5267 24.1275C32.8406 23.5706 32.4967 22.8014 32.4967 21.8197C32.4967 21.1491 32.609 20.5333 32.8335 19.9725C33.0578 19.4114 33.3814 18.9186 33.8043 18.493C34.2088 18.0809 34.7151 17.7551 35.322 17.5132C35.9298 17.2725 36.5969 17.1515 37.3235 17.1515C38.4272 17.1515 39.2607 17.3745 39.822 17.8195C40.3829 18.2648 40.6637 18.9218 40.6637 19.79C40.6637 20.0885 40.6334 20.3797 40.5744 20.6651C40.5148 20.9502 40.4366 21.2334 40.3399 21.5136H34.8257V21.665C34.8257 22.1769 35.0067 22.5781 35.3672 22.867C35.7291 23.1563 36.2829 23.3006 37.0281 23.3006C37.5483 23.3006 38.0406 23.2132 38.506 23.038C38.971 22.863 39.376 22.6674 39.7196 22.4533H39.9843L39.5413 24.3517C39.0794 24.5532 38.5933 24.7055 38.0825 24.808C37.5726 24.9113 37.0287 24.9628 36.4514 24.9628Z"
  977.                        fill="#14295E" />
  978.                    <path
  979.                        d="M49.5336 17.6576C49.164 17.3381 48.6463 17.1782 47.9813 17.1782C47.4969 17.1782 47.0536 17.2683 46.6504 17.4469C46.2469 17.627 45.8019 17.8767 45.313 18.1964L45.5088 17.3816L42.2918 17.3822L41.9284 18.9389H42.7574L41.4071 24.7585H43.7968L45.0033 19.5299C45.3113 19.3678 45.5885 19.2467 45.8353 19.165C46.0816 19.0842 46.2997 19.0436 46.4891 19.0436C46.8764 19.0436 47.1424 19.1092 47.2877 19.2403C47.433 19.3724 47.5058 19.5801 47.5058 19.8648C47.5058 20.0313 47.4881 20.2116 47.4526 20.4036C47.4179 20.5962 47.3695 20.8285 47.3084 21.0996L46.4657 24.7585H48.8709L49.9766 19.9567C50.0156 19.7908 50.045 19.6308 50.0621 19.477C50.0795 19.3239 50.088 19.1813 50.088 19.05C50.088 18.4414 49.9031 17.9771 49.5336 17.6576Z"
  980.                        fill="#14295E" />
  981.                    <path
  982.                        d="M62.0772 20.1277C62.09 20.0484 62.1 19.9756 62.1066 19.9103C62.1134 19.8439 62.117 19.7762 62.117 19.7054C62.117 19.3579 62.0086 19.0919 61.792 18.9071C61.576 18.7222 61.2647 18.6297 60.8585 18.6297C60.3684 18.6297 59.9568 18.7618 59.6236 19.0257C59.2903 19.2902 59.0381 19.6574 58.8651 20.1277H62.0772ZM60.2599 24.9628C58.9965 24.9628 58.022 24.6845 57.3352 24.1275C56.6488 23.5706 56.3046 22.8014 56.3046 21.8197C56.3046 21.1491 56.4171 20.5333 56.6414 19.9725C56.8659 19.4114 57.1895 18.9186 57.6123 18.493C58.0171 18.0809 58.523 17.7551 59.1305 17.5132C59.738 17.2725 60.4046 17.1515 61.1312 17.1515C62.2357 17.1515 63.0688 17.3745 63.6301 17.8195C64.1914 18.2648 64.4717 18.9218 64.4717 19.79C64.4717 20.0885 64.4417 20.3797 64.3823 20.6651C64.3233 20.9502 64.2447 21.2334 64.1477 21.5136H58.6338V21.665C58.6338 22.1769 58.8144 22.5781 59.1759 22.867C59.5376 23.1563 60.0908 23.3006 60.8361 23.3006C61.3563 23.3006 61.849 23.2132 62.3139 23.038C62.7795 22.863 63.1843 22.6674 63.5279 22.4533H63.7924L63.3498 24.3517C62.8875 24.5532 62.4012 24.7055 61.891 24.808C61.3802 24.9113 60.8368 24.9628 60.2599 24.9628Z"
  983.                        fill="#14295E" />
  984.                    <path
  985.                        d="M71.4732 19.6349H71.2627C71.1569 19.5996 71.008 19.5736 70.8146 19.5564C70.6216 19.5388 70.4307 19.5294 70.2417 19.5294C69.9295 19.5294 69.6289 19.553 69.3392 19.5986C69.0491 19.6448 68.7506 19.7176 68.4439 19.8188L67.2929 24.7585H64.9024L66.62 17.3814H69.0113L68.7591 18.4656C69.2067 18.1372 69.6534 17.8701 70.0997 17.6639C70.5451 17.4584 70.9946 17.3553 71.4468 17.3553C71.5303 17.3553 71.6238 17.3576 71.7267 17.3619C71.8302 17.3663 71.9214 17.3729 72 17.3814L71.4732 19.6349Z"
  986.                        fill="#14295E" />
  987.                    <path
  988.                        d="M55.0901 17.3817L55.5768 15.2732H53.1936L52.7053 17.3817H51.7269L51.3635 18.9388H52.3658L51.0178 24.7588H53.401C53.4155 24.6992 53.4277 24.6392 53.4419 24.5793L54.7486 18.9388H56.335L56.696 17.3817H55.0901Z"
  989.                        fill="#14295E" />
  990.                    <path
  991.                        d="M8.46058 18.9006C8.27276 18.7784 7.99501 18.7175 7.62847 18.7175H6.69551L6.24012 20.6734H7.1679C7.66841 20.6734 8.05617 20.572 8.33077 20.3688C8.60577 20.1653 8.74309 19.883 8.74309 19.5228C8.74309 19.23 8.64946 19.0224 8.46058 18.9006ZM17.9788 21.9973C17.7405 23.0049 17.336 23.7357 16.7665 24.1903C16.1966 24.6449 15.3716 24.8725 14.2915 24.8725C13.3288 24.8725 12.6005 24.7005 12.1063 24.3566C11.612 24.0125 11.3653 23.4922 11.3653 22.794C11.3653 22.6511 11.3763 22.5058 11.3991 22.359C11.422 22.2122 11.4466 22.0785 11.4732 21.958L12.5233 17.4498H14.4247L13.3777 21.9627C13.3542 22.0541 13.3357 22.1547 13.3207 22.2637C13.3053 22.3725 13.2984 22.4635 13.2984 22.535C13.2984 22.8414 13.391 23.0741 13.5766 23.2319C13.7613 23.3899 14.0681 23.4693 14.4969 23.4693C14.9135 23.4693 15.2497 23.3547 15.5063 23.1267C15.7631 22.8986 15.9477 22.5435 16.0594 22.0609L17.134 17.4498H19.0389L17.9788 21.9973ZM10.4768 24.7308H8.37179L6.99508 22.0609H5.9358L5.31507 24.7308H3.43009L5.1176 17.4498H7.97113C8.8654 17.4498 9.55588 17.6002 10.0443 17.9017C10.5321 18.2033 10.7757 18.6643 10.7757 19.2831C10.7757 19.8671 10.5974 20.3573 10.2404 20.7548C9.88371 21.1528 9.39961 21.4527 8.78675 21.6549L10.4768 24.7308ZM11.3147 10C5.06543 10 0 15.0451 0 21.2682C0 27.4917 5.06543 32.5366 11.3147 32.5366C17.5638 32.5366 22.6304 27.4917 22.6304 21.2682C22.6304 15.0451 17.5638 10 11.3147 10Z"
  992.                        fill="#14295E" />
  993.                    <path
  994.                        d="M48.7376 30.7269C57.0964 30.597 64.2046 31.6619 71.3535 33.3558C65.1804 30.5893 58.491 28.7995 50.8697 28.3268C49.1898 28.2226 47.4646 28.1825 45.6897 28.2099C31.3224 28.4327 18.5609 33.0098 10.2189 40C20.1777 34.5747 33.7415 30.9585 48.7376 30.7269Z"
  995.                        fill="#EF3F23" />
  996.                </svg>
  997.            </a>
  998.        </div>
  999.        <div class="footer-links">
  1000.            <a href="https://www.nic.ru/catalog/domains/">Регистрация доменов</a>
  1001.            <a href="https://www.nic.ru/catalog/hosting/vds-vps/">VPS/VDS хостинг</a>
  1002.            <a href="https://www.nic.ru/catalog/hosting/">Хостинг для сайтов</a>
  1003.            <a href="https://www.nic.ru/catalog/hosting/dedicated/">Аренда сервера</a>
  1004.            <a href="https://www.nic.ru/catalog/hosting/shared/">Виртуальный хостинг</a>
  1005.            <a href="https://www.nic.ru/catalog/ssl/">SSL-сертификаты</a>
  1006.        </div>
  1007.        <p class="footer-text">
  1008.            &#169; РђРћ «РСР?Ц» (RU-CENTER),
  1009.            <script>document.write(new Date().getFullYear())</script>
  1010.        </p>
  1011.    </footer>
  1012.    <script>
  1013.        window.Ya.adfoxCode.create({
  1014.            ownerId: 260122,
  1015.            containerId: 'adfox_158469918412142908',
  1016.            params: {
  1017.                pp: 'i',
  1018.                ps: 'dyeo',
  1019.                p2: 'fufs',
  1020.                puid1: ''
  1021.            }
  1022.        });
  1023.    </script>
  1024. </body>
  1025. </html>
  1026.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda