Gant
Отображает диаграмму Ганта и данные в различном представлении, на основе которых строится диаграмма
Компонент работает с данными в табличном виде, календарем и диаграммой Ганта. Информация о компоненте содержится на сайте документации Платформы.
<Gant
  Visible-var="viewModel"
  GetLocalization={() => {
    /* 
     * для получения запрашиваемого ключа от словаря
     * можно воспользоваться:
     *   глобальной переменной $event
     *   или функцией getEvent() 
     */
    return getLocalization("Gantt." + $event);
  }}
  Pallete-var="Pallete"
  MainGridId-var="MainGridId"
  RelatedSources-var="RelatedSources"
  SelectedSources={[]}
  OnSelectedSourcesChanged={selectedSources => {
    console.log('selectedSources:', selectedSources);
  }}
  GraphSettings-var="graphSettings"
  OnError={(error) => {
     console.error(error);
  }}
    
/>
Свойства
| Имя | Описание | Тип | Значение по умолчанию | Возможные значения | 
|---|---|---|---|---|
| GetLocalization | Метод получения значения из словаря по ключу | undefined | ||
| GraphSettings | Список свойств компонента для управления функциональными возможностями всех графиков | object | ||
| MainGridId | Свойство из набора свойств GraphSettings для главного графика | string | ||
| OnError | Обработчик ошибок компонента | undefined | ||
| OnSelectedSourcesChanged | Обработчик изменения списка отображаемых источников данных | undefined | ||
| Pallete | Общие параметры компонента, например, цветовая палитра, сообщения, локаль | object | ||
| RelatedSources | Список свойств из набора свойств GraphSettings для второстепенных графиков | array | ||
| SelectedSources | Список свойств из набора свойств GraphSettings для отображаемых второстепенных графиков | array | 
Примеры
Скрипты:
const graphSettings = {
  's003': {
      'gridId': 's003',
      'editable': true,
      'calendarEditable': false,
      'clipboard': true,
      'title': 'Random',
      'maxDeepLevel': 6,
      'wbsEnabled': true,
      'arrowsEnabled': true,
      'sortEnabled': true,
      'showCompletionPercentageLabel': true,
      'groupingEnabled': false,
      'groupingVisible': true,
      'gantVisible': false,
      'gantEnabled': true,
      'calendarEnabled': true,
      'calendarVisible': false,
      'gantStartDate': '2022-08-01T00:00:00',
      'gantFinishDate': '2025-09-31T00:00:00',
      'calendarStartDate': '2021-05-18T21:00:00.000Z',
      'calendarFinishDate': '2021-07-24T21:00:00.000Z',
      'nowLineDate': '2021-01-18T00:00:00+03:00',
      onInit: ({ setRowSelectionState, addRow }) => {
        setState({addRow});
      },
      customActionsColumn: {
        visible: true,
        buttons: [
          {
            icon: 'person',
            title: 'пустой роу',
            onClick: async params => {
              const addRow = getValue('addRow', {byRef: true});
              const randomID = Math.floor(Math.random() * (100 - 25 + 1) + 25);
              addRow && addRow({
                pk: {
                  id: randomID,
                  version: 0
                },
                structure: {
                  permissions: 1
                },
                system: {
                  isNewRow: true,
                  parentId: params.item.pk.id
                },
                data: {
                  attrs: {
                  }
                }
              });
              setState({
                lastActiveRowId: params.item.pk.id,
                newRowID: randomID
              });
            },
          }
        ]
      },
      'columnWidths': {
        'id': 230,
        'Duration': 210,
        'Task_name': 230,
        'Start_date': 145,
        'End_date': 150,
        'Percent_complete': 155,
        'Actual_costs': 160,
        'Planned_costs': 150,
        'Responsible': 175,
        'English_version': 140,
        'KKS_documents': 125,
        'WBS_structural_code': 125,
        'Indicator': 155,
        'Indicator_2': 155,
        'Predecessors': 200,
      },
      'endpointData': {
        'onEditTransactionUpdate': callback => {
          setState({respondToEdit: callback});
        },
        'editTransaction': ({ values, requestId }) => {
          console.log({ values, requestId })
          const ColumnType = {
            System: 'system',
            Number: 'number',
            Actions: 'actions',
            Date: 'date',
            String: 'string',
            Boolean: 'boolean',
            Indicator: 'indicator',
            Percentage: 'percentage',
            Enumeration: 'enumeration',
          };
          const validators = {
            [ColumnType.String]: v =>
              v.startsWith('f') ? 'строка не может начинаться с f' : null,
            [ColumnType.Number]: v =>
              v < 0 ? 'число не может быть отрицательным' : null,
            [ColumnType.Percentage]: v =>
              v > 100 ? 'процент не может быть больше 100' : null,
            [ColumnType.Date]: v =>
              new Date(v) < Date.now()
                ? 'дата должна быть позже сегодня'
                : null,
            [ColumnType.Boolean]: v =>
              !v ? 'допустимо только значение "да"' : null,
            [ColumnType.Enumeration]: v =>
              !v ? 'нельзя выбрать первое значение' : null,
          };
          const respondToEdit = getValue('respondToEdit', {byRef: true}); //{byRef: true} передавать обязательно
          console.log({respondToEdit})
          const errors = values
            .map(c => ({
              rowId: c.rowId,
              columnId: c.columnId,
              metricsDataId: c.metricsDataId,
              date: c.date,
              scale: c.scale,
              error:
                  validators[c.columnType] && validators[c.columnType](c.value),
              }))
              .filter(c => c.error);
          if (respondToEdit) {
              getValue('respondToEdit', {byRef: true})({ requestId, errors });
          }
            const computedRows = getValue("ROWS");
            const newRow = computedRows[0];
            const lastRowId = (+computedRows[computedRows.length - 1].id + 1).toString();
            newRow.data.graph = {};
            newRow.data.metrics = {};
            newRow.data.attrs = {};
            values.forEach((item) => {
              newRow.data.attrs[item.columnId] = item.value
            });
            newRow.data.attrs.id = lastRowId;
            newRow.id = lastRowId;
            newRow.isMatch = true;
            newRow.version = 1;
            newRow.data.attrs.permissions = 1;
            newRow.data.attrs.parentId = getValue("lastActiveRowId");
            const udpatedRowsValue = getValue("updateRows", {byRef: true});
            if (getValue("newRowID") === values[0].rowId) {
              setState({ROWS: [...ROWS, newRow]});
              udpatedRowsValue({[lastRowId]: 1});
            }
        },
        fetch(params) {
          const ROWS = getValue("ROWS");
          const responses = {
              getCount: ROWS.length,
              getIds: ROWS.map(r => ({
                  id: r.id,
                  version: r.version,
              })),
              getData: ROWS.map(r => ({
                  id: r.id,
                  version: r.version,
                  data: { attrs: r.data.attrs },
              })),
              getFilterState: ROWS.map((r, i) => ({
                id: r.id,
                version: r.version,
                isMatch: Boolean(i % 2),
              })),
              getMetrics: ROWS.map((r) => ({
                id: r.id,
                version: r.version,
                data: { metrics: r.data.metrics },
              })),
              getGraph: ROWS.map((r) => ({
                id: r.id,
                version: r.version,
                data: { graph: r.data.graph },
              })),
              getRelations: RELATIONS,
          };
          return responses[params.requestType];
        },
        edit({rowId, columnId, value}) {
            console.log({
                rowId,
                columnId,
                value,
            });
            const row = ROWS.find(r => r.id === rowId);
            row.attrs[columnId] = value;
            return Promise.resolve(row);
        },
        subscribe: fn => {
          setState({updateRows: fn})
        },
      },
      
      'headers': {
          'id': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "number", 'placeholder': "колонка number",
            'title': getLocalization("Gantt.Id"),
            'order': 1,
            'isVisibleByDefault': false,
            'style': null,
          },
          'Task_name': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.TaskName"),
            'order': 2,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Duration': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.Duration"),
            'order': 3,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Start_date': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "date", 'placeholder': "колонка date",
            'title': getLocalization("Gantt.StartDate"),
            'order': 4,
            'isVisibleByDefault': true,
            'style': null,
          },
          'End_date': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "date", 'placeholder': "колонка date",
            'title': getLocalization("Gantt.EndDate"),
            'order': 5,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Percent_complete': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "percentage", 'placeholder': "колонка percentage",
            'title': getLocalization("Gantt.PercentComplete"),
            'order': 6,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Actual_costs': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "number", 'placeholder': "колонка number",
            'title': getLocalization("Gantt.ActualCosts"),
            'order': 7,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Planned_costs': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "number", 'placeholder': "колонка number",
            'title': getLocalization("Gantt.Planned_costs"),
            'order': 8,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Responsible': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.Responsible"),
            'order': 9,
            'isVisibleByDefault': true,
            'style': null,
          },
          'English_version': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.EnglishVersion"),
            'order': 10,
            'isVisibleByDefault': true,
            'style': null,
          },
          'KKS_documents': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.KKSDocuments"),
            'order': 11,
            'isVisibleByDefault': true,
            'style': null,
          },
          'WBS_structural_code': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.WBSStructuralCode"),
            'order': 12,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Indicator': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "indicator", 'placeholder': "колонка indicator",
            'title': getLocalization("Gantt.Indicator1"),
            'order': 13,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Indicator_2': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "indicator", 'placeholder': "колонка indicator",
            'title': getLocalization("Gantt.Indicator2"),
            'order': 14,
            'isVisibleByDefault': true,
            'style': null,
          },
          'Predecessors': {
            'group': "", cellActions: { edit: { mask: 1 } },
            'type': "string", 'placeholder': "колонка string",
            'title': getLocalization("Gantt.Predecessors"),
            'order': 15,
            'isVisibleByDefault': false,
            'style': null,
          },
      },
      'repeatedCalendarHeaders': {
          'plannedPhysicalVolume': {
              'group': 'План',
              'isVisibleByDefault': true,
              'order': 1,
              'title': 'ФО',
              'titleInGroup': 'План',
              'tooltip': 'ФО',
              'type': 'number',
          },
          'actualPhysicalVolume': {
              'group': 'Факт',
              'isVisibleByDefault': true,
              'order': 2,
              'title': 'ФО',
              'titleInGroup': 'Факт',
              'tooltip': 'ФО',
              'type': 'number',
          },
          'plannedUnitsPerTime': {
              'group': 'План',
              'isVisibleByDefault': true,
              'order': 3,
              'title': 'Тр',
              'titleInGroup': 'План',
              'tooltip': 'Тр',
              'type': 'number',
          },
          'actualUnitsPerTime': {
              'group': 'Факт',
              'isVisibleByDefault': true,
              'order': 4,
              'title': 'Тр',
              'titleInGroup': 'Факт',
              'tooltip': 'Тр',
              'type': 'number',
          },
          'plannedLaborUnits': {
              'group': 'План',
              'isVisibleByDefault': true,
              'order': 5,
              'title': 'Кол-во',
              'titleInGroup': 'План',
              'tooltip': 'Кол-во',
              'type': 'number',
          },
          'actualLaborUnits': {
              'group': 'Факт',
              'isVisibleByDefault': true,
              'order': 6,
              'title': 'Кол-во',
              'titleInGroup': 'Факт',
              'tooltip': 'Кол-во',
              'type': 'number',
          },
      },
      'filterOperations': {
          'date': {
              'between': true,
              'greaterThan': false,
              'lessThan': false,
              'equalTo': false,
          },
          'number': {
              'between': false,
              'greaterThan': true,
              'lessThan': true,
              'equalTo': true,
          },
          'percentage': {
              'between': false,
              'greaterThan': true,
              'lessThan': true,
              'equalTo': true,
          },
          'string': {
              'includes': false,
              'matches': true,
              'startsWith': true,
              'endsWith': true,
          },
      },
  },
};
const viewModel = {
  'model': {
      'primaryTableId': 's003',
      'colors': {
          'black': {
            'title': "Черный",
            'hexCode': "#000000",
          },
          'blue': {
            'title': "Синий",
            'hexCode': "#5C90F5",
          },
          'red': {
            'title': "Красный",
            'hexCode': "#F55C5C",
          },
          'green': {
            'title': "Зеленый",
            'hexCode': "#417971",
          },
          'yellow': {
            'title': "Желтый",
            'hexCode': "#DAB920",
          },
        },
      'indicators': {
          Indicator: {
            'title': "",
            'shapeId': 'shape6',
            'rules': {
              'ir001': {
                'title': "Overdue work",
                'colorId': 'red',
                order: 0,
              },
            },
          },
          Indicator_2: {
            'title': "",
            'shapeId': 'shape8',
            'rules': {
              'ir002': {
                'title': "A/P > %",
                'colorId': 'yellow',
                order: 0,
              },
              'ir003': {
                'title': "Actual > Planned",
                'colorId': 'red',
                order: 0,
              },
            },
          },
        },
        'shapes': {
            'shape2': {
                'contentSvg': '<svg width= "14 " height= "14 " viewBox= "0 0 14 14 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M14 7C14 8.38447 13.5895 9.73785 12.8203 10.889C12.0511 12.0401 10.9579 12.9373 9.67878 13.4672C8.3997 13.997 6.99223 14.1356 5.63437 13.8655C4.2765 13.5954 3.02922 12.9287 2.05025 11.9497C1.07128 10.9708 0.4046 9.7235 0.134503 8.36563C-0.135594 7.00777 0.00302985 5.6003 0.532843 4.32122C1.06266 3.04213 1.95986 1.94888 3.11101 1.17971C4.26215 0.410543 5.61553 -1.65096e-08 7 0V7H14Z " /> </svg>',
            },
            'shape3': {
                'contentSvg': '<svg width= "16 " height= "15 " viewBox= "0 0 16 15 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M7.41222 0.427051C7.7627 0.172407 8.2373 0.172407 8.58779 0.427051L15.0207 5.10081C15.3712 5.35546 15.5178 5.80682 15.3839 6.21885L12.9268 13.7812C12.7929 14.1932 12.409 14.4721 11.9757 14.4721H4.02426C3.59103 14.4721 3.20708 14.1932 3.0732 13.7812L0.616061 6.21885C0.482187 5.80682 0.628846 5.35546 0.979333 5.10081L7.41222 0.427051Z " /> </svg>',
            },
            'shape4': {
                'contentSvg': '<svg width= "16 " height= "16 " viewBox= "0 0 16 16 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M6.10526 6.10526V1C6.10526 0.447715 6.55298 0 7.10526 0H8.89474C9.44702 0 9.89474 0.447715 9.89474 1V6.10526H15C15.5523 6.10526 16 6.55298 16 7.10526V8.89474C16 9.44702 15.5523 9.89474 15 9.89474H9.89474V15C9.89474 15.5523 9.44702 16 8.89474 16H7.10526C6.55298 16 6.10526 15.5523 6.10526 15V9.89474H1C0.447715 9.89474 0 9.44702 0 8.89474V7.10526C0 6.55298 0.447715 6.10526 1 6.10526H6.10526Z " /> </svg>',
            },
            'shape5': {
                'contentSvg': '<svg width= "10 " height= "16 " viewBox= "0 0 10 16 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M10 11C10 13.7614 7.76142 16 5 16C2.23858 16 0 13.7614 0 11L0 0L10 0L10 11Z " /> </svg>',
            },
            'shape6': {
                'contentSvg': '<svg width= "10 " height= "16 " viewBox= "0 0 10 16 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M9.92556 6.16895C9.89649 6.11765 9.85434 6.07498 9.80339 6.04529C9.75244 6.0156 9.69453 5.99995 9.63556 5.99995H5.2689L6.00098 0.406369C6.00884 0.331508 5.99127 0.256181 5.95111 0.192517C5.91095 0.128853 5.85053 0.0805566 5.77959 0.0554039C5.70864 0.0302511 5.6313 0.0297056 5.56 0.0538553C5.48871 0.0780049 5.42762 0.125444 5.38657 0.188536L0.0762314 9.49204C0.0451781 9.54254 0.0281585 9.60042 0.0269274 9.6597C0.0256962 9.71898 0.0402979 9.77751 0.0692273 9.82926C0.0981566 9.88102 0.140367 9.92412 0.191505 9.95412C0.242643 9.98413 0.300858 9.99995 0.360148 9.99995H4.66156L4.0814 15.602C4.0757 15.6766 4.09511 15.7509 4.13655 15.8132C4.17799 15.8755 4.23907 15.9222 4.31008 15.9457C4.38108 15.9693 4.45794 15.9685 4.52841 15.9433C4.59888 15.9182 4.65892 15.8702 4.69898 15.807L9.92157 6.50454C9.95185 6.45395 9.96818 6.39624 9.96888 6.33729C9.96958 6.27833 9.95464 6.22025 9.92556 6.16895Z " /> </svg>',
            },
            'shape7': {
                'contentSvg': '<svg width= "14 " height= "12 " viewBox= "0 0 14 12 " fill= "none " xmlns= "http://www.w3.org/2000/svg "> <path d= "M3.85267 0.677861C3.99059 0.272548 4.37123 0 4.79936 0H9.75C10.1944 0 10.5856 0.293333 10.71 0.72L13.6267 10.72C13.8133 11.36 13.3333 12 12.6667 12H1.39659C0.711404 12 0.22917 11.3265 0.449894 10.6779L3.85267 0.677861Z " /> </svg>',
            },
            'shape8': {
              'contentSvg': '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M5.19978 2.18107C5.09331 1.00984 6.01551 0 7.19157 0H8.81144C9.9875 0 10.9097 1.00984 10.8032 2.18107L10.1826 9.00821C10.08 10.1363 9.13421 11 8.0015 11C6.86879 11 5.92298 10.1363 5.82043 9.00821L5.19978 2.18107Z" fill="black"/> <path d="M10 14C10 15.1046 9.10457 16 8 16C6.89543 16 6 15.1046 6 14C6 12.8954 6.89543 12 8 12C9.10457 12 10 12.8954 10 14Z" fill="black"/> </svg>',
          },
        },
    },
};
const pallete = {
  stripeWidth: 20,
  // Как отображать в ячейках данные типа boolean
  boolValues: {
      trueValue: 'Да',
      falseValue: 'Нет',
  },
  // Имя сss-класса, который вешается на каждую ячейку
  cellClassName: 'fix_important_styles_override',
  // Подстрока в Pallete.indicatorsEnum[shapeId].contentSvg, которую надо заменять на цвет индикатора
  colorPlaceHolder: '#417971',
  // Основной цвет шрифта на кнопках
  fontMainColor: '#000',
  // Второстепенный цвет шрифта на кнопках
  fontSecondColor: '#103D70',
  // Цвет активной строки
  activeRowColor: '#EBEDFF',
  // Цвет полоски, отражающей факт на диаграмме
  lineFactColor: '#D3E0EE',
  // Цвет вертикальной линии на диаграмме
  nowLineColor: '#5C90F5',
  // Цвет родительской строки верхнего уровня
  deepLevelColor: [
      [
          78,
          78,
          228,
      ],
  ],
  // Словарь с параметрами цветов индикаторов
  colors: viewModel.model.colors,
  // Словарь с параметрами индикаторов
  indicators: viewModel.model.indicators,
  // Параметры для типа данных enum (в UTS этот тип не используется)
  enum: [
      {
          rgb: '#5C90F5',
          title: 'Голубой',
      },
  ],
  // Словарь форм индикаторов
  indicatorsEnum: viewModel.model.shapes,
  // Как отображать название типа колонки
  typesMap: {
      bool: 'Логические значения',
      boolean: 'Логические значения',
      integer: 'Числовые данные',
      number: 'Числовые данные',
      double: 'Числовые данные (double)',
      date: 'Даты',
      string: 'Текстовые данные',
      indicator: 'Индикаторы',
      userfield: 'Пользовательские поля',
      aggregation: 'Аггрегированные данные',
  },
};
const ROWS = [
  {
    'id': "3869",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2025-02-24T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2025-02-24T00:00:00.000Z",
        'completionPercentage': 61,
      },
      'attrs': {
        'id': "3869",
        'Task_name': "20ABF Сооружение для блочных трансформаторов",
        'Duration': "575д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2025-02-24T00:00:00.000Z",
        'Percent_complete': 61,
        'Actual_costs': 350942,
        'Planned_costs': 274675,
        'Responsible': "Contractor",
        'English_version': "20ABF Generator transformer structure",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF",
        'Number_in_structure': "1.3.2.4",
        'parentId': null,
        'wbsId': null,
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {
        '2021-05-19': {
            'plannedPhysicalVolume': { 'value': 593 },
            'actualPhysicalVolume': { 'value': 934 },
            'plannedUnitsPerTime': { 'value': 918 },
            'actualUnitsPerTime': { 'value': 983 },
            'plannedLaborUnits': { 'value': 430 },
            'actualLaborUnits': { 'value': 823 },
        },
        '2021-05-20': {
            'plannedPhysicalVolume': { 'value': 892 },
            'actualPhysicalVolume': { 'value': 986 },
            'plannedUnitsPerTime': { 'value': 951 },
            'actualUnitsPerTime': { 'value': 887 },
            'plannedLaborUnits': { 'value': 163 },
            'actualLaborUnits': { 'value': 422 },
        },
        '2021-05-21': {
            'plannedPhysicalVolume': { 'value': 313 },
            'actualPhysicalVolume': { 'value': 328 },
            'plannedUnitsPerTime': { 'value': 431 },
            'actualUnitsPerTime': { 'value': 344 },
            'plannedLaborUnits': { 'value': 755 },
            'actualLaborUnits': { 'value': 643 },
        },
        '2021-05-22': {
            'plannedPhysicalVolume': { 'value': 149 },
            'actualPhysicalVolume': { 'value': 87 },
            'plannedUnitsPerTime': { 'value': 272 },
            'actualUnitsPerTime': { 'value': 383 },
            'plannedLaborUnits': { 'value': 727 },
            'actualLaborUnits': { 'value': 452 },
        },
        '2021-05-23': {
            'plannedPhysicalVolume': { 'value': 415 },
            'actualPhysicalVolume': { 'value': 573 },
            'plannedUnitsPerTime': { 'value': 988 },
            'actualUnitsPerTime': { 'value': 967 },
            'plannedLaborUnits': { 'value': 785 },
            'actualLaborUnits': { 'value': 241 },
        },
        '2021-05-24': {
            'plannedPhysicalVolume': { 'value': 405 },
            'actualPhysicalVolume': { 'value': 518 },
            'plannedUnitsPerTime': { 'value': 524 },
            'actualUnitsPerTime': { 'value': 737 },
            'plannedLaborUnits': { 'value': 616 },
            'actualLaborUnits': { 'value': 741 },
        },
        '2021-05-25': {
            'plannedPhysicalVolume': { 'value': 488 },
            'actualPhysicalVolume': { 'value': 190 },
            'plannedUnitsPerTime': { 'value': 917 },
            'actualUnitsPerTime': { 'value': 574 },
            'plannedLaborUnits': { 'value': 924 },
            'actualLaborUnits': { 'value': 377 },
        },
      },
    },
  },
  {
    'id': "3870",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3870",
        'Task_name': "Разрешение",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 49,
        'Actual_costs': 247147,
        'Planned_costs': 505382,
        'Responsible': "Contractor",
        'English_version': "Permission",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.PRM",
        'Number_in_structure': "1.3.2.4.1",
        'parentId': "3869",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {
        '2021-05-19': {
            'plannedPhysicalVolume': { 'value': 593 },
            'actualPhysicalVolume': { 'value': 934 },
            'plannedUnitsPerTime': { 'value': 918 },
            'actualUnitsPerTime': { 'value': 983 },
            'plannedLaborUnits': { 'value': 430 },
            'actualLaborUnits': { 'value': 823 },
        },
        '2021-05-20': {
            'plannedPhysicalVolume': { 'value': 892 },
            'actualPhysicalVolume': { 'value': 986 },
            'plannedUnitsPerTime': { 'value': 951 },
            'actualUnitsPerTime': { 'value': 887 },
            'plannedLaborUnits': { 'value': 163 },
            'actualLaborUnits': { 'value': 422 },
        },
        '2021-05-21': {
            'plannedPhysicalVolume': { 'value': 313 },
            'actualPhysicalVolume': { 'value': 328 },
            'plannedUnitsPerTime': { 'value': 431 },
            'actualUnitsPerTime': { 'value': 344 },
            'plannedLaborUnits': { 'value': 755 },
            'actualLaborUnits': { 'value': 643 },
        },
        '2021-05-22': {
            'plannedPhysicalVolume': { 'value': 149 },
            'actualPhysicalVolume': { 'value': 87 },
            'plannedUnitsPerTime': { 'value': 272 },
            'actualUnitsPerTime': { 'value': 383 },
            'plannedLaborUnits': { 'value': 727 },
            'actualLaborUnits': { 'value': 452 },
        },
        '2021-05-23': {
            'plannedPhysicalVolume': { 'value': 415 },
            'actualPhysicalVolume': { 'value': 573 },
            'plannedUnitsPerTime': { 'value': 988 },
            'actualUnitsPerTime': { 'value': 967 },
            'plannedLaborUnits': { 'value': 785 },
            'actualLaborUnits': { 'value': 241 },
        },
        '2021-05-24': {
            'plannedPhysicalVolume': { 'value': 405 },
            'actualPhysicalVolume': { 'value': 518 },
            'plannedUnitsPerTime': { 'value': 524 },
            'actualUnitsPerTime': { 'value': 737 },
            'plannedLaborUnits': { 'value': 616 },
            'actualLaborUnits': { 'value': 741 },
        },
        '2021-05-25': {
            'plannedPhysicalVolume': { 'value': 488 },
            'actualPhysicalVolume': { 'value': 190 },
            'plannedUnitsPerTime': { 'value': 917 },
            'actualUnitsPerTime': { 'value': 574 },
            'plannedLaborUnits': { 'value': 924 },
            'actualLaborUnits': { 'value': 377 },
        },
      },
    },
  },
  {
    'id': "3871",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "3871",
        'Task_name': "Разрешения на сооружения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 72,
        'Actual_costs': 175269,
        'Planned_costs': 244429,
        'Responsible': "Contractor",
        'English_version': "Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.PRM",
        'Number_in_structure': "1.3.2.4.1.1",
        'parentId': "3870",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {
        '2021-05-19': {
            'plannedPhysicalVolume': { 'value': 593 },
            'actualPhysicalVolume': { 'value': 934 },
            'plannedUnitsPerTime': { 'value': 918 },
            'actualUnitsPerTime': { 'value': 983 },
            'plannedLaborUnits': { 'value': 430 },
            'actualLaborUnits': { 'value': 823 },
        },
        '2021-05-20': {
            'plannedPhysicalVolume': { 'value': 892 },
            'actualPhysicalVolume': { 'value': 986 },
            'plannedUnitsPerTime': { 'value': 951 },
            'actualUnitsPerTime': { 'value': 887 },
            'plannedLaborUnits': { 'value': 163 },
            'actualLaborUnits': { 'value': 422 },
        },
        '2021-05-21': {
            'plannedPhysicalVolume': { 'value': 313 },
            'actualPhysicalVolume': { 'value': 328 },
            'plannedUnitsPerTime': { 'value': 431 },
            'actualUnitsPerTime': { 'value': 344 },
            'plannedLaborUnits': { 'value': 755 },
            'actualLaborUnits': { 'value': 643 },
        },
        '2021-05-22': {
            'plannedPhysicalVolume': { 'value': 149 },
            'actualPhysicalVolume': { 'value': 87 },
            'plannedUnitsPerTime': { 'value': 272 },
            'actualUnitsPerTime': { 'value': 383 },
            'plannedLaborUnits': { 'value': 727 },
            'actualLaborUnits': { 'value': 452 },
        },
        '2021-05-23': {
            'plannedPhysicalVolume': { 'value': 415 },
            'actualPhysicalVolume': { 'value': 573 },
            'plannedUnitsPerTime': { 'value': 988 },
            'actualUnitsPerTime': { 'value': 967 },
            'plannedLaborUnits': { 'value': 785 },
            'actualLaborUnits': { 'value': 241 },
        },
        '2021-05-24': {
            'plannedPhysicalVolume': { 'value': 405 },
            'actualPhysicalVolume': { 'value': 518 },
            'plannedUnitsPerTime': { 'value': 524 },
            'actualUnitsPerTime': { 'value': 737 },
            'plannedLaborUnits': { 'value': 616 },
            'actualLaborUnits': { 'value': 741 },
        },
        '2021-05-25': {
            'plannedPhysicalVolume': { 'value': 488 },
            'actualPhysicalVolume': { 'value': 190 },
            'plannedUnitsPerTime': { 'value': 917 },
            'actualUnitsPerTime': { 'value': 574 },
            'plannedLaborUnits': { 'value': 924 },
            'actualLaborUnits': { 'value': 377 },
        },
      },
    },
  },
  {
    'id': "3872",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "3872",
        'Task_name': "Специальные разрешения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 95,
        'Actual_costs': 214329,
        'Planned_costs': 226610,
        'Responsible': "Contractor",
        'English_version': "Special Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.PRM",
        'Number_in_structure': "1.3.2.4.1.2",
        'parentId': "3870",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {
        '2021-05-19': {
            'plannedPhysicalVolume': { 'value': 593 },
            'actualPhysicalVolume': { 'value': 934 },
            'plannedUnitsPerTime': { 'value': 918 },
            'actualUnitsPerTime': { 'value': 983 },
            'plannedLaborUnits': { 'value': 430 },
            'actualLaborUnits': { 'value': 823 },
        },
        '2021-05-20': {
            'plannedPhysicalVolume': { 'value': 892 },
            'actualPhysicalVolume': { 'value': 986 },
            'plannedUnitsPerTime': { 'value': 951 },
            'actualUnitsPerTime': { 'value': 887 },
            'plannedLaborUnits': { 'value': 163 },
            'actualLaborUnits': { 'value': 422 },
        },
        '2021-05-21': {
            'plannedPhysicalVolume': { 'value': 313 },
            'actualPhysicalVolume': { 'value': 328 },
            'plannedUnitsPerTime': { 'value': 431 },
            'actualUnitsPerTime': { 'value': 344 },
            'plannedLaborUnits': { 'value': 755 },
            'actualLaborUnits': { 'value': 643 },
        },
        '2021-05-22': {
            'plannedPhysicalVolume': { 'value': 149 },
            'actualPhysicalVolume': { 'value': 87 },
            'plannedUnitsPerTime': { 'value': 272 },
            'actualUnitsPerTime': { 'value': 383 },
            'plannedLaborUnits': { 'value': 727 },
            'actualLaborUnits': { 'value': 452 },
        },
        '2021-05-23': {
            'plannedPhysicalVolume': { 'value': 415 },
            'actualPhysicalVolume': { 'value': 573 },
            'plannedUnitsPerTime': { 'value': 988 },
            'actualUnitsPerTime': { 'value': 967 },
            'plannedLaborUnits': { 'value': 785 },
            'actualLaborUnits': { 'value': 241 },
        },
        '2021-05-24': {
            'plannedPhysicalVolume': { 'value': 405 },
            'actualPhysicalVolume': { 'value': 518 },
            'plannedUnitsPerTime': { 'value': 524 },
            'actualUnitsPerTime': { 'value': 737 },
            'plannedLaborUnits': { 'value': 616 },
            'actualLaborUnits': { 'value': 741 },
        },
        '2021-05-25': {
            'plannedPhysicalVolume': { 'value': 488 },
            'actualPhysicalVolume': { 'value': 190 },
            'plannedUnitsPerTime': { 'value': 917 },
            'actualUnitsPerTime': { 'value': 574 },
            'plannedLaborUnits': { 'value': 924 },
            'actualLaborUnits': { 'value': 377 },
        },
      },
    },
  },
  {
    'id': "3873",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 40,
      },
      'attrs': {
        'id': "3873",
        'Task_name': "Инжиниринг",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 40,
        'Actual_costs': 112569,
        'Planned_costs': 257423,
        'Responsible': "Contractor",
        'English_version': "Engineering",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.ENG",
        'Number_in_structure': "1.3.2.4.2",
        'parentId': "3869",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {
        '2021-05-19': {
            'plannedPhysicalVolume': { 'value': 518 },
            'actualPhysicalVolume': { 'value': 550 },
            'plannedUnitsPerTime': { 'value': 364 },
            'actualUnitsPerTime': { 'value': 652 },
            'plannedLaborUnits': { 'value': 672 },
            'actualLaborUnits': { 'value': 899 },
        },
        '2021-05-20': {
            'plannedPhysicalVolume': { 'value': 272 },
            'actualPhysicalVolume': { 'value': 238 },
            'plannedUnitsPerTime': { 'value': 137 },
            'actualUnitsPerTime': { 'value': 536 },
            'plannedLaborUnits': { 'value': 597 },
            'actualLaborUnits': { 'value': 924 },
        },
        '2021-05-21': {
            'plannedPhysicalVolume': { 'value': 222 },
            'actualPhysicalVolume': { 'value': 187 },
            'plannedUnitsPerTime': { 'value': 0 },
            'actualUnitsPerTime': { 'value': 230 },
            'plannedLaborUnits': { 'value': 27 },
            'actualLaborUnits': { 'value': 3 },
        },
        '2021-05-22': {
            'plannedPhysicalVolume': { 'value': 531 },
            'actualPhysicalVolume': { 'value': 962 },
            'plannedUnitsPerTime': { 'value': 126 },
            'actualUnitsPerTime': { 'value': 287 },
            'plannedLaborUnits': { 'value': 683 },
            'actualLaborUnits': { 'value': 186 },
        },
        '2021-05-23': {
            'plannedPhysicalVolume': { 'value': 988 },
            'actualPhysicalVolume': { 'value': 955 },
            'plannedUnitsPerTime': { 'value': 644 },
            'actualUnitsPerTime': { 'value': 390 },
            'plannedLaborUnits': { 'value': 702 },
            'actualLaborUnits': { 'value': 524 },
        },
        '2021-05-24': {
            'plannedPhysicalVolume': { 'value': 241 },
            'actualPhysicalVolume': { 'value': 460 },
            'plannedUnitsPerTime': { 'value': 208 },
            'actualUnitsPerTime': { 'value': 642 },
            'plannedLaborUnits': { 'value': 391 },
            'actualLaborUnits': { 'value': 972 },
        },
        '2021-05-25': {
            'plannedPhysicalVolume': { 'value': 745 },
            'actualPhysicalVolume': { 'value': 384 },
            'plannedUnitsPerTime': { 'value': 859 },
            'actualUnitsPerTime': { 'value': 862 },
            'plannedLaborUnits': { 'value': 147 },
            'actualLaborUnits': { 'value': 814 },
        },
      },
    },
  },
  {
    'id': "3874",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 45,
      },
      'attrs': {
        'id': "3874",
        'Task_name': "Рабочий проект",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 45,
        'Actual_costs': 115791,
        'Planned_costs': 258313,
        'Responsible': "Contractor",
        'English_version': "Detail Design",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.ENG",
        'Number_in_structure': "1.3.2.4.2.1",
        'parentId': "3873",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3875",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "3875",
        'Task_name': "Проекты производства работ",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 71,
        'Actual_costs': 285139,
        'Planned_costs': 402604,
        'Responsible': "Contractor",
        'English_version': "Work Procedure Report",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.ENG",
        'Number_in_structure': "1.3.2.4.2.2",
        'parentId': "3873",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3876",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2025-02-24T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2025-02-24T00:00:00.000Z",
        'completionPercentage': 80,
      },
      'attrs': {
        'id': "3876",
        'Task_name': "Строительно-монтажные работы, ПНР",
        'Duration': "575д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2025-02-24T00:00:00.000Z",
        'Percent_complete': 80,
        'Actual_costs': 255853,
        'Planned_costs': 320816,
        'Responsible': "Contractor",
        'English_version':
          "Construction and Installation Work (Includes Pre-Commissioning)",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW",
        'Number_in_structure': "1.3.2.4.3",
        'parentId': "3869",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3877",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2025-02-24T00:00:00.000Z",
        'planFinishDate': "2025-02-24T00:00:00.000Z",
        'factStartDate': "2025-02-24T00:00:00.000Z",
        'factFinishDate': "2025-02-24T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "3877",
        'Task_name': "Готовность объекта 20ABF",
        'Duration': "0д",
        'Start_date': "2025-02-24T00:00:00.000Z",
        'End_date': "2025-02-24T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 395163,
        'Planned_costs': 379414,
        'Responsible': "Contractor",
        'English_version': "Readiness of object 20ABF",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW",
        'Number_in_structure': "1.3.2.4.3.1",
        'parentId': "3876",
        'wbsId': "3869",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2025-02-24T00:00:00.000Z",
          'tooltip': "2025-02-24T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors':
          "3879;3880;3881;3888;3897;3887;3889;3890;3902;3903;3885;3886;3891;3892;3893;3894;3895;3896;3898НН;3899;3900;3883",
      },
      'metrics': {},
    },
  },
  {
    'id': "3878",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-04-04T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-04-04T00:00:00.000Z",
        'completionPercentage': 70,
      },
      'attrs': {
        'id': "3878",
        'Task_name': "Строительные работы",
        'Duration': "250д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-04-04T00:00:00.000Z",
        'Percent_complete': 70,
        'Actual_costs': 284142,
        'Planned_costs': 406917,
        'Responsible': "Contractor",
        'English_version': "Civil works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW.CVL",
        'Number_in_structure': "1.3.2.4.3.2",
        'parentId': "3876",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3879",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-01-28T00:00:00.000Z",
        'planFinishDate': "2023-04-04T00:00:00.000Z",
        'factStartDate': "2023-01-28T00:00:00.000Z",
        'factFinishDate': "2023-04-04T00:00:00.000Z",
        'completionPercentage': 54,
      },
      'attrs': {
        'id': "3879",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Строительные конструкции для установки трансформаторов",
        'Duration': "250д",
        'Start_date': "2023-01-28T00:00:00.000Z",
        'End_date': "2023-04-04T00:00:00.000Z",
        'Percent_complete': 54,
        'Actual_costs': 143152,
        'Planned_costs': 247578,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Civil structures for transformer installation",
        'KKS_documents': "AB2.0130.20ABF.0.KZ.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.CVL",
        'Number_in_structure': "1.3.2.4.3.2.1",
        'parentId': "3878",
        'wbsId': "3877",
        'Indicator': {
          'value': "ir001",
          'date': "2023-01-28T00:00:00.000Z",
          'tooltip': "2023-01-28T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2023-04-04T00:00:00.000Z",
          'tooltip': "2023-04-04T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3880",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-06T00:00:00.000Z",
        'planFinishDate': "2024-04-04T00:00:00.000Z",
        'factStartDate': "2023-10-06T00:00:00.000Z",
        'factFinishDate': "2024-04-04T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3880",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Железобетонные конструкции эстакад для установки токопроводов и кабельных трасс",
        'Duration': "180д",
        'Start_date': "2023-10-06T00:00:00.000Z",
        'End_date': "2024-04-04T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 271479,
        'Planned_costs': 555039,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Reinforced concrete structures of trestles for installation of bus ducts and cable routing",
        'KKS_documents': "AB2.0130.20ABF.0.KZ.TB0002",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.CVL",
        'Number_in_structure': "1.3.2.4.3.2.2",
        'parentId': "3878",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3879НН+70д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3881",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-06T00:00:00.000Z",
        'planFinishDate': "2024-04-04T00:00:00.000Z",
        'factStartDate': "2023-10-06T00:00:00.000Z",
        'factFinishDate': "2024-04-04T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "3881",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Металлоконструкции эстакад для установки токопроводов и кабельных трасс и металлоконструкции опор трубопроводов пожаротушения",
        'Duration': "180д",
        'Start_date': "2023-10-06T00:00:00.000Z",
        'End_date': "2024-04-04T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 385833,
        'Planned_costs': 397990,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Steel structures of trestles for installation of bus ducts and cable routing. Steel structures of supports for fire-fighting pipelines",
        'KKS_documents': "AB2.0130.20ABF.0.KM.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.CVL",
        'Number_in_structure': "1.3.2.4.3.2.3",
        'parentId': "3878",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-04-04T00:00:00.000Z",
          'tooltip': "2024-04-04T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3880НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3882",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-30T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-30T00:00:00.000Z",
        'completionPercentage': 66,
      },
      'attrs': {
        'id': "3882",
        'Task_name': "Тепломонтажные работы",
        'Duration': "180д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-30T00:00:00.000Z",
        'Percent_complete': 66,
        'Actual_costs': 116052,
        'Planned_costs': 176836,
        'Responsible': "Contractor",
        'English_version': "Process works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW.MAP",
        'Number_in_structure': "1.3.2.4.3.3",
        'parentId': "3876",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3883",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-30T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-30T00:00:00.000Z",
        'completionPercentage': 83,
      },
      'attrs': {
        'id': "3883",
        'Task_name':
          "20ABF. Сооружение блочных трансформаторов. Блочные трансформаторы. Автоматические установки пожаротушения (SGC)",
        'Duration': "180д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-30T00:00:00.000Z",
        'Percent_complete': 83,
        'Actual_costs': 274462,
        'Planned_costs': 331677,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Generator transformers. Automatic fire fighting facilities (SGC)",
        'KKS_documents': "AB2.0130.20ABF.0.PT.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.MAP",
        'Number_in_structure': "1.3.2.4.3.3.1",
        'parentId': "3882",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3881",
      },
      'metrics': {},
    },
  },
  {
    'id': "3884",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-06T00:00:00.000Z",
        'planFinishDate': "2024-09-30T00:00:00.000Z",
        'factStartDate': "2023-10-06T00:00:00.000Z",
        'factFinishDate': "2024-09-30T00:00:00.000Z",
        'completionPercentage': 80,
      },
      'attrs': {
        'id': "3884",
        'Task_name': "Электромонтажные работы",
        'Duration': "360д",
        'Start_date': "2023-10-06T00:00:00.000Z",
        'End_date': "2024-09-30T00:00:00.000Z",
        'Percent_complete': 80,
        'Actual_costs': 292303,
        'Planned_costs': 366379,
        'Responsible': "Contractor",
        'English_version': "Electrical works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4",
        'parentId': "3876",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3885",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-02-05T00:00:00.000Z",
        'planFinishDate': "2023-04-30T00:00:00.000Z",
        'factStartDate': "2023-02-05T00:00:00.000Z",
        'factFinishDate': "2023-04-30T00:00:00.000Z",
        'completionPercentage': 73,
      },
      'attrs': {
        'id': "3885",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Электромонтажные чертежи установки блочных повышающих трансформаторов и рабочих трансформаторов собственных нужд",
        'Duration': "180д",
        'Start_date': "2023-02-05T00:00:00.000Z",
        'End_date': "2023-04-30T00:00:00.000Z",
        'Percent_complete': 73,
        'Actual_costs': 196587,
        'Planned_costs': 270297,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Electric wiring diagrams for installation of step-up generator transformers and normal auxiliary transformers",
        'KKS_documents': "AB2.0130.20ABF.0.EM.LD0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.1",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': "ir001",
          'date': "2023-02-05T00:00:00.000Z",
          'tooltip': "2023-02-05T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': 3879,
      },
      'metrics': {},
    },
  },
  {
    'id': "3886",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "3886",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Заземление и молниезащита",
        'Duration': "120д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 268179,
        'Planned_costs': 295702,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Grounding and lightning protection",
        'KKS_documents': "AB2.0130.20ABF.0.EM.LD0002",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.2",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3879",
      },
      'metrics': {},
    },
  },
  {
    'id': "3887",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-26T00:00:00.000Z",
        'planFinishDate': "2024-04-24T00:00:00.000Z",
        'factStartDate': "2023-10-26T00:00:00.000Z",
        'factFinishDate': "2024-04-24T00:00:00.000Z",
        'completionPercentage': 69,
      },
      'attrs': {
        'id': "3887",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Схемы кабельных трасс",
        'Duration': "180д",
        'Start_date': "2023-10-26T00:00:00.000Z",
        'End_date': "2024-04-24T00:00:00.000Z",
        'Percent_complete': 69,
        'Actual_costs': 298015,
        'Planned_costs': 432906,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Cable routing diagram",
        'KKS_documents': "AB2.0130.20ABF.0.EK.LD0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.3",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3879НН+90д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3888",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-06T00:00:00.000Z",
        'planFinishDate': "2024-03-04T00:00:00.000Z",
        'factStartDate': "2023-10-06T00:00:00.000Z",
        'factFinishDate': "2024-03-04T00:00:00.000Z",
        'completionPercentage': 44,
      },
      'attrs': {
        'id': "3888",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Освещение территории 20ABF",
        'Duration': "150д",
        'Start_date': "2023-10-06T00:00:00.000Z",
        'End_date': "2024-03-04T00:00:00.000Z",
        'Percent_complete': 44,
        'Actual_costs': 248270,
        'Planned_costs': 565250,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Lighting of 20ABF area",
        'KKS_documents': "AB2.0130.20ABF.0.EN.LD0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.4",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3880НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3889",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-26T00:00:00.000Z",
        'planFinishDate': "2024-04-24T00:00:00.000Z",
        'factStartDate': "2023-10-26T00:00:00.000Z",
        'factFinishDate': "2024-04-24T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "3889",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Расстановка кабельных конструкций",
        'Duration': "180д",
        'Start_date': "2023-10-26T00:00:00.000Z",
        'End_date': "2024-04-24T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 240151,
        'Planned_costs': 586734,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Cable structures layout",
        'KKS_documents': "AB2.0130.20ABF.0.EK.LD0002",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.5",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3887НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3890",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-26T00:00:00.000Z",
        'planFinishDate': "2024-04-24T00:00:00.000Z",
        'factStartDate': "2023-10-26T00:00:00.000Z",
        'factFinishDate': "2024-04-24T00:00:00.000Z",
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "3890",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Разрезы по раскладке кабелей",
        'Duration': "180д",
        'Start_date': "2023-10-26T00:00:00.000Z",
        'End_date': "2024-04-24T00:00:00.000Z",
        'Percent_complete': 71,
        'Actual_costs': 236322,
        'Planned_costs': 333848,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Cross-sections for cable layouts",
        'KKS_documents': "AB2.0130.20ABF.0.EK.MB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.6",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3889НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3891",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-11T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-11T00:00:00.000Z",
        'completionPercentage': 40,
      },
      'attrs': {
        'id': "3891",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Блочные трансформаторы.Вторичные соединения (охлаждение, КИВ, система мониторинга). Схемы электрические полные.",
        'Duration': "160д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-11T00:00:00.000Z",
        'Percent_complete': 40,
        'Actual_costs': 219408,
        'Planned_costs': 549520,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Generator transformers. Secondary connections (cooling, bushing insulation monitoring, monitoring system). Complete electric diagrams",
        'KKS_documents': "AB2.0130.20ABF.BAT.AE.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.7",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3885НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3892",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-11T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-11T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "3892",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Блочные трансформаторы. Вторичные соединения. Задание заводу (шкафы зажимов, КИВ).",
        'Duration': "160д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-11T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 259435,
        'Planned_costs': 633768,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Generator transformers. Secondary connections Technical assignment for manufacturer (cabinets of terminals, bushing insulation monitoring)",
        'KKS_documents': "AB2.0130.20ABF.BAT.AE.EC0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.8",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3891НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3893",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-11T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-11T00:00:00.000Z",
        'completionPercentage': 76,
      },
      'attrs': {
        'id': "3893",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Блочные трансформаторы. Вторичные соединения (охлаждение, КИВ, система мониторинга). Журналы контрольных кабелей.",
        'Duration': "160д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-11T00:00:00.000Z",
        'Percent_complete': 76,
        'Actual_costs': 295253,
        'Planned_costs': 389491,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Generator transformers. Secondary connections (cooling, bushing insulation monitoring, monitoring system). Lists of control cables",
        'KKS_documents': "AB2.0130.20ABF.BAT.AE.MB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.9",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3892НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3894",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-11T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-11T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "3894",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Рабочие трансформаторы. Вторичные соединения (охлаждение, РПН, система мониторинга). Схемы электрические полные.",
        'Duration': "160д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-11T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 228366,
        'Planned_costs': 251952,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Normal transformers. Secondary connections (cooling, OLTC, monitoring system). Complete electric diagrams",
        'KKS_documents': "AB2.0130.20ABF.BBT.AE.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.10",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3885НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3895",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-09-11T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-09-11T00:00:00.000Z",
        'completionPercentage': 56,
      },
      'attrs': {
        'id': "3895",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Рабочие трансформаторы. Вторичные соединения. Задание заводу (шкафы зажимов).",
        'Duration': "160д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-09-11T00:00:00.000Z",
        'Percent_complete': 56,
        'Actual_costs': 205419,
        'Planned_costs': 189248,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Normal transformers. Secondary connections Technical assignment for manufacturer (cabinets of terminals)",
        'KKS_documents': "AB2.0130.20ABF.BBT.AE.EC0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.11",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2024-09-11T00:00:00.000Z",
          'tooltip': "2024-09-11T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3894НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3896",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-02-05T00:00:00.000Z",
        'planFinishDate': "2023-05-11T00:00:00.000Z",
        'factStartDate': "2022-02-05T00:00:00.000Z",
        'factFinishDate': "2023-05-11T00:00:00.000Z",
        'completionPercentage': 43,
      },
      'attrs': {
        'id': "3896",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Рабочие трансформаторы. Вторичные соединения (охлаждение, РПН, система мониторинга). Журналы контрольных кабелей.",
        'Duration': "160д",
        'Start_date': "2022-02-05T00:00:00.000Z",
        'End_date': "2023-05-11T00:00:00.000Z",
        'Percent_complete': 43,
        'Actual_costs': 220313,
        'Planned_costs': 513356,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Normal transformers. Secondary connections (cooling, OLTC, monitoring system). Lists of control cables",
        'KKS_documents': "AB2.0130.20ABF.BBT.AE.MB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.12",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': "ir001",
          'date': "2022-02-05T00:00:00.000Z",
          'tooltip': "2022-02-05T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3895НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3897",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-10-06T00:00:00.000Z",
        'planFinishDate': "2024-03-04T00:00:00.000Z",
        'factStartDate': "2023-10-06T00:00:00.000Z",
        'factFinishDate': "2024-03-04T00:00:00.000Z",
        'completionPercentage': 42,
      },
      'attrs': {
        'id': "3897",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Управление освещением сооружения для блочных трансформаторов. Вторичные соединения",
        'Duration': "150д",
        'Start_date': "2023-10-06T00:00:00.000Z",
        'End_date': "2024-03-04T00:00:00.000Z",
        'Percent_complete': 42,
        'Actual_costs': 268045,
        'Planned_costs': 639202,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Lighting control for generator transformers structure. Secondary connections",
        'KKS_documents': "AB2.0130.20ABF.0.AE.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.13",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3888НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3898",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "3898",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Система оповещения и поиска персонала",
        'Duration': "120д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 264481,
        'Planned_costs': 509617,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Personnel annunciation and search system",
        'KKS_documents': "AB2.0130.20ABF.CYC.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.14",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3885НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3899",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "3899",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Система промышленного телевидения. Кабельные журналы",
        'Duration': "120д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 71,
        'Actual_costs': 286110,
        'Planned_costs': 403972,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Industrial CCTV system. Lists of cables",
        'KKS_documents': "AB2.0130.20ABF.CYP.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.15",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3900НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3900",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 42,
      },
      'attrs': {
        'id': "3900",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Система промышленного телевидения",
        'Duration': "120д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 42,
        'Actual_costs': 252821,
        'Planned_costs': 602955,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Industrial CCTV system",
        'KKS_documents': "AB2.0130.20ABF.CYP.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.ELC",
        'Number_in_structure': "1.3.2.4.3.4.16",
        'parentId': "3884",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3898НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3901",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2025-02-24T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2025-02-24T00:00:00.000Z",
        'completionPercentage': 77,
      },
      'attrs': {
        'id': "3901",
        'Task_name': "АСУТП",
        'Duration': "325д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2025-02-24T00:00:00.000Z",
        'Percent_complete': 77,
        'Actual_costs': 275136,
        'Planned_costs': 358320,
        'Responsible': "Contractor",
        'English_version': "APCS",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABF.CIW.APC",
        'Number_in_structure': "1.3.2.4.3.5",
        'parentId': "3876",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3902",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2025-02-24T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2025-02-24T00:00:00.000Z",
        'completionPercentage': 50,
      },
      'attrs': {
        'id': "3902",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Система контроля и управления противопожарной защитой (СКУ ПЗ), включая СОУЭ",
        'Duration': "325д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2025-02-24T00:00:00.000Z",
        'Percent_complete': 50,
        'Actual_costs': 117494,
        'Planned_costs': 235988,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Fire Protection Instrumentation and Control System (FP I&C) including fire alarm system",
        'KKS_documents': "AB2.0130.20ABF.CYE.PS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.APC",
        'Number_in_structure': "1.3.2.4.3.5.1",
        'parentId': "3901",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3885НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3903",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-05T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-04-05T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 48,
      },
      'attrs': {
        'id': "3903",
        'Task_name':
          "20ABF. Сооружение для блочных трансформаторов. Система контроля и управления противопожарной защитой (СКУ ПЗ), включая СОУЭ. Журнал контрольных кабелей",
        'Duration': "250д",
        'Start_date': "2024-04-05T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 48,
        'Actual_costs': 222730,
        'Planned_costs': 465021,
        'Responsible': "Contractor",
        'English_version':
          "20ABF. Generator transformer structure. Fire Protection Instrumentation and Control System (FP I&C) including fire alarm system. List of control cables",
        'KKS_documents': "AB2.0130.20ABF.CYE.PS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABF.CIW.APC",
        'Number_in_structure': "1.3.2.4.3.5.2",
        'parentId': "3901",
        'wbsId': "3877",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3902НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3904",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-07-12T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-07-12T00:00:00.000Z",
        'completionPercentage': 62,
      },
      'attrs': {
        'id': "3904",
        'Task_name':
          "20UBH Емкость аварийного слива масла и воды трансформаторов",
        'Duration': "350д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-07-12T00:00:00.000Z",
        'Percent_complete': 62,
        'Actual_costs': 231595,
        'Planned_costs': 374540,
        'Responsible': "Contractor",
        'English_version':
          "20UBH Transformer oil and water emergency discharge reservoir",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20UBH",
        'Number_in_structure': "1.3.2.5",
        'parentId': null,
        'wbsId': null,
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3905",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-12T00:00:00.000Z",
        'planFinishDate': "2024-07-12T00:00:00.000Z",
        'factStartDate': "2024-07-12T00:00:00.000Z",
        'factFinishDate': "2024-07-12T00:00:00.000Z",
        'completionPercentage': 40,
      },
      'attrs': {
        'id': "3905",
        'Task_name': "Готовность объекта 20UBH",
        'Duration': "0д",
        'Start_date': "2024-07-12T00:00:00.000Z",
        'End_date': "2024-07-12T00:00:00.000Z",
        'Percent_complete': 40,
        'Actual_costs': 255029,
        'Planned_costs': 638573,
        'Responsible': "Contractor",
        'English_version': "Readiness of object 20UBH",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20UBH.CIW",
        'Number_in_structure': "1.3.2.5.1",
        'parentId': "3904",
        'wbsId': "3904",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3907",
      },
      'metrics': {},
    },
  },
  {
    'id': "3906",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-07-12T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-07-12T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "3906",
        'Task_name': "Строительные работы",
        'Duration': "350д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-07-12T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 271390,
        'Planned_costs': 522904,
        'Responsible': "Contractor",
        'English_version': "Civil works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20UBH.CIW.CVL",
        'Number_in_structure': "1.3.2.5.2",
        'parentId': "3904",
        'wbsId': "3905",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3907",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-07-12T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-07-12T00:00:00.000Z",
        'completionPercentage': 79,
      },
      'attrs': {
        'id': "3907",
        'Task_name':
          "20UBH. Емкость аварийного слива масла и воды трансформаторов. Строительные конструкции емкости аварийного слива масла и воды трансформаторов",
        'Duration': "350д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-07-12T00:00:00.000Z",
        'Percent_complete': 79,
        'Actual_costs': 267781,
        'Planned_costs': 339963,
        'Responsible': "Contractor",
        'English_version':
          "20UBH. Transformer oil and water emergency discharge reservoir. Civil structures for the transformer oil and water emergency discharge reservoir",
        'KKS_documents': "AB2.0130.20UBH.0.KZ.TB0001",
        'WBS_structural_code': "A2.ABC.20UBH.CIW.CVL",
        'Number_in_structure': "1.3.2.5.2.1",
        'parentId': "3906",
        'wbsId': "3905",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3879НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3908",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-10-11T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2022-10-11T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 54,
      },
      'attrs': {
        'id': "3908",
        'Task_name': "20ABB Здание резервного пункта управления",
        'Duration': "1052д",
        'Start_date': "2022-10-11T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 54,
        'Actual_costs': 218044,
        'Planned_costs': 404785,
        'Responsible': "Contractor",
        'English_version': "20ABB Emergency control room building",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB",
        'Number_in_structure': "1.3.2.6",
        'parentId': null,
        'wbsId': null,
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3909",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 43,
      },
      'attrs': {
        'id': "3909",
        'Task_name': "Разрешение",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 43,
        'Actual_costs': 104823,
        'Planned_costs': 244774,
        'Responsible': "Contractor",
        'English_version': "Permission",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.PRM",
        'Number_in_structure': "1.3.2.6.1",
        'parentId': "3908",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3910",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 82,
      },
      'attrs': {
        'id': "3910",
        'Task_name': "Разрешения на сооружения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 82,
        'Actual_costs': 167909,
        'Planned_costs': 205767,
        'Responsible': "Contractor",
        'English_version': "Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.PRM",
        'Number_in_structure': "1.3.2.6.1.1",
        'parentId': "3909",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3911",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "3911",
        'Task_name': "Специальные разрешения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 95,
        'Actual_costs': 253587,
        'Planned_costs': 267934,
        'Responsible': "Contractor",
        'English_version': "Special Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.PRM",
        'Number_in_structure': "1.3.2.6.1.2",
        'parentId': "3909",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3912",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 48,
      },
      'attrs': {
        'id': "3912",
        'Task_name': "Инжиниринг",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 48,
        'Actual_costs': 234058,
        'Planned_costs': 488621,
        'Responsible': "Contractor",
        'English_version': "Engineering",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.ENG",
        'Number_in_structure': "1.3.2.6.2",
        'parentId': "3908",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3913",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 87,
      },
      'attrs': {
        'id': "3913",
        'Task_name': "Рабочий проект",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 87,
        'Actual_costs': 218103,
        'Planned_costs': 251693,
        'Responsible': "Contractor",
        'English_version': "Detail Design",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.ENG",
        'Number_in_structure': "1.3.2.6.2.1",
        'parentId': "3912",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3914",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 66,
      },
      'attrs': {
        'id': "3914",
        'Task_name': "Проекты производства работ",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 66,
        'Actual_costs': 108165,
        'Planned_costs': 164886,
        'Responsible': "Contractor",
        'English_version': "Work Procedure Report",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.ENG",
        'Number_in_structure': "1.3.2.6.2.2",
        'parentId': "3912",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3915",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-10-11T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2022-10-11T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 99,
      },
      'attrs': {
        'id': "3915",
        'Task_name': "Строительно-монтажные работы, ПНР",
        'Duration': "1052д",
        'Start_date': "2022-10-11T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 99,
        'Actual_costs': 209372,
        'Planned_costs': 212487,
        'Responsible': "Contractor",
        'English_version':
          "Construction and Installation Work (Includes Pre-Commissioning)",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW",
        'Number_in_structure': "1.3.2.6.3",
        'parentId': "3908",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3916",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2025-08-27T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2025-08-27T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 58,
      },
      'attrs': {
        'id': "3916",
        'Task_name': "Готовность объекта 20ABB",
        'Duration': "0д",
        'Start_date': "2025-08-27T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 58,
        'Actual_costs': 237743,
        'Planned_costs': 410902,
        'Responsible': "Contractor",
        'English_version': "Readiness of object 20ABB",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW",
        'Number_in_structure': "1.3.2.6.3.1",
        'parentId': "3915",
        'wbsId': "3908",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors':
          "3919;3921;3920;3923;3922;3977;3982;3925;3969;3924;3939;3935;3933;3927;3932;3926;3956;3978;3944;3945;3948;3949;3950;3929;3928;3941;3942;3931;3930;3943;3951;3946;3937;3947;3962;3963;3964;3965;3966;3967;3968;3981;3983;4003;4004;4037;4038;3952;3938;3957",
      },
      'metrics': {},
    },
  },
  {
    'id': "3917",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-10-11T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2022-10-11T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 77,
      },
      'attrs': {
        'id': "3917",
        'Task_name': "Строительные работы",
        'Duration': "660д",
        'Start_date': "2022-10-11T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 77,
        'Actual_costs': 198030,
        'Planned_costs': 258182,
        'Responsible': "Contractor",
        'English_version': "Civil works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL",
        'Number_in_structure': "1.3.2.6.3.2",
        'parentId': "3915",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3918",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-10-11T00:00:00.000Z",
        'planFinishDate': "2024-03-04T00:00:00.000Z",
        'factStartDate': "2022-10-11T00:00:00.000Z",
        'factFinishDate': "2024-03-04T00:00:00.000Z",
        'completionPercentage': 47,
      },
      'attrs': {
        'id': "3918",
        'Task_name': "Строительные конструкции",
        'Duration': "510д",
        'Start_date': "2022-10-11T00:00:00.000Z",
        'End_date': "2024-03-04T00:00:00.000Z",
        'Percent_complete': 47,
        'Actual_costs': 235857,
        'Planned_costs': 502823,
        'Responsible': "Contractor",
        'English_version': "Civil structures",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1",
        'parentId': "3917",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3919",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-10-11T00:00:00.000Z",
        'planFinishDate': "2023-04-09T00:00:00.000Z",
        'factStartDate': "2022-10-11T00:00:00.000Z",
        'factFinishDate': "2023-04-09T00:00:00.000Z",
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "3919",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Фундаментная плита",
        'Duration': "180д",
        'Start_date': "2022-10-11T00:00:00.000Z",
        'End_date': "2023-04-09T00:00:00.000Z",
        'Percent_complete': 96,
        'Actual_costs': 110580,
        'Planned_costs': 113063,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Foundation slab",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.1",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2022-10-11T00:00:00.000Z",
          'tooltip': "2022-10-11T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2023-04-09T00:00:00.000Z",
          'tooltip': "2023-04-09T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3920",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-02-21T00:00:00.000Z",
        'planFinishDate': "2023-05-18T00:00:00.000Z",
        'factStartDate': "2023-02-21T00:00:00.000Z",
        'factFinishDate': "2023-05-18T00:00:00.000Z",
        'completionPercentage': 87,
      },
      'attrs': {
        'id': "3920",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Стены с отметки -4.850 до отметки -0.080. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-02-21T00:00:00.000Z",
        'End_date': "2023-05-18T00:00:00.000Z",
        'Percent_complete': 87,
        'Actual_costs': 156528,
        'Planned_costs': 180917,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. -4.850 to elev. -0.080. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.2",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2023-02-21T00:00:00.000Z",
          'tooltip': "2023-02-21T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3921НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3921",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-02-11T00:00:00.000Z",
        'planFinishDate': "2023-05-08T00:00:00.000Z",
        'factStartDate': "2023-02-11T00:00:00.000Z",
        'factFinishDate': "2023-05-08T00:00:00.000Z",
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "3921",
        'Task_name':
          "20ABB. Здание резервного пункта управления . Стены с отметки -4.850 до отметки -0.080. Армирование",
        'Duration': "90д",
        'Start_date': "2023-02-11T00:00:00.000Z",
        'End_date': "2023-05-08T00:00:00.000Z",
        'Percent_complete': 96,
        'Actual_costs': 180597,
        'Planned_costs': 189122,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. -4.850 to elev. -0.080. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.3",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2023-02-11T00:00:00.000Z",
          'tooltip': "2023-02-11T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3919НН+120д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3922",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-04-30T00:00:00.000Z",
        'planFinishDate': "2023-07-27T00:00:00.000Z",
        'factStartDate': "2023-04-30T00:00:00.000Z",
        'factFinishDate': "2023-07-27T00:00:00.000Z",
        'completionPercentage': 98,
      },
      'attrs': {
        'id': "3922",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Перекрытие на отметке -0.080. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-04-30T00:00:00.000Z",
        'End_date': "2023-07-27T00:00:00.000Z",
        'Percent_complete': 98,
        'Actual_costs': 244380,
        'Planned_costs': 250367,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Slab at elev. -0.080. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.4",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3923НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3923",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-04-20T00:00:00.000Z",
        'planFinishDate': "2023-07-17T00:00:00.000Z",
        'factStartDate': "2023-04-20T00:00:00.000Z",
        'factFinishDate': "2023-07-17T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "3923",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Перекрытие на отметке -0.080. Армирование",
        'Duration': "90д",
        'Start_date': "2023-04-20T00:00:00.000Z",
        'End_date': "2023-07-17T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 263336,
        'Planned_costs': 290380,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Slab at elev. -0.080. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0005",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.5",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3920НН+60д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3924",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-06-09T00:00:00.000Z",
        'planFinishDate': "2023-09-06T00:00:00.000Z",
        'factStartDate': "2023-06-09T00:00:00.000Z",
        'factFinishDate': "2023-09-06T00:00:00.000Z",
        'completionPercentage': 77,
      },
      'attrs': {
        'id': "3924",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Стены с отметки -0.080 до отметки +4.720. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-06-09T00:00:00.000Z",
        'End_date': "2023-09-06T00:00:00.000Z",
        'Percent_complete': 77,
        'Actual_costs': 258038,
        'Planned_costs': 336114,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. +0.080 to elev. +4.720. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0006",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.6",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3925НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3925",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-29T00:00:00.000Z",
        'planFinishDate': "2023-08-26T00:00:00.000Z",
        'factStartDate': "2023-05-29T00:00:00.000Z",
        'factFinishDate': "2023-08-26T00:00:00.000Z",
        'completionPercentage': 63,
      },
      'attrs': {
        'id': "3925",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Стены с отметки -0.080 до отметки +4.720. Армирование",
        'Duration': "90д",
        'Start_date': "2023-05-29T00:00:00.000Z",
        'End_date': "2023-08-26T00:00:00.000Z",
        'Percent_complete': 63,
        'Actual_costs': 153787,
        'Planned_costs': 245106,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. +0.080 to elev. +4.720. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0007",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.7",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3922НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3926",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-08-17T00:00:00.000Z",
        'planFinishDate': "2023-11-15T00:00:00.000Z",
        'factStartDate': "2023-08-17T00:00:00.000Z",
        'factFinishDate': "2023-11-15T00:00:00.000Z",
        'completionPercentage': 75,
      },
      'attrs': {
        'id': "3926",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Перекрытие на отметке +4.720. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-08-17T00:00:00.000Z",
        'End_date': "2023-11-15T00:00:00.000Z",
        'Percent_complete': 75,
        'Actual_costs': 153383,
        'Planned_costs': 205511,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Slab at elev. +4.720. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0008",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.8",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3927НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3927",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-01-07T00:00:00.000Z",
        'planFinishDate': "2023-05-05T00:00:00.000Z",
        'factStartDate': "2023-01-07T00:00:00.000Z",
        'factFinishDate': "2023-05-05T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "3927",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Перекрытие на отметке +4.720. Армирование",
        'Duration': "90д",
        'Start_date': "2023-01-07T00:00:00.000Z",
        'End_date': "2023-05-05T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 115074,
        'Planned_costs': 222296,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Slab at elev. +4.720. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0009",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.9",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2023-01-07T00:00:00.000Z",
          'tooltip': "2023-01-07T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3924НН+60д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3928",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-27T00:00:00.000Z",
        'planFinishDate': "2023-12-24T00:00:00.000Z",
        'factStartDate': "2023-09-27T00:00:00.000Z",
        'factFinishDate': "2023-12-24T00:00:00.000Z",
        'completionPercentage': 67,
      },
      'attrs': {
        'id': "3928",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Стены с отметки +4.720 до отметки +10.390. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-09-27T00:00:00.000Z",
        'End_date': "2023-12-24T00:00:00.000Z",
        'Percent_complete': 67,
        'Actual_costs': 175106,
        'Planned_costs': 262352,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. +4.720 to elev. +10.390. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0010",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.10",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3929НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3929",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-17T00:00:00.000Z",
        'planFinishDate': "2023-12-14T00:00:00.000Z",
        'factStartDate': "2023-09-17T00:00:00.000Z",
        'factFinishDate': "2023-12-14T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "3929",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Стены с отметки+4.720 до отметки +10.390. Армирование",
        'Duration': "90д",
        'Start_date': "2023-09-17T00:00:00.000Z",
        'End_date': "2023-12-14T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 127152,
        'Planned_costs': 245523,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Walls from elev. +4.720 to elev. +10.390. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0011",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.11",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3926НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3930",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-12-05T00:00:00.000Z",
        'planFinishDate': "2024-03-04T00:00:00.000Z",
        'factStartDate': "2023-12-05T00:00:00.000Z",
        'factFinishDate': "2024-03-04T00:00:00.000Z",
        'completionPercentage': 42,
      },
      'attrs': {
        'id': "3930",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Покрытие на отметке на отметке +9.700. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-12-05T00:00:00.000Z",
        'End_date': "2024-03-04T00:00:00.000Z",
        'Percent_complete': 42,
        'Actual_costs': 291511,
        'Planned_costs': 456979,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Roof slab at elev. +9.700. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0012",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.12",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-03-04T00:00:00.000Z",
          'tooltip': "2024-03-04T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3931НН+10д;3932ОН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3931",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-11-26T00:00:00.000Z",
        'planFinishDate': "2024-02-25T00:00:00.000Z",
        'factStartDate': "2023-11-26T00:00:00.000Z",
        'factFinishDate': "2024-02-25T00:00:00.000Z",
        'completionPercentage': 53,
      },
      'attrs': {
        'id': "3931",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Покрытие на отметке на отметке +9.700. Армирование",
        'Duration': "90д",
        'Start_date': "2023-11-26T00:00:00.000Z",
        'End_date': "2024-02-25T00:00:00.000Z",
        'Percent_complete': 53,
        'Actual_costs': 110427,
        'Planned_costs': 209353,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Roof slab at elev. +9.700. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0013",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.13",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3928НН+60д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3932",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-08-07T00:00:00.000Z",
        'planFinishDate': "2023-11-05T00:00:00.000Z",
        'factStartDate': "2023-08-07T00:00:00.000Z",
        'factFinishDate': "2023-11-05T00:00:00.000Z",
        'completionPercentage': 48,
      },
      'attrs': {
        'id': "3932",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Лестницы. Геометрия",
        'Duration': "90д",
        'Start_date': "2023-08-07T00:00:00.000Z",
        'End_date': "2023-11-05T00:00:00.000Z",
        'Percent_complete': 48,
        'Actual_costs': 255181,
        'Planned_costs': 532627,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Stairs. Geometry",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0014",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.14",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3933НН+10д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3933",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2023-10-25T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2023-10-25T00:00:00.000Z",
        'completionPercentage': 93,
      },
      'attrs': {
        'id': "3933",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Лестницы. Армирование",
        'Duration': "90д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2023-10-25T00:00:00.000Z",
        'Percent_complete': 93,
        'Actual_costs': 269114,
        'Planned_costs': 290370,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Stairs. Reinforcement",
        'KKS_documents': "AB2.0120.20ABB.0.KZ.LC0015",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.1",
        'Number_in_structure': "1.3.2.6.3.2.1.15",
        'parentId': "3918",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3922;3935НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3934",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-03-24T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-03-24T00:00:00.000Z",
        'completionPercentage': 92,
      },
      'attrs': {
        'id': "3934",
        'Task_name': "Металлоконструкции",
        'Duration': "240д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-03-24T00:00:00.000Z",
        'Percent_complete': 92,
        'Actual_costs': 196481,
        'Planned_costs': 214566,
        'Responsible': "Contractor",
        'English_version': "Metal structures",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.2",
        'Number_in_structure': "1.3.2.6.3.2.2",
        'parentId': "3917",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3935",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-03-24T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-03-24T00:00:00.000Z",
        'completionPercentage': 40,
      },
      'attrs': {
        'id': "3935",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Металлоконструкции",
        'Duration': "240д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-03-24T00:00:00.000Z",
        'Percent_complete': 40,
        'Actual_costs': 168952,
        'Planned_costs': 423380,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Metal structures",
        'KKS_documents': "AB2.0120.20ABB.0.KM.LC0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.2",
        'Number_in_structure': "1.3.2.6.3.2.2.1",
        'parentId': "3934",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3922",
      },
      'metrics': {},
    },
  },
  {
    'id': "3936",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "3936",
        'Task_name': "Архитектурные решения",
        'Duration': "370д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 177622,
        'Planned_costs': 434224,
        'Responsible': "Contractor",
        'English_version': "Architectural concept",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.3",
        'Number_in_structure': "1.3.2.6.3.2.3",
        'parentId': "3917",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3937",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-03-05T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2024-03-05T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 50,
      },
      'attrs': {
        'id': "3937",
        'Task_name': "20ABB. Здание резервного пункта управления. Кровля",
        'Duration': "60д",
        'Start_date': "2024-03-05T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 50,
        'Actual_costs': 125183,
        'Planned_costs': 251366,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Roofing",
        'KKS_documents': "AB2.0120.20ABB.0.AR.LC0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.3",
        'Number_in_structure': "1.3.2.6.3.2.3.1",
        'parentId': "3936",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3930",
      },
      'metrics': {},
    },
  },
  {
    'id': "3938",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-04T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-05-04T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 73,
      },
      'attrs': {
        'id': "3938",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Фасады и наружная отделка",
        'Duration': "90д",
        'Start_date': "2024-05-04T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 73,
        'Actual_costs': 216554,
        'Planned_costs': 297649,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Facades and exterior finishing",
        'KKS_documents': "AB2.0120.20ABB.0.AR.LC0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.3",
        'Number_in_structure': "1.3.2.6.3.2.3.2",
        'parentId': "3936",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3937",
      },
      'metrics': {},
    },
  },
  {
    'id': "3939",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-07-28T00:00:00.000Z",
        'planFinishDate': "2024-04-24T00:00:00.000Z",
        'factStartDate': "2023-07-28T00:00:00.000Z",
        'factFinishDate': "2024-04-24T00:00:00.000Z",
        'completionPercentage': 89,
      },
      'attrs': {
        'id': "3939",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Архитектурные решения, включая отделку и полы",
        'Duration': "270д",
        'Start_date': "2023-07-28T00:00:00.000Z",
        'End_date': "2024-04-24T00:00:00.000Z",
        'Percent_complete': 89,
        'Actual_costs': 201879,
        'Planned_costs': 227830,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Architectural solutions, including finishing and floors",
        'KKS_documents': "AB2.0120.20ABB.0.AR.LC0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.CVL.3",
        'Number_in_structure': "1.3.2.6.3.2.3.3",
        'parentId': "3936",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3922",
      },
      'metrics': {},
    },
  },
  {
    'id': "3940",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2025-01-03T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2025-01-03T00:00:00.000Z",
        'completionPercentage': 40,
      },
      'attrs': {
        'id': "3940",
        'Task_name': "Тепломонтажные работы",
        'Duration': "485д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2025-01-03T00:00:00.000Z",
        'Percent_complete': 40,
        'Actual_costs': 253128,
        'Planned_costs': 633820,
        'Responsible': "Contractor",
        'English_version': "Process works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3",
        'parentId': "3915",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3941",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-11-16T00:00:00.000Z",
        'planFinishDate': "2023-12-29T00:00:00.000Z",
        'factStartDate': "2023-11-16T00:00:00.000Z",
        'factFinishDate': "2023-12-29T00:00:00.000Z",
        'completionPercentage': 46,
      },
      'attrs': {
        'id': "3941",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Установочный чертеж г/п оборудования",
        'Duration': "45д",
        'Start_date': "2023-11-16T00:00:00.000Z",
        'End_date': "2023-12-29T00:00:00.000Z",
        'Percent_complete': 46,
        'Actual_costs': 218784,
        'Planned_costs': 476617,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Load-lifting equipment installation drawing",
        'KKS_documents': "AB2.0120.20ABB.SMC.MR.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.1",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3926",
      },
      'metrics': {},
    },
  },
  {
    'id': "3942",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-11-16T00:00:00.000Z",
        'planFinishDate': "2024-07-22T00:00:00.000Z",
        'factStartDate': "2023-11-16T00:00:00.000Z",
        'factFinishDate': "2024-07-22T00:00:00.000Z",
        'completionPercentage': 93,
      },
      'attrs': {
        'id': "3942",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Компоновочные чертежи систем вентиляции",
        'Duration': "250д",
        'Start_date': "2023-11-16T00:00:00.000Z",
        'End_date': "2024-07-22T00:00:00.000Z",
        'Percent_complete': 93,
        'Actual_costs': 116195,
        'Planned_costs': 125941,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Layout drawings of the ventilation systems",
        'KKS_documents': "AB2.0120.20ABB.0.HV.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.2",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3926",
      },
      'metrics': {},
    },
  },
  {
    'id': "3943",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-12-30T00:00:00.000Z",
        'planFinishDate': "2024-09-06T00:00:00.000Z",
        'factStartDate': "2023-12-30T00:00:00.000Z",
        'factFinishDate': "2024-09-06T00:00:00.000Z",
        'completionPercentage': 46,
      },
      'attrs': {
        'id': "3943",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Установочные чертежи систем вентиляции",
        'Duration': "250д",
        'Start_date': "2023-12-30T00:00:00.000Z",
        'End_date': "2024-09-06T00:00:00.000Z",
        'Percent_complete': 46,
        'Actual_costs': 147539,
        'Planned_costs': 321737,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Installation drawings of the ventilation systems",
        'KKS_documents': "AB2.0120.20ABB.0.HV.TB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.3",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3941;3942НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3944",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2024-03-24T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2024-03-24T00:00:00.000Z",
        'completionPercentage': 47,
      },
      'attrs': {
        'id': "3944",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Системы водоснабжения",
        'Duration': "200д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2024-03-24T00:00:00.000Z",
        'Percent_complete': 47,
        'Actual_costs': 153469,
        'Planned_costs': 327530,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Water supply systems",
        'KKS_documents': "AB2.0120.20ABB.0.WK.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.4",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3924",
      },
      'metrics': {},
    },
  },
  {
    'id': "3945",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2024-03-24T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2024-03-24T00:00:00.000Z",
        'completionPercentage': 64,
      },
      'attrs': {
        'id': "3945",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Системы водоотведения",
        'Duration': "200д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2024-03-24T00:00:00.000Z",
        'Percent_complete': 64,
        'Actual_costs': 297962,
        'Planned_costs': 466566,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Water discharge system",
        'KKS_documents': "AB2.0120.20ABB.0.WK.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.5",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3944НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3946",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-09-07T00:00:00.000Z",
        'planFinishDate': "2024-12-04T00:00:00.000Z",
        'factStartDate': "2024-09-07T00:00:00.000Z",
        'factFinishDate': "2024-12-04T00:00:00.000Z",
        'completionPercentage': 79,
      },
      'attrs': {
        'id': "3946",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Антикоррозионная защита воздуховодов",
        'Duration': "90д",
        'Start_date': "2024-09-07T00:00:00.000Z",
        'End_date': "2024-12-04T00:00:00.000Z",
        'Percent_complete': 79,
        'Actual_costs': 146208,
        'Planned_costs': 186073,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Corrosion protection of air ducts",
        'KKS_documents': "AB2.0120.20ABB.0.AZ.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.6",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3943",
      },
      'metrics': {},
    },
  },
  {
    'id': "3947",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-03-25T00:00:00.000Z",
        'planFinishDate': "2024-04-24T00:00:00.000Z",
        'factStartDate': "2024-03-25T00:00:00.000Z",
        'factFinishDate': "2024-04-24T00:00:00.000Z",
        'completionPercentage': 48,
      },
      'attrs': {
        'id': "3947",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Антикоррозионная защита трубопроводов",
        'Duration': "30д",
        'Start_date': "2024-03-25T00:00:00.000Z",
        'End_date': "2024-04-24T00:00:00.000Z",
        'Percent_complete': 48,
        'Actual_costs': 351394,
        'Planned_costs': 524738,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Corrosion protection of pipelines",
        'KKS_documents': "AB2.0120.20ABB.0.AZ.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.7",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-04-24T00:00:00.000Z",
          'tooltip': "2024-04-24T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3944;3945",
      },
      'metrics': {},
    },
  },
  {
    'id': "3948",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-09-07T00:00:00.000Z",
        'planFinishDate': "2025-01-03T00:00:00.000Z",
        'factStartDate': "2024-09-07T00:00:00.000Z",
        'factFinishDate': "2025-01-03T00:00:00.000Z",
        'completionPercentage': 44,
      },
      'attrs': {
        'id': "3948",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Системы сбора и отвода стоков после пожаротуш ения",
        'Duration': "120д",
        'Start_date': "2024-09-07T00:00:00.000Z",
        'End_date': "2025-01-03T00:00:00.000Z",
        'Percent_complete': 44,
        'Actual_costs': 206555,
        'Planned_costs': 470443,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Post-fire-fighting effluents collection and removal system",
        'KKS_documents': "AB2.0120.20ABB.0.WK.TB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.8",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3924;3949НН;3938ОН+35д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3949",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2024-03-19T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2024-03-19T00:00:00.000Z",
        'completionPercentage': 67,
      },
      'attrs': {
        'id': "3949",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система автоматического пожаротушения тонкораспыленной водой",
        'Duration': "195д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2024-03-19T00:00:00.000Z",
        'Percent_complete': 67,
        'Actual_costs': 189726,
        'Planned_costs': 284173,
        'Responsible': "Contractor",
        'English_version':
          "20ABB.Building of standby control room. Automatic finely dispersed water fire-fighting system",
        'KKS_documents': "AB2.0120.20ABB.SGK.PT.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.9",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3924",
      },
      'metrics': {},
    },
  },
  {
    'id': "3950",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2024-03-19T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2024-03-19T00:00:00.000Z",
        'completionPercentage': 100,
      },
      'attrs': {
        'id': "3950",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система автоматического газового пожаротушения",
        'Duration': "195д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2024-03-19T00:00:00.000Z",
        'Percent_complete': 100,
        'Actual_costs': 231041,
        'Planned_costs': 232041,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Building of standby control room. Systems of automatic gas fire-fighting units",
        'KKS_documents': "AB2.0120.20ABB.SGE.PT.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.10",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3949НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3951",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-12-30T00:00:00.000Z",
        'planFinishDate': "2024-04-29T00:00:00.000Z",
        'factStartDate': "2023-12-30T00:00:00.000Z",
        'factFinishDate': "2024-04-29T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "3951",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система холодоснабжения для систем вентиляции здания 20ABB (25QKN). Установочные чертежи",
        'Duration': "120д",
        'Start_date': "2023-12-30T00:00:00.000Z",
        'End_date': "2024-04-29T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 115032,
        'Planned_costs': 148477,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Cold supply system for the ventilation systems of the 00UCB building (25QKN). Installation drawings",
        'KKS_documents': "AB2.0120.20ABB.QKN.TM.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.11",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3941",
      },
      'metrics': {},
    },
  },
  {
    'id': "3952",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 81,
      },
      'attrs': {
        'id': "3952",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Тепловая изоляция вентиляции",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 81,
        'Actual_costs': 261668,
        'Planned_costs': 324047,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Heat insulation of ventilation",
        'KKS_documents': "AB2.0120.20ABB.0.TZ.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.MAP",
        'Number_in_structure': "1.3.2.6.3.3.12",
        'parentId': "3940",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3947",
      },
      'metrics': {},
    },
  },
  {
    'id': "3953",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-19T00:00:00.000Z",
        'planFinishDate': "2024-12-04T00:00:00.000Z",
        'factStartDate': "2023-05-19T00:00:00.000Z",
        'factFinishDate': "2024-12-04T00:00:00.000Z",
        'completionPercentage': 77,
      },
      'attrs': {
        'id': "3953",
        'Task_name': "Электромонтажные работы",
        'Duration': "565д",
        'Start_date': "2023-05-19T00:00:00.000Z",
        'End_date': "2024-12-04T00:00:00.000Z",
        'Percent_complete': 77,
        'Actual_costs': 145011,
        'Planned_costs': 189326,
        'Responsible': "Contractor",
        'English_version': "Electrical works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4",
        'parentId': "3915",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3954",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-24T00:00:00.000Z",
        'planFinishDate': "2024-11-20T00:00:00.000Z",
        'factStartDate': "2024-06-24T00:00:00.000Z",
        'factFinishDate': "2024-11-20T00:00:00.000Z",
        'completionPercentage': 100,
      },
      'attrs': {
        'id': "3954",
        'Task_name':
          "20ABB. Здание резервного пункта управления. КРУ 0,4 kV. РЗ и СКУ ЭЧ. Cборки. Таблицы внешних подключений",
        'Duration': "150д",
        'Start_date': "2024-06-24T00:00:00.000Z",
        'End_date': "2024-11-20T00:00:00.000Z",
        'Percent_complete': 100,
        'Actual_costs': 293198,
        'Planned_costs': 294198,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. SCG 0.4 kV. RP and EE I&C. Assemblies. Tables of external connections",
        'KKS_documents': "AB2.0120.20ABB.0.AE.MA0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.1",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3958НН+15д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3955",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-24T00:00:00.000Z",
        'planFinishDate': "2024-11-20T00:00:00.000Z",
        'factStartDate': "2024-06-24T00:00:00.000Z",
        'factFinishDate': "2024-11-20T00:00:00.000Z",
        'completionPercentage': 74,
      },
      'attrs': {
        'id': "3955",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы электрических соединений сборок 0,4 кВ",
        'Duration': "150д",
        'Start_date': "2024-06-24T00:00:00.000Z",
        'End_date': "2024-11-20T00:00:00.000Z",
        'Percent_complete': 74,
        'Actual_costs': 110410,
        'Planned_costs': 150203,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Electric connection diagrams for 0.4 kV assemblies",
        'KKS_documents': "AB2.0120.20ABB.0.EM.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.2",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3954НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3956",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-08-27T00:00:00.000Z",
        'planFinishDate': "2024-02-25T00:00:00.000Z",
        'factStartDate': "2023-08-27T00:00:00.000Z",
        'factFinishDate': "2024-02-25T00:00:00.000Z",
        'completionPercentage': 100,
      },
      'attrs': {
        'id': "3956",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Электрическое освещение и розеточная сеть",
        'Duration': "180д",
        'Start_date': "2023-08-27T00:00:00.000Z",
        'End_date': "2024-02-25T00:00:00.000Z",
        'Percent_complete': 100,
        'Actual_costs': 109032,
        'Planned_costs': 110032,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Electric lighting and socket network",
        'KKS_documents': "AB2.0120.20ABB.0.EW.LH0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.3",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3925",
      },
      'metrics': {},
    },
  },
  {
    'id': "3957",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 94,
      },
      'attrs': {
        'id': "3957",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы заполнения сборок 0,38 кВ НЭ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 94,
        'Actual_costs': 121779,
        'Planned_costs': 130552,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. 0.38 kV NO power assemblies filling diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.AT.LU0005",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.4",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3981НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3958",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-09T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-06-09T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 65,
      },
      'attrs': {
        'id': "3958",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы заполнения сборок 0,38 кВ 1 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-06-09T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 65,
        'Actual_costs': 202512,
        'Planned_costs': 312557,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. SS train 1 0.38 kV power assemblies filling diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.AT.LU0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.5",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3957НН+15д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3959",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-09T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-06-09T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 61,
      },
      'attrs': {
        'id': "3959",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы заполнения сборок 0,38 кВ 2 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-06-09T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 61,
        'Actual_costs': 403591,
        'Planned_costs': 334756,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. SS train 2 0.38 kV power assemblies filling diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.AT.LU0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.6",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2024-11-05T00:00:00.000Z",
          'tooltip': "2024-11-05T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3958НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3960",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-09T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-06-09T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 69,
      },
      'attrs': {
        'id': "3960",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы заполнения сборок 0,38 кВ 3 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-06-09T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 69,
        'Actual_costs': 205531,
        'Planned_costs': 298871,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. SS train 3 0.38 kV power assemblies filling diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.AT.LU0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.7",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3959НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3961",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-09T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-06-09T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "3961",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы заполнения сборок 0,38 кВ 4 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-06-09T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 95,
        'Actual_costs': 280400,
        'Planned_costs': 296158,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. SS train 4 0.38 kV power assemblies filling diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.AT.LU0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.8",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3960НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3962",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 68,
      },
      'attrs': {
        'id': "3962",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система общестанционной телефонной связи",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 68,
        'Actual_costs': 262050,
        'Planned_costs': 386368,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Common-plant telephone communication system",
        'KKS_documents': "AB2.0120.20ABB.CYA.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.9",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3981НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3963",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 46,
      },
      'attrs': {
        'id': "3963",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система оперативной громкоговорящей и телефонной связи",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 46,
        'Actual_costs': 122467,
        'Planned_costs': 267233,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operative loudspeaking and telephone communication system",
        'KKS_documents': "AB2.0120.20ABB.CYB.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.10",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3962НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3964",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 97,
      },
      'attrs': {
        'id': "3964",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система оповещения и поиска персонала",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 97,
        'Actual_costs': 276133,
        'Planned_costs': 285673,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Personnel warning and search system",
        'KKS_documents': "AB2.0120.20ABB.CYC.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.11",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3963НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3965",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 50,
      },
      'attrs': {
        'id': "3965",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система часофикации",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 50,
        'Actual_costs': 107745,
        'Planned_costs': 216490,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Master clock system",
        'KKS_documents': "AB2.0120.20ABB.CYF.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.12",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3964НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3966",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 42,
      },
      'attrs': {
        'id': "3966",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система эксплуатационных радиотелефонов",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 42,
        'Actual_costs': 276711,
        'Planned_costs': 659836,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operative radiotelephones system",
        'KKS_documents': "AB2.0120.20ABB.CYY.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.13",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3965НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3967",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-08-01T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-08-01T00:00:00.000Z",
        'completionPercentage': 64,
      },
      'attrs': {
        'id': "3967",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система документирования оперативных переговоров",
        'Duration': "100д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-08-01T00:00:00.000Z",
        'Percent_complete': 64,
        'Actual_costs': 108155,
        'Planned_costs': 169992,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operative talks documenting system",
        'KKS_documents': "AB2.0120.20ABB.CYZ.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.14",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3966НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3968",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-11-05T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-11-05T00:00:00.000Z",
        'completionPercentage': 55,
      },
      'attrs': {
        'id': "3968",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Телекоммуникационная транспортная сеть",
        'Duration': "195д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-11-05T00:00:00.000Z",
        'Percent_complete': 55,
        'Actual_costs': 162034,
        'Planned_costs': 295607,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Telecommunication transport network",
        'KKS_documents': "AB2.0120.20ABB.CYK.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.15",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3967НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3969",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-06-04T00:00:00.000Z",
        'planFinishDate': "2023-09-30T00:00:00.000Z",
        'factStartDate': "2023-06-04T00:00:00.000Z",
        'factFinishDate': "2023-09-30T00:00:00.000Z",
        'completionPercentage': 90,
      },
      'attrs': {
        'id': "3969",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал кабелей системы специального заземления",
        'Duration': "120д",
        'Start_date': "2023-06-04T00:00:00.000Z",
        'End_date': "2023-09-30T00:00:00.000Z",
        'Percent_complete': 90,
        'Actual_costs': 169894,
        'Planned_costs': 189771,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Special earthing system cable log",
        'KKS_documents': "AB2.0120.20ABB.0.ET.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.16",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3982НН+15д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3970",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3970",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система общестанционной телефонной связи. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 333611,
        'Planned_costs': 477757,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Common-plant telephone communication system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYA.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.17",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-08-21T00:00:00.000Z",
          'tooltip': "2024-08-21T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3983НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3971",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 100,
      },
      'attrs': {
        'id': "3971",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система оперативной громкоговорящей и телефонной связи. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 100,
        'Actual_costs': 248903,
        'Planned_costs': 249903,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operative loudspeaking and telephone communication system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYB.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.18",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3970НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3972",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 89,
      },
      'attrs': {
        'id': "3972",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система оповещения и поиска персонала. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 89,
        'Actual_costs': 113330,
        'Planned_costs': 128337,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Personnel warning and search system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYC.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.19",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3971НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3973",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 66,
      },
      'attrs': {
        'id': "3973",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система эксплуатационных радиотелефонов. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 66,
        'Actual_costs': 168194,
        'Planned_costs': 255839,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operative radiotelephones system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYY.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.20",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3976НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3974",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 90,
      },
      'attrs': {
        'id': "3974",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система документирования оперативных переговоров. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 90,
        'Actual_costs': 288495,
        'Planned_costs': 321550,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Operational talks documenting system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYZ.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.21",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3973НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3975",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "3975",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Комплексная система мониторинга систем внутренней связи. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 95,
        'Actual_costs': 221383,
        'Planned_costs': 234035,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Integrated system of internal communication systems monitoring. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.0.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.22",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3974НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3976",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-08-21T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-08-21T00:00:00.000Z",
        'completionPercentage': 53,
      },
      'attrs': {
        'id': "3976",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система часофикации. Журнал контрольных кабелей",
        'Duration': "90д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-08-21T00:00:00.000Z",
        'Percent_complete': 53,
        'Actual_costs': 350979,
        'Planned_costs': 474545,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Master clock system. Control cable log",
        'KKS_documents': "AB2.0120.20ABB.CYF.SS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.23",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-08-21T00:00:00.000Z",
          'tooltip': "2024-08-21T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3972НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3977",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-01-19T00:00:00.000Z",
        'planFinishDate': "2023-03-16T00:00:00.000Z",
        'factStartDate': "2023-01-19T00:00:00.000Z",
        'factFinishDate': "2023-03-16T00:00:00.000Z",
        'completionPercentage': 63,
      },
      'attrs': {
        'id': "3977",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Чертежи заземления",
        'Duration': "120д",
        'Start_date': "2023-01-19T00:00:00.000Z",
        'End_date': "2023-03-16T00:00:00.000Z",
        'Percent_complete': 63,
        'Actual_costs': 129049,
        'Planned_costs': 205840,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Earthing drawings",
        'KKS_documents': "AB2.0120.20ABB.0.ET.TB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.24",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2023-01-19T00:00:00.000Z",
          'tooltip': "2023-01-19T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3920",
      },
      'metrics': {},
    },
  },
  {
    'id': "3978",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-09-07T00:00:00.000Z",
        'planFinishDate': "2024-03-04T00:00:00.000Z",
        'factStartDate': "2023-09-07T00:00:00.000Z",
        'factFinishDate': "2024-03-04T00:00:00.000Z",
        'completionPercentage': 56,
      },
      'attrs': {
        'id': "3978",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Компоновочные чертежи кабельных металлоконструкций",
        'Duration': "180д",
        'Start_date': "2023-09-07T00:00:00.000Z",
        'End_date': "2024-03-04T00:00:00.000Z",
        'Percent_complete': 56,
        'Actual_costs': 250855,
        'Planned_costs': 448955,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Layout drawings of cable metal structures",
        'KKS_documents': "AB2.0120.20ABB.0.EK.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.25",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3924",
      },
      'metrics': {},
    },
  },
  {
    'id': "3979",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-06-24T00:00:00.000Z",
        'planFinishDate': "2024-11-20T00:00:00.000Z",
        'factStartDate': "2024-06-24T00:00:00.000Z",
        'factFinishDate': "2024-11-20T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "3979",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Схемы электрических соединений сборок 0,4 кВ системы нормальной эксплуатации. Журнал силовых кабелей",
        'Duration': "150д",
        'Start_date': "2024-06-24T00:00:00.000Z",
        'End_date': "2024-11-20T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 385467,
        'Planned_costs': 697261,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Electric connection diagrams for 0.4 kV assemblies of the normal operation system. Power cables log",
        'KKS_documents': "AB2.0120.20ABB.0.EM.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.26",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-11-20T00:00:00.000Z",
          'tooltip': "2024-11-20T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3957НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3980",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-08T00:00:00.000Z",
        'planFinishDate': "2024-12-04T00:00:00.000Z",
        'factStartDate': "2024-07-08T00:00:00.000Z",
        'factFinishDate': "2024-12-04T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "3980",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Схемы электрических соединений сборок 0,4 кВ системы безопасности. Журнал силовых кабелей",
        'Duration': "150д",
        'Start_date': "2024-07-08T00:00:00.000Z",
        'End_date': "2024-12-04T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 243536,
        'Planned_costs': 313226,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Electric connection diagrams for 0.4 kV assemblies of the safety system. Power cables log",
        'KKS_documents': "AB2.0120.20ABB.0.EM.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.27",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3979НН+15д",
      },
      'metrics': {},
    },
  },
  {
    'id': "3981",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 57,
      },
      'attrs': {
        'id': "3981",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Компоновочные чертежи электрооборудования",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 57,
        'Actual_costs': 185426,
        'Planned_costs': 326309,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Layout drawings of electrical equipment",
        'KKS_documents': "AB2.0120.20ABB.0.ET.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.28",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3939",
      },
      'metrics': {},
    },
  },
  {
    'id': "3982",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-19T00:00:00.000Z",
        'planFinishDate': "2023-09-16T00:00:00.000Z",
        'factStartDate': "2023-05-19T00:00:00.000Z",
        'factFinishDate': "2023-09-16T00:00:00.000Z",
        'completionPercentage': 53,
      },
      'attrs': {
        'id': "3982",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Чертежи специального заземления",
        'Duration': "120д",
        'Start_date': "2023-05-19T00:00:00.000Z",
        'End_date': "2023-09-16T00:00:00.000Z",
        'Percent_complete': 53,
        'Actual_costs': 256921,
        'Planned_costs': 485757,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Special earthing drawings",
        'KKS_documents': "AB2.0120.20ABB.0.ET.TB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.29",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3977НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3983",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-07-22T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-07-22T00:00:00.000Z",
        'completionPercentage': 76,
      },
      'attrs': {
        'id': "3983",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Система видеорегистрации действий оперативного персонала",
        'Duration': "90д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-07-22T00:00:00.000Z",
        'Percent_complete': 76,
        'Actual_costs': 189500,
        'Planned_costs': 250342,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. System for video recording of operator actions",
        'KKS_documents': "AB2.0120.20ABB.CYH.SS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.30",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3968НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3984",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-08T00:00:00.000Z",
        'planFinishDate': "2024-12-04T00:00:00.000Z",
        'factStartDate': "2024-07-08T00:00:00.000Z",
        'factFinishDate': "2024-12-04T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3984",
        'Task_name':
          "20ABB. Здание резервного пункта управления. КРУ 0,4 кВ СНЭ. Журнал контрольных кабелей. Группа раскладки 3",
        'Duration': "150д",
        'Start_date': "2024-07-08T00:00:00.000Z",
        'End_date': "2024-12-04T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 256350,
        'Planned_costs': 524163,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RPSS 0.4 kV SCG. Control cables log. Layout group 3",
        'KKS_documents': "AB2.0120.20ABB.0.AE.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.31",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3980НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3985",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-08T00:00:00.000Z",
        'planFinishDate': "2024-12-04T00:00:00.000Z",
        'factStartDate': "2024-07-08T00:00:00.000Z",
        'factFinishDate': "2024-12-04T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3985",
        'Task_name':
          "20ABB. Здание резервного пункта управления. КРУ 0,4 кВ САЭ. Журнал контрольных кабелей. Группа раскладки 3",
        'Duration': "150д",
        'Start_date': "2024-07-08T00:00:00.000Z",
        'End_date': "2024-12-04T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 149196,
        'Planned_costs': 305482,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. EPSS 0.4 kV SCG. Control cables log. Layout group 3",
        'KKS_documents': "AB2.0120.20ABB.0.AE.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.ELC",
        'Number_in_structure': "1.3.2.6.3.4.32",
        'parentId': "3953",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3984НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3986",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 92,
      },
      'attrs': {
        'id': "3986",
        'Task_name': "АСУТП",
        'Duration': "492д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 92,
        'Actual_costs': 139010,
        'Planned_costs': 152098,
        'Responsible': "Contractor",
        'English_version': "APCS",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5",
        'parentId': "3915",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "3987",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 82,
      },
      'attrs': {
        'id': "3987",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал силовых кабелей 1 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 82,
        'Actual_costs': 213384,
        'Planned_costs': 261224,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Power cables log, SS train 1",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0015",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.1",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4040НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3988",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 51,
      },
      'attrs': {
        'id': "3988",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал силовых кабелей 2 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 51,
        'Actual_costs': 103349,
        'Planned_costs': 203645,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Power cables log, SS train 2",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0016",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.2",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3987НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3989",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "3989",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал силовых кабелей 3 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 445659,
        'Planned_costs': 600168,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Power cables log, SS train 3",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0017",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.3",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-10-20T00:00:00.000Z",
          'tooltip': "2024-10-20T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3988НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3990",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "3990",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал силовых кабелей 4 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 274988,
        'Planned_costs': 382928,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Power cables log, SS train 4",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0018",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.4",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3989НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3991",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 99,
      },
      'attrs': {
        'id': "3991",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал контрольных кабелей 1 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 99,
        'Actual_costs': 173374,
        'Planned_costs': 176125,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Log of control cables. SS train 1",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0010",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.5",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4039НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3992",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 65,
      },
      'attrs': {
        'id': "3992",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал контрольных кабелей 2 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 65,
        'Actual_costs': 164415,
        'Planned_costs': 253946,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Log of control cables. SS train 2",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0011",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.6",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3991НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3993",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "3993",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал контрольных кабелей 3 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 207474,
        'Planned_costs': 424416,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Log of control cables. SS train 3",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0012",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.7",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3992НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3994",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 50,
      },
      'attrs': {
        'id': "3994",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал контрольных кабелей 4 канал СБ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 50,
        'Actual_costs': 211585,
        'Planned_costs': 424170,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. Log of control cables. SS train 4",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0013",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.8",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3993НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3995",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 58,
      },
      'attrs': {
        'id': "3995",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей ТТК. Нормальная эксплуатация. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 58,
        'Actual_costs': 275872,
        'Planned_costs': 476641,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM control cables log. Normal operation. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.9",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4023НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3996",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 87,
      },
      'attrs': {
        'id': "3996",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей ТТК. 1 Канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 87,
        'Actual_costs': 107635,
        'Planned_costs': 124718,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM control cables log. SS train 1. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.10",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3995НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3997",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 83,
      },
      'attrs': {
        'id': "3997",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей ТТК. 3 Канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 83,
        'Actual_costs': 143581,
        'Planned_costs': 173989,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM control cables log. SS train 3. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.11",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3996НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3998",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 98,
      },
      'attrs': {
        'id': "3998",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей ТТК. 4 Канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 98,
        'Actual_costs': 172572,
        'Planned_costs': 177094,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM control cables log. SS train 4. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MB0005",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.12",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3997НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "3999",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "3999",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей ТТК. 2 Канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 292898,
        'Planned_costs': 338358,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM control cables log. SS train 2. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.13",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-12-09T00:00:00.000Z",
          'tooltip': "2024-12-09T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "3998НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4000",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 45,
      },
      'attrs': {
        'id': "4000",
        'Task_name':
          "20ABB. Здание резервного пункта управления. ПТК СКУ ЭЧ ЭБ. Журнал кабелей от электрооборудования. Группа раскладки 3",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 45,
        'Actual_costs': 103015,
        'Planned_costs': 229922,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. PU EE I&C CS. Electrical equipment cables log. Layout group 3",
        'KKS_documents': "AB2.0120.20ABB.0.EE.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.14",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4016НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4001",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 47,
      },
      'attrs': {
        'id': "4001",
        'Task_name':
          "20ABB. Здание резервного пункта управления. ПТК СКУ ЭЧ ЭБ. Журнал кабелей системной шины ПТК. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 47,
        'Actual_costs': 191015,
        'Planned_costs': 407415,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. PU EE I&C CS. CS system bus cables log. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.EE.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.15",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4000НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4002",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "4002",
        'Task_name':
          "20ABB. Резервный пункт управления. МПУ. ПТК СКУ В. Схема структурная.",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 71,
        'Actual_costs': 189381,
        'Planned_costs': 267734,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room. LCP. V I&C CS. Structural diagram",
        'KKS_documents': "AB2.0120.20ABB.0.AT.FA0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.16",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4005НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4003",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 60,
      },
      'attrs': {
        'id': "4003",
        'Task_name':
          "20ABB. Здание резервного пункта управления. СКУ ПЗ. Пожарная сигнализация",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 60,
        'Actual_costs': 255786,
        'Planned_costs': 427310,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. FP I&C. Fire alarm",
        'KKS_documents': "AB2.0120.20ABB.0.PS.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.17",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3981НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4004",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 79,
      },
      'attrs': {
        'id': "4004",
        'Task_name':
          "20ABB. Здание резервного пункта управления. СКУ ПЗ. Оповещение о пожаре",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 79,
        'Actual_costs': 262053,
        'Planned_costs': 332713,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. FP I&C. Fire annunciation",
        'KKS_documents': "AB2.0120.20ABB.0.PS.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.18",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4003НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4005",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 97,
      },
      'attrs': {
        'id': "4005",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы присоединений кабелей к панелям и пультам БПУ, РПУ. Панели безопасности РПУ, 1 канал",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 97,
        'Actual_costs': 104538,
        'Planned_costs': 108771,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of cable connections to MCR and ECR panels and consoles. ECR safety panels, train 1",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0012",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.19",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3957НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4006",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "4006",
        'Task_name':
          "20ABB. Здание резервного пу нкта управления. Схемы присоединений кабелей к панелям и пультам БПУ, РПУ. Панели безопасности РПУ, 2 канал",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 96,
        'Actual_costs': 249059,
        'Planned_costs': 260437,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of cable connections to MCR and ECR panels and consoles. ECR safety panels, train 2",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0013",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.20",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4005НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4007",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 85,
      },
      'attrs': {
        'id': "4007",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы присоединений кабелей к панелям и пультам БПУ, РПУ. Панели безопасности РПУ, 3 канал",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 85,
        'Actual_costs': 222310,
        'Planned_costs': 262541,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of cable connections to MCR and ECR panels and consoles. ECR safety panels, train 3",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0014",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.21",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4006НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4008",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 66,
      },
      'attrs': {
        'id': "4008",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы присоединений кабелей к панелям и пультам БПУ, РПУ. Панели безопасности РПУ, 4 канал",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 66,
        'Actual_costs': 207955,
        'Planned_costs': 316083,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of cable connections to MCR and ECR panels and consoles. ECR safety panels, train 4",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0015",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.22",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4007НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4009",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 75,
      },
      'attrs': {
        'id': "4009",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы присоединений кабелей к панелям и пультам БПУ, РПУ. Панель СУЗ РПУ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 75,
        'Actual_costs': 291477,
        'Planned_costs': 389636,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of cable connections to MCR and ECR panels and consoles. ECR CPS panel",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0016",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.23",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4010НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4010",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "4010",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы внешних присоединений СВБУ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 95,
        'Actual_costs': 205378,
        'Planned_costs': 217187,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Diagrams of external connections of ULCS",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MA0011",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.24",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4005НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4011",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 65,
      },
      'attrs': {
        'id': "4011",
        'Task_name':
          "20ABB. Здание резервного пункта управления. РД по радиационному контролю. Кабельные соединения РК. Перечень кабельных соединений РК",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 65,
        'Actual_costs': 180258,
        'Planned_costs': 278320,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. WD on radiation monitoring. RM cable connections. List of RM cable connections",
        'KKS_documents': "AB2.0120.20ABB.0.RK.TB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.25",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4023НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4012",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-12T00:00:00.000Z",
        'planFinishDate': "2025-01-08T00:00:00.000Z",
        'factStartDate': "2024-08-12T00:00:00.000Z",
        'factFinishDate': "2025-01-08T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "4012",
        'Task_name':
          "20ABB. Здание резервного пункта управления. РД по радиационному контролю. Кабельные соединения РК. Схемы внешних присоединений РК",
        'Duration': "150д",
        'Start_date': "2024-08-12T00:00:00.000Z",
        'End_date': "2025-01-08T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 221445,
        'Planned_costs': 284904,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. WD on radiation monitoring. RM cable connections. Diagrams of RM external connections",
        'KKS_documents': "AB2.0120.20ABB.0.RK.TB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.26",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4011НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4013",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-12T00:00:00.000Z",
        'planFinishDate': "2025-01-08T00:00:00.000Z",
        'factStartDate': "2024-08-12T00:00:00.000Z",
        'factFinishDate': "2025-01-08T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "4013",
        'Task_name':
          "20ABB. Здание резервного пункта управления. РД по радиационному контролю. Кабельные соединения РК. Схемы электрических соединений РК",
        'Duration': "150д",
        'Start_date': "2024-08-12T00:00:00.000Z",
        'End_date': "2025-01-08T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 291372,
        'Planned_costs': 561331,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. WD on radiation monitoring. RM cable connections. RM electric connection diagrams",
        'KKS_documents': "AB2.0120.20ABB.0.RK.TB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.27",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4012НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4014",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-09-12T00:00:00.000Z",
        'planFinishDate': "2025-03-08T00:00:00.000Z",
        'factStartDate': "2024-09-12T00:00:00.000Z",
        'factFinishDate': "2025-03-08T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "4014",
        'Task_name':
          "20ABB. Здание резервного пункта управления. РД по радиационному контролю. Компоновка оборудования РК",
        'Duration': "180д",
        'Start_date': "2024-09-12T00:00:00.000Z",
        'End_date': "2025-03-08T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 171259,
        'Planned_costs': 330344,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. WD for radiation monitoring. RM equipment layout",
        'KKS_documents': "AB2.0120.20ABB.0.RK.TB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.28",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4013НН+30д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4015",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-10-06T00:00:00.000Z",
        'planFinishDate': "2025-03-23T00:00:00.000Z",
        'factStartDate': "2024-10-06T00:00:00.000Z",
        'factFinishDate': "2025-03-23T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "4015",
        'Task_name':
          "20ABB. Здание резервного пункта управления. РД по радиационному контролю. Трассы пробоотборных трубопроводов РК",
        'Duration': "170д",
        'Start_date': "2024-10-06T00:00:00.000Z",
        'End_date': "2025-03-23T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 267641,
        'Planned_costs': 295111,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. WD for radiation monitoring. RM sampling piping routes",
        'KKS_documents': "AB2.0120.20ABB.0.RK.TB0006",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.29",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4014НН+25д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4016",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "4016",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Здание резервного пункта управления блоком. ПТК СКУ ЭЧ ЭБ. Таблицы внешних подключений",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 152930,
        'Planned_costs': 197064,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Emergency control room building. PU EE I&C CS. Tables of external connections",
        'KKS_documents': "AB2.0120.20ABB.0.EE.MA0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.30",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4010НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4017",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2024-12-09T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2024-12-09T00:00:00.000Z",
        'completionPercentage': 69,
      },
      'attrs': {
        'id': "4017",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Схемы питания МПУ вторичных преобразователей КИП",
        'Duration': "150д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2024-12-09T00:00:00.000Z",
        'Percent_complete': 69,
        'Actual_costs': 246810,
        'Planned_costs': 358696,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Power supply diagrams for LCP secondary I&C transducers",
        'KKS_documents': "AB2.0120.20ABB.0.AT.FS0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.31",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "3955НН+20д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4018",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 58,
      },
      'attrs': {
        'id': "4018",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал перемычек контрольных кабелей панелей безопасности РПУ, 1 канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 58,
        'Actual_costs': 101361,
        'Planned_costs': 175760,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of control cable bridges of ECR safety panels, SS train 1. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.32",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4005НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4019",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "4019",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал перемычек контрольных кабелей панелей безопасности РПУ, 2 канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 96,
        'Actual_costs': 358146,
        'Planned_costs': 269902,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of control cable bridges of ECR safety panels, SS train 2. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0005",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.33",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2024-10-20T00:00:00.000Z",
          'tooltip': "2024-10-20T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "4018НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4020",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "4020",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал перемычек контрольных кабелей панелей безопасности РПУ, 3 канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 285384,
        'Planned_costs': 549815,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of control cable bridges of ECR safety panels, SS train 3. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0006",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.34",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4019НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4021",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 99,
      },
      'attrs': {
        'id': "4021",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал перемычек контрольных кабелей панелей безопасности РПУ, 4 канал СБ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 99,
        'Actual_costs': 206022,
        'Planned_costs': 209103,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of control cable bridges of ECR safety panels, SS train 4. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0007",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.35",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4020НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4022",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 41,
      },
      'attrs': {
        'id': "4022",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журналы перемычек контрольных кабелей для пультов РПУ. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 41,
        'Actual_costs': 247484,
        'Planned_costs': 604620,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Control cable bridges logs for ECR consoles. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0008",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.36",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4021НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4023",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-07-13T00:00:00.000Z",
        'planFinishDate': "2025-03-18T00:00:00.000Z",
        'factStartDate': "2024-07-13T00:00:00.000Z",
        'factFinishDate': "2025-03-18T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "4023",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Перечень измерительных контуров ТТК",
        'Duration': "250д",
        'Start_date': "2024-07-13T00:00:00.000Z",
        'End_date': "2025-03-18T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 162604,
        'Planned_costs': 226839,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. List of process parameter instrumentation loops",
        'KKS_documents': "AB2.0120.20ABB.0.AK.PC0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.37",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4017НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4024",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-02T00:00:00.000Z",
        'planFinishDate': "2024-12-29T00:00:00.000Z",
        'factStartDate': "2024-08-02T00:00:00.000Z",
        'factFinishDate': "2024-12-29T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "4024",
        'Task_name':
          "20ABB. Здание резервного пун кта управления. Трассы импульсных линий ТТК",
        'Duration': "150д",
        'Start_date': "2024-08-02T00:00:00.000Z",
        'End_date': "2024-12-29T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 146390,
        'Planned_costs': 161868,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM pulse lines routes",
        'KKS_documents': "AB2.0120.20ABB.0.AK.LH0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.38",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4023НН+20д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4025",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-17T00:00:00.000Z",
        'planFinishDate': "2025-01-13T00:00:00.000Z",
        'factStartDate': "2024-08-17T00:00:00.000Z",
        'factFinishDate': "2025-01-13T00:00:00.000Z",
        'completionPercentage': 94,
      },
      'attrs': {
        'id': "4025",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Обвязка коллекторов стендов датчиков ТТК",
        'Duration': "150д",
        'Start_date': "2024-08-17T00:00:00.000Z",
        'End_date': "2025-01-13T00:00:00.000Z",
        'Percent_complete': 94,
        'Actual_costs': 186731,
        'Planned_costs': 199650,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Piping of headers of TPPM sensor mounting racks",
        'KKS_documents': "AB2.0120.20ABB.0.AK.LH0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.39",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4024НН+15д",
      },
      'metrics': {},
    },
  },
  {
    'id': "4026",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-17T00:00:00.000Z",
        'planFinishDate': "2025-01-13T00:00:00.000Z",
        'factStartDate': "2024-08-17T00:00:00.000Z",
        'factFinishDate': "2025-01-13T00:00:00.000Z",
        'completionPercentage': 90,
      },
      'attrs': {
        'id': "4026",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Кабельные соединения датчиков ТТК",
        'Duration': "150д",
        'Start_date': "2024-08-17T00:00:00.000Z",
        'End_date': "2025-01-13T00:00:00.000Z",
        'Percent_complete': 90,
        'Actual_costs': 257099,
        'Planned_costs': 175554,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM sensors cable connections",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MA0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.40",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2025-01-13T00:00:00.000Z",
          'tooltip': "2025-01-13T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "4025НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4027",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-08-17T00:00:00.000Z",
        'planFinishDate': "2025-01-13T00:00:00.000Z",
        'factStartDate': "2024-08-17T00:00:00.000Z",
        'factFinishDate': "2025-01-13T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "4027",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Трубные соединения датчиков ТТК",
        'Duration': "150д",
        'Start_date': "2024-08-17T00:00:00.000Z",
        'End_date': "2025-01-13T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 227421,
        'Planned_costs': 316863,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. TPPM sensors pipe connections",
        'KKS_documents': "AB2.0120.20ABB.0.AK.MA0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.41",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4026НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4028",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-03-24T00:00:00.000Z",
        'planFinishDate': "2023-05-20T00:00:00.000Z",
        'factStartDate': "2023-03-24T00:00:00.000Z",
        'factFinishDate': "2023-05-20T00:00:00.000Z",
        'completionPercentage': 91,
      },
      'attrs': {
        'id': "4028",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал оптоволоконных кабелей СВБУ. Нормальная эксплуатация. Группа раскладки 5.",
        'Duration': "150д",
        'Start_date': "2023-03-24T00:00:00.000Z",
        'End_date': "2023-05-20T00:00:00.000Z",
        'Percent_complete': 91,
        'Actual_costs': 250387,
        'Planned_costs': 276151,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of ULCS fiber optic cables. Normal operation. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.42",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': "ir001",
          'date': "2023-03-24T00:00:00.000Z",
          'tooltip': "2023-03-24T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4010НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4029",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 47,
      },
      'attrs': {
        'id': "4029",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал оптоволоконных кабелей СВБУ. 1 канал СБ. Группа раскладки 5.",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 47,
        'Actual_costs': 207078,
        'Planned_costs': 441592,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of ULCS fiber optic cables. SS train 1. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.43",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4028НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4030",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 87,
      },
      'attrs': {
        'id': "4030",
        'Task_name':
          "20ABB. Здание резервного пункта управления блоком. Журнал оптоволоконных кабелей СВБУ. 3 канал СБ. Группа раскладки 5.",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 87,
        'Actual_costs': 178360,
        'Planned_costs': 206012,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. Log of ULCS fiber optic cables. SS train 3. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.44",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4029НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4031",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-10-06T00:00:00.000Z",
        'planFinishDate': "2025-04-03T00:00:00.000Z",
        'factStartDate': "2024-10-06T00:00:00.000Z",
        'factFinishDate': "2025-04-03T00:00:00.000Z",
        'completionPercentage': 49,
      },
      'attrs': {
        'id': "4031",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей РК. Нормальная эксплуатация. Группа раскладки 5",
        'Duration': "180д",
        'Start_date': "2024-10-06T00:00:00.000Z",
        'End_date': "2025-04-03T00:00:00.000Z",
        'Percent_complete': 49,
        'Actual_costs': 129102,
        'Planned_costs': 264474,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RM control cables log. Normal operation. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.RK.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.45",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4015НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4032",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-10-06T00:00:00.000Z",
        'planFinishDate': "2025-04-03T00:00:00.000Z",
        'factStartDate': "2024-10-06T00:00:00.000Z",
        'factFinishDate': "2025-04-03T00:00:00.000Z",
        'completionPercentage': 68,
      },
      'attrs': {
        'id': "4032",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей РК. 1 Канал безопасности. Группа раскладки 5",
        'Duration': "180д",
        'Start_date': "2024-10-06T00:00:00.000Z",
        'End_date': "2025-04-03T00:00:00.000Z",
        'Percent_complete': 68,
        'Actual_costs': 218631,
        'Planned_costs': 322516,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RM control cables log. Safety train 1. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.RK.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.46",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4031НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4033",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2025-04-04T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2025-04-04T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 65,
      },
      'attrs': {
        'id': "4033",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей РК. 2 Канал безопасности. Группа раскладки 5",
        'Duration': "147д",
        'Start_date': "2025-04-04T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 65,
        'Actual_costs': 293596,
        'Planned_costs': 452686,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RM control cables log. Safety train 2. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.RK.MB0003",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.47",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4032",
      },
      'metrics': {},
    },
  },
  {
    'id': "4034",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2025-04-04T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2025-04-04T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 63,
      },
      'attrs': {
        'id': "4034",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей РК. 3 Канал безопасности. Группа раскладки 5",
        'Duration': "147д",
        'Start_date': "2025-04-04T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 63,
        'Actual_costs': 214660,
        'Planned_costs': 341730,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RM control cables log. Safety train 3. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.RK.MB0004",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.48",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4033НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4035",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2025-04-04T00:00:00.000Z",
        'planFinishDate': "2025-08-27T00:00:00.000Z",
        'factStartDate': "2025-04-04T00:00:00.000Z",
        'factFinishDate': "2025-08-27T00:00:00.000Z",
        'completionPercentage': 94,
      },
      'attrs': {
        'id': "4035",
        'Task_name':
          "20ABB. Здание резервного пункта управления. Журнал контрольных кабелей РК. 4 Канал безопасности. Группа раскладки 5",
        'Duration': "147д",
        'Start_date': "2025-04-04T00:00:00.000Z",
        'End_date': "2025-08-27T00:00:00.000Z",
        'Percent_complete': 94,
        'Actual_costs': 249805,
        'Planned_costs': 266750,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. RM control cables log. Safety train 4. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.RK.MB0005",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.49",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4034НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4036",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "4036",
        'Task_name':
          "20ABB. Здание резервного пункта управления. ПТК СКУ ЭЧ ЭБ. Схема структурная комплекса технических средств",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 72,
        'Actual_costs': 146768,
        'Planned_costs': 204844,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. PU EE I&C CS. Structural diagram of the equipment set",
        'KKS_documents': "AB2.0120.20ABB.0.EE.FA0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.50",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4000НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4037",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 55,
      },
      'attrs': {
        'id': "4037",
        'Task_name':
          "20ABB. Здание резервного пункта управления. СКУ ПЗ. Пожарная сигнализация. Журнал контрольных кабелей. Группа раскладки 5",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 55,
        'Actual_costs': 107205,
        'Planned_costs': 195918,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. FP I&C. Fire alarm. Control cables log. Layout group 5",
        'KKS_documents': "AB2.0120.20ABB.0.PS.MB0001",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.51",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4004НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4038",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-04-25T00:00:00.000Z",
        'planFinishDate': "2024-09-21T00:00:00.000Z",
        'factStartDate': "2024-04-25T00:00:00.000Z",
        'factFinishDate': "2024-09-21T00:00:00.000Z",
        'completionPercentage': 100,
      },
      'attrs': {
        'id': "4038",
        'Task_name':
          "20ABB. Здание резервного пункта управления. СКУ ПЗ. Пожарная сигнализация. Журнал силовых кабелей. Группа раскладки 3",
        'Duration': "150д",
        'Start_date': "2024-04-25T00:00:00.000Z",
        'End_date': "2024-09-21T00:00:00.000Z",
        'Percent_complete': 100,
        'Actual_costs': 197577,
        'Planned_costs': 198577,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. FP I&C. Fire alarm. Power cables log. Layout group 3",
        'KKS_documents': "AB2.0120.20ABB.0.PS.MB0002",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.52",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4037НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4039",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "4039",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал контрольных кабелей НЭ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 71,
        'Actual_costs': 366740,
        'Planned_costs': 376690,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. NO control cables log",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0014",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.53",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-10-20T00:00:00.000Z",
          'tooltip': "2024-10-20T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "4040НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4040",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-24T00:00:00.000Z",
        'planFinishDate': "2024-10-20T00:00:00.000Z",
        'factStartDate': "2024-05-24T00:00:00.000Z",
        'factFinishDate': "2024-10-20T00:00:00.000Z",
        'completionPercentage': 43,
      },
      'attrs': {
        'id': "4040",
        'Task_name':
          "20ABB. Здание резервного пункта управления. МПУ. Журнал силовых кабелей НЭ",
        'Duration': "150д",
        'Start_date': "2024-05-24T00:00:00.000Z",
        'End_date': "2024-10-20T00:00:00.000Z",
        'Percent_complete': 43,
        'Actual_costs': 230936,
        'Planned_costs': 538061,
        'Responsible': "Contractor",
        'English_version':
          "20ABB. Emergency control room building. LCP. NO power cables log",
        'KKS_documents': "AB2.0120.20ABB.0.AT.MB0019",
        'WBS_structural_code': "A2.ABC.20ABB.CIW.APC",
        'Number_in_structure': "1.3.2.6.3.5.54",
        'parentId': "3986",
        'wbsId': "3916",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4002НН",
      },
      'metrics': {},
    },
  },
  {
    'id': "4041",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-03-20T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2023-03-20T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 46,
      },
      'attrs': {
        'id': "4041",
        'Task_name':
          "20ACU Сооружение для баков запаса обессоленной воды и бака загрязнённого конденсата",
        'Duration': "410д",
        'Start_date': "2023-03-20T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 46,
        'Actual_costs': 225292,
        'Planned_costs': 490765,
        'Responsible': "Contractor",
        'English_version':
          "20ACU Structure for demineralized water tanks and contaminated condensate tank",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU",
        'Number_in_structure': "1.3.2.7",
        'parentId': null,
        'wbsId': null,
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4042",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 95,
      },
      'attrs': {
        'id': "4042",
        'Task_name': "Разрешение",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 95,
        'Actual_costs': 175767,
        'Planned_costs': 186018,
        'Responsible': "Contractor",
        'English_version': "Permission",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.PRM",
        'Number_in_structure': "1.3.2.7.1",
        'parentId': "4041",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4043",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 72,
      },
      'attrs': {
        'id': "4043",
        'Task_name': "Разрешения на сооружения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 72,
        'Actual_costs': 116772,
        'Planned_costs': 163183,
        'Responsible': "Contractor",
        'English_version': "Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.PRM",
        'Number_in_structure': "1.3.2.7.1.1",
        'parentId': "4042",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4044",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 73,
      },
      'attrs': {
        'id': "4044",
        'Task_name': "Специальные разрешения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 73,
        'Actual_costs': 273320,
        'Planned_costs': 375411,
        'Responsible': "Contractor",
        'English_version': "Special Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.PRM",
        'Number_in_structure': "1.3.2.7.1.2",
        'parentId': "4042",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4045",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "4045",
        'Task_name': "Инжиниринг",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 96,
        'Actual_costs': 164700,
        'Planned_costs': 172563,
        'Responsible': "Contractor",
        'English_version': "Engineering",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.ENG",
        'Number_in_structure': "1.3.2.7.2",
        'parentId': "4041",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4046",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 68,
      },
      'attrs': {
        'id': "4046",
        'Task_name': "Рабочий проект",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 68,
        'Actual_costs': 247617,
        'Planned_costs': 365143,
        'Responsible': "Contractor",
        'English_version': "Detail Design",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.ENG",
        'Number_in_structure': "1.3.2.7.2.1",
        'parentId': "4045",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4047",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 79,
      },
      'attrs': {
        'id': "4047",
        'Task_name': "Проекты производства работ",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 79,
        'Actual_costs': 222914,
        'Planned_costs': 283170,
        'Responsible': "Contractor",
        'English_version': "Work Procedure Report",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.ENG",
        'Number_in_structure': "1.3.2.7.2.2",
        'parentId': "4045",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4048",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-03-20T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2023-03-20T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 74,
      },
      'attrs': {
        'id': "4048",
        'Task_name': "Строительно-монтажные работы, ПНР",
        'Duration': "410д",
        'Start_date': "2023-03-20T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 74,
        'Actual_costs': 278289,
        'Planned_costs': 377066,
        'Responsible': "Contractor",
        'English_version':
          "Construction and Installation Work (Includes Pre-Commissioning)",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.CIW",
        'Number_in_structure': "1.3.2.7.3",
        'parentId': "4041",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4049",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-05-03T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2024-05-03T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 61,
      },
      'attrs': {
        'id': "4049",
        'Task_name': "Готовность объекта 20ACU",
        'Duration': "0д",
        'Start_date': "2024-05-03T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 61,
        'Actual_costs': 119847,
        'Planned_costs': 197471,
        'Responsible': "Contractor",
        'English_version': "Readiness of object 20ACU",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.CIW",
        'Number_in_structure': "1.3.2.7.3.1",
        'parentId': "4048",
        'wbsId': "4041",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4051;4059;4052;4054;4055;4058;4056;4057",
      },
      'metrics': {},
    },
  },
  {
    'id': "4050",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-03-20T00:00:00.000Z",
        'planFinishDate': "2023-11-15T00:00:00.000Z",
        'factStartDate': "2023-03-20T00:00:00.000Z",
        'factFinishDate': "2023-11-15T00:00:00.000Z",
        'completionPercentage': 71,
      },
      'attrs': {
        'id': "4050",
        'Task_name': "Строительные работы",
        'Duration': "240д",
        'Start_date': "2023-03-20T00:00:00.000Z",
        'End_date': "2023-11-15T00:00:00.000Z",
        'Percent_complete': 71,
        'Actual_costs': 194830,
        'Planned_costs': 275409,
        'Responsible': "Contractor",
        'English_version': "Civil works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.CIW.CVL",
        'Number_in_structure': "1.3.2.7.3.2",
        'parentId': "4048",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4051",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-03-20T00:00:00.000Z",
        'planFinishDate': "2023-06-18T00:00:00.000Z",
        'factStartDate': "2023-03-20T00:00:00.000Z",
        'factFinishDate': "2023-06-18T00:00:00.000Z",
        'completionPercentage': 93,
      },
      'attrs': {
        'id': "4051",
        'Task_name':
          "20ACU. Здание для баков запаса обессоленной воды и бака загрязненного конденсата. Фундаменты",
        'Duration': "90д",
        'Start_date': "2023-03-20T00:00:00.000Z",
        'End_date': "2023-06-18T00:00:00.000Z",
        'Percent_complete': 93,
        'Actual_costs': 232800,
        'Planned_costs': 251323,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Foundations",
        'KKS_documents': "AB2.0130.20ACU.0.KZ.TB0001",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.CVL",
        'Number_in_structure': "1.3.2.7.3.2.1",
        'parentId': "4050",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "5195",
      },
      'metrics': {},
    },
  },
  {
    'id': "4052",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-06-19T00:00:00.000Z",
        'planFinishDate': "2023-11-15T00:00:00.000Z",
        'factStartDate': "2023-06-19T00:00:00.000Z",
        'factFinishDate': "2023-11-15T00:00:00.000Z",
        'completionPercentage': 64,
      },
      'attrs': {
        'id': "4052",
        'Task_name':
          "20ACU. Здание для баков запаса обессоленной воды и бака загрязненного конденсата. Металлоконструкции",
        'Duration': "150д",
        'Start_date': "2023-06-19T00:00:00.000Z",
        'End_date': "2023-11-15T00:00:00.000Z",
        'Percent_complete': 64,
        'Actual_costs': 375993,
        'Planned_costs': 275989,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Steel structures",
        'KKS_documents': "AB2.0130.20ACU.0.KM.TB0001",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.CVL",
        'Number_in_structure': "1.3.2.7.3.2.2",
        'parentId': "4050",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir003",
          'date': "2023-11-15T00:00:00.000Z",
          'tooltip': "2023-11-15T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "4051",
      },
      'metrics': {},
    },
  },
  {
    'id': "4053",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-06-19T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2023-06-19T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 61,
      },
      'attrs': {
        'id': "4053",
        'Task_name': "Тепломонтажные работы",
        'Duration': "320д",
        'Start_date': "2023-06-19T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 61,
        'Actual_costs': 111904,
        'Planned_costs': 184449,
        'Responsible': "Contractor",
        'English_version': "Process works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3",
        'parentId': "4048",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4054",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-11-16T00:00:00.000Z",
        'planFinishDate': "2024-01-28T00:00:00.000Z",
        'factStartDate': "2023-11-16T00:00:00.000Z",
        'factFinishDate': "2024-01-28T00:00:00.000Z",
        'completionPercentage': 88,
      },
      'attrs': {
        'id': "4054",
        'Task_name':
          "20ACU. Сооружение для баков запаса химобессоленной воды и бака грязного конденсата. Трубопроводы обвязки БГК",
        'Duration': "75д",
        'Start_date': "2023-11-16T00:00:00.000Z",
        'End_date': "2024-01-28T00:00:00.000Z",
        'Percent_complete': 88,
        'Actual_costs': 215438,
        'Planned_costs': 245816,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Contaminated condensate tank piping",
        'KKS_documents': "AB2.0130.20ACU.0.TM.TB0002",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.1",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4059;4051;4052",
      },
      'metrics': {},
    },
  },
  {
    'id': "4055",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-11-16T00:00:00.000Z",
        'planFinishDate': "2024-02-29T00:00:00.000Z",
        'factStartDate': "2023-11-16T00:00:00.000Z",
        'factFinishDate': "2024-02-29T00:00:00.000Z",
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "4055",
        'Task_name':
          "20ACU. Сооружение для баков запаса химобессоленной воды и бака грязного конденсата. Трубопроводы обвязки БЗОВ",
        'Duration': "105д",
        'Start_date': "2023-11-16T00:00:00.000Z",
        'End_date': "2024-02-29T00:00:00.000Z",
        'Percent_complete': 78,
        'Actual_costs': 291520,
        'Planned_costs': 374744,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Demineralized water tank piping",
        'KKS_documents': "AB2.0130.20ACU.0.TM.TB0003",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.2",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4059;4051",
      },
      'metrics': {},
    },
  },
  {
    'id': "4056",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-03-20T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2024-03-20T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 52,
      },
      'attrs': {
        'id': "4056",
        'Task_name':
          "20ACU. Сооружение для баков запаса обессоленной воды и бака загрязнённого конденсата. Трубопроводы обвязки БГК. Тепловая изоляция.",
        'Duration': "45д",
        'Start_date': "2024-03-20T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 52,
        'Actual_costs': 105458,
        'Planned_costs': 203804,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Pipelines within the piping of the contaminated condensate tank. Heat insulation.",
        'KKS_documents': "AB2.0130.20ACU.0.TZ.PA0001",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.3",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4058",
      },
      'metrics': {},
    },
  },
  {
    'id': "4057",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-03-20T00:00:00.000Z",
        'planFinishDate': "2024-05-03T00:00:00.000Z",
        'factStartDate': "2024-03-20T00:00:00.000Z",
        'factFinishDate': "2024-05-03T00:00:00.000Z",
        'completionPercentage': 48,
      },
      'attrs': {
        'id': "4057",
        'Task_name':
          "20ACU. Сооружение для баков запаса обессоленной воды и бака загрязнённого конденсата. Трубопроводы обвязки БЗОВ. Тепловая изоляция.",
        'Duration': "45д",
        'Start_date': "2024-03-20T00:00:00.000Z",
        'End_date': "2024-05-03T00:00:00.000Z",
        'Percent_complete': 48,
        'Actual_costs': 105788,
        'Planned_costs': 221392,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Pipelines within the piping of the demineralized water storage tank. Heat insulation.",
        'KKS_documents': "AB2.0130.20ACU.0.TZ.PA0002",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.4",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4058",
      },
      'metrics': {},
    },
  },
  {
    'id': "4058",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-02-01T00:00:00.000Z",
        'planFinishDate': "2024-03-19T00:00:00.000Z",
        'factStartDate': "2024-02-01T00:00:00.000Z",
        'factFinishDate': "2024-03-19T00:00:00.000Z",
        'completionPercentage': 94,
      },
      'attrs': {
        'id': "4058",
        'Task_name':
          "20ACU. Сооружение для баков запаса химобессоленной воды и бака грязного конденсата. Опознавательная окраска оборудования и трубопроводов",
        'Duration': "50д",
        'Start_date': "2024-02-01T00:00:00.000Z",
        'End_date': "2024-03-19T00:00:00.000Z",
        'Percent_complete': 94,
        'Actual_costs': 169699,
        'Planned_costs': 181531,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Identification painting of equipment and pipelines",
        'KKS_documents': "AB2.0130.20ACU.0.TM.TB0004",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.5",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4054",
      },
      'metrics': {},
    },
  },
  {
    'id': "4059",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-06-19T00:00:00.000Z",
        'planFinishDate': "2023-11-15T00:00:00.000Z",
        'factStartDate': "2023-06-19T00:00:00.000Z",
        'factFinishDate': "2023-11-15T00:00:00.000Z",
        'completionPercentage': 59,
      },
      'attrs': {
        'id': "4059",
        'Task_name':
          "20ACU. Сооружение для баков запаса химобессоленной воды и бака грязного конденсата. Монтажные чертежи баков UGB",
        'Duration': "150д",
        'Start_date': "2023-06-19T00:00:00.000Z",
        'End_date': "2023-11-15T00:00:00.000Z",
        'Percent_complete': 59,
        'Actual_costs': 289314,
        'Planned_costs': 491363,
        'Responsible': "Contractor",
        'English_version':
          "20ACU. Structure for demineralized water tanks and contaminated condensate tank. Assembly drawings of UGB tanks",
        'KKS_documents': "AB2.0130.20ACU.LCP.TM.TB0001",
        'WBS_structural_code': "A2.ABC.20ACU.CIW.MAP",
        'Number_in_structure': "1.3.2.7.3.3.6",
        'parentId': "4053",
        'wbsId': "4049",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4051",
      },
      'metrics': {},
    },
  },
  {
    'id': "4060",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-09-01T00:00:00.000Z",
        'planFinishDate': "2024-01-27T00:00:00.000Z",
        'factStartDate': "2022-09-01T00:00:00.000Z",
        'factFinishDate': "2024-01-27T00:00:00.000Z",
        'completionPercentage': 98,
      },
      'attrs': {
        'id': "4060",
        'Task_name':
          "20ACW Площадка для размещения альтернативных средств для управления запроектной аварией",
        'Duration': "515д",
        'Start_date': "2022-09-01T00:00:00.000Z",
        'End_date': "2024-01-27T00:00:00.000Z",
        'Percent_complete': 98,
        'Actual_costs': 107810,
        'Planned_costs': 111010,
        'Responsible': "Contractor",
        'English_version':
          "20ACW Area for arranging alternative means to control a beyond-design-basis accident",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW",
        'Number_in_structure': "1.3.2.8",
        'parentId': null,
        'wbsId': null,
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4061",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 79,
      },
      'attrs': {
        'id': "4061",
        'Task_name': "Разрешение",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 79,
        'Actual_costs': 163461,
        'Planned_costs': 207913,
        'Responsible': "Contractor",
        'English_version': "Permission",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.PRM",
        'Number_in_structure': "1.3.2.8.1",
        'parentId': "4060",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4062",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 96,
      },
      'attrs': {
        'id': "4062",
        'Task_name': "Разрешения на сооружения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 96,
        'Actual_costs': 107126,
        'Planned_costs': 112590,
        'Responsible': "Contractor",
        'English_version': "Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.PRM",
        'Number_in_structure': "1.3.2.8.1.1",
        'parentId': "4061",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4063",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 44,
      },
      'attrs': {
        'id': "4063",
        'Task_name': "Специальные разрешения",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 44,
        'Actual_costs': 192839,
        'Planned_costs': 439271,
        'Responsible': "Contractor",
        'English_version': "Special Permits",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.PRM",
        'Number_in_structure': "1.3.2.8.1.2",
        'parentId': "4061",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4064",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 90,
      },
      'attrs': {
        'id': "4064",
        'Task_name': "Инжиниринг",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 90,
        'Actual_costs': 231919,
        'Planned_costs': 258688,
        'Responsible': "Contractor",
        'English_version': "Engineering",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.ENG",
        'Number_in_structure': "1.3.2.8.2",
        'parentId': "4060",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4065",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 59,
      },
      'attrs': {
        'id': "4065",
        'Task_name': "Рабочий проект",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 59,
        'Actual_costs': 284814,
        'Planned_costs': 483736,
        'Responsible': "Contractor",
        'English_version': "Detail Design",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.ENG",
        'Number_in_structure': "1.3.2.8.2.1",
        'parentId': "4064",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4066",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': null,
        'planFinishDate': null,
        'factStartDate': null,
        'factFinishDate': null,
        'completionPercentage': 78,
      },
      'attrs': {
        'id': "4066",
        'Task_name': "Проекты производства работ",
        'Duration': null,
        'Start_date': null,
        'End_date': null,
        'Percent_complete': 78,
        'Actual_costs': 272050,
        'Planned_costs': 349782,
        'Responsible': "Contractor",
        'English_version': "Work Procedure Report",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.ENG",
        'Number_in_structure': "1.3.2.8.2.2",
        'parentId': "4064",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4067",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-09-01T00:00:00.000Z",
        'planFinishDate': "2024-01-27T00:00:00.000Z",
        'factStartDate': "2022-09-01T00:00:00.000Z",
        'factFinishDate': "2024-01-27T00:00:00.000Z",
        'completionPercentage': 89,
      },
      'attrs': {
        'id': "4067",
        'Task_name': "Строительно-монтажные работы, ПНР",
        'Duration': "515д",
        'Start_date': "2022-09-01T00:00:00.000Z",
        'End_date': "2024-01-27T00:00:00.000Z",
        'Percent_complete': 89,
        'Actual_costs': 142375,
        'Planned_costs': 160972,
        'Responsible': "Contractor",
        'English_version':
          "Construction and Installation Work (Includes Pre-Commissioning)",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.CIW",
        'Number_in_structure': "1.3.2.8.3",
        'parentId': "4060",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4068",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2024-01-27T00:00:00.000Z",
        'planFinishDate': "2024-01-27T00:00:00.000Z",
        'factStartDate': "2024-01-27T00:00:00.000Z",
        'factFinishDate': "2024-01-27T00:00:00.000Z",
        'completionPercentage': 60,
      },
      'attrs': {
        'id': "4068",
        'Task_name': "Готовность объекта 20ACW",
        'Duration': "0д",
        'Start_date': "2024-01-27T00:00:00.000Z",
        'End_date': "2024-01-27T00:00:00.000Z",
        'Percent_complete': 60,
        'Actual_costs': 301983,
        'Planned_costs': 337638,
        'Responsible': "Contractor",
        'English_version': "Readiness of object 20ACW",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.CIW",
        'Number_in_structure': "1.3.2.8.3.1",
        'parentId': "4067",
        'wbsId': "4060",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': "ir002",
          'date': "2024-01-27T00:00:00.000Z",
          'tooltip': "2024-01-27T00:00:00.000Z",
        },
         'permissions': 1, 'Predecessors': "4070;4072;4073;4074",
      },
      'metrics': {},
    },
  },
  {
    'id': "4069",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-09-01T00:00:00.000Z",
        'planFinishDate': "2023-05-07T00:00:00.000Z",
        'factStartDate': "2022-09-01T00:00:00.000Z",
        'factFinishDate': "2023-05-07T00:00:00.000Z",
        'completionPercentage': 44,
      },
      'attrs': {
        'id': "4069",
        'Task_name': "Строительные работы",
        'Duration': "250д",
        'Start_date': "2022-09-01T00:00:00.000Z",
        'End_date': "2023-05-07T00:00:00.000Z",
        'Percent_complete': 44,
        'Actual_costs': 140229,
        'Planned_costs': 319702,
        'Responsible': "Contractor",
        'English_version': "Civil works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.CIW.CVL",
        'Number_in_structure': "1.3.2.8.3.2",
        'parentId': "4067",
        'wbsId': "4068",
        'Indicator': {
          'value': "ir001",
          'date': "2022-09-01T00:00:00.000Z",
          'tooltip': "2022-09-01T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4070",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2022-09-01T00:00:00.000Z",
        'planFinishDate': "2023-05-07T00:00:00.000Z",
        'factStartDate': "2022-09-01T00:00:00.000Z",
        'factFinishDate': "2023-05-07T00:00:00.000Z",
        'completionPercentage': 51,
      },
      'attrs': {
        'id': "4070",
        'Task_name':
          "20ACW. Площадка для размещения альтернативных средств для управления запроектной аварией. Строительные конструкции",
        'Duration': "250д",
        'Start_date': "2022-09-01T00:00:00.000Z",
        'End_date': "2023-05-07T00:00:00.000Z",
        'Percent_complete': 51,
        'Actual_costs': 104709,
        'Planned_costs': 206312,
        'Responsible': "Contractor",
        'English_version':
          "20ACW. Area for arranging alternative means to control a beyond-design-basis accident. Civil engineering structures",
        'KKS_documents': "AB2.0120.20ACW.0.KZ.LC0001",
        'WBS_structural_code': "A2.ABC.20ACW.CIW.CVL",
        'Number_in_structure': "1.3.2.8.3.2.1",
        'parentId': "4069",
        'wbsId': "4068",
        'Indicator': {
          'value': "ir001",
          'date': "2022-09-01T00:00:00.000Z",
          'tooltip': "2022-09-01T00:00:00.000Z",
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "5717",
      },
      'metrics': {},
    },
  },
  {
    'id': "4071",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-08T00:00:00.000Z",
        'planFinishDate': "2024-01-27T00:00:00.000Z",
        'factStartDate': "2023-05-08T00:00:00.000Z",
        'factFinishDate': "2024-01-27T00:00:00.000Z",
        'completionPercentage': 92,
      },
      'attrs': {
        'id': "4071",
        'Task_name': "Электромонтажные работы",
        'Duration': "265д",
        'Start_date': "2023-05-08T00:00:00.000Z",
        'End_date': "2024-01-27T00:00:00.000Z",
        'Percent_complete': 92,
        'Actual_costs': 224400,
        'Planned_costs': 244913,
        'Responsible': "Contractor",
        'English_version': "Electrical works",
        'KKS_documents': null,
        'WBS_structural_code': "A2.ABC.20ACW.CIW.ELC",
        'Number_in_structure': "1.3.2.8.3.3",
        'parentId': "4067",
        'wbsId': "4068",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': null,
      },
      'metrics': {},
    },
  },
  {
    'id': "4072",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-08T00:00:00.000Z",
        'planFinishDate': "2024-01-12T00:00:00.000Z",
        'factStartDate': "2023-05-08T00:00:00.000Z",
        'factFinishDate': "2024-01-12T00:00:00.000Z",
        'completionPercentage': 77,
      },
      'attrs': {
        'id': "4072",
        'Task_name':
          "20ACW. Площадка для размещения альтернативных средств для управления запроектной аварией. Схемы электрических соединений",
        'Duration': "250д",
        'Start_date': "2023-05-08T00:00:00.000Z",
        'End_date': "2024-01-12T00:00:00.000Z",
        'Percent_complete': 77,
        'Actual_costs': 195959,
        'Planned_costs': 255492,
        'Responsible': "Contractor",
        'English_version':
          "20ACW. Area for arranging alternative means to control a beyond-design-basis accident. Electric connection diagrams",
        'KKS_documents': "AB2.0120.20ACW.0.ET.TB0001",
        'WBS_structural_code': "A2.ABC.20ACW.CIW.ELC",
        'Number_in_structure': "1.3.2.8.3.3.1",
        'parentId': "4071",
        'wbsId': "4068",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4070",
      },
      'metrics': {},
    },
  },
  {
    'id': "4073",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-08T00:00:00.000Z",
        'planFinishDate': "2024-01-12T00:00:00.000Z",
        'factStartDate': "2023-05-08T00:00:00.000Z",
        'factFinishDate': "2024-01-12T00:00:00.000Z",
        'completionPercentage': 42,
      },
      'attrs': {
        'id': "4073",
        'Task_name':
          "20ACW. Площадка для размещения альтернативных средств для управления запроектной аварией. Электрическое освещение и розеточная сеть",
        'Duration': "250д",
        'Start_date': "2023-05-08T00:00:00.000Z",
        'End_date': "2024-01-12T00:00:00.000Z",
        'Percent_complete': 42,
        'Actual_costs': 182743,
        'Planned_costs': 436102,
        'Responsible': "Contractor",
        'English_version':
          "20ACW. Area for arranging alternative means to control a beyond-design-basis accident. Electric lighting and socket network",
        'KKS_documents': "AB2.0120.20ACW.0.EW.LH0001",
        'WBS_structural_code': "A2.ABC.20ACW.CIW.ELC",
        'Number_in_structure': "1.3.2.8.3.3.2",
        'parentId': "4071",
        'wbsId': "4068",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4070",
      },
      'metrics': {},
    },
  },
  {
    'id': "4074",
    'version': 1,
    'isMatch': true,
    'data': {
      'graph': {
        'isMilestone': false,
        'planStartDate': "2023-05-23T00:00:00.000Z",
        'planFinishDate': "2024-01-27T00:00:00.000Z",
        'factStartDate': "2023-05-23T00:00:00.000Z",
        'factFinishDate': "2024-01-27T00:00:00.000Z",
        'completionPercentage': 50,
      },
      'attrs': {
        'id': "4074",
        'Task_name':
          "20ACW. Площадка для размещения альтернативных средств для управления запроектной аварией. Журнал силовых кабелей",
        'Duration': "250д",
        'Start_date': "2023-05-23T00:00:00.000Z",
        'End_date': "2024-01-27T00:00:00.000Z",
        'Percent_complete': 50,
        'Actual_costs': 132154,
        'Planned_costs': 265308,
        'Responsible': "Contractor",
        'English_version':
          "20ACW. Area for arranging alternative means to control a beyond-design-basis accident. Power cables log",
        'KKS_documents': "AB2.0120.20ACW.0.EM.MB0001",
        'WBS_structural_code': "A2.ABC.20ACW.CIW.ELC",
        'Number_in_structure': "1.3.2.8.3.3.3",
        'parentId': "4071",
        'wbsId': "4068",
        'Indicator': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
        'Indicator_2': {
          'value': null,
          'date': null,
          'tooltip': null,
        },
         'permissions': 1, 'Predecessors': "4072НН+15д",
      },
      'metrics': {},
    },
  },
];
const RELATIONS = [
  {
    'predecessor': "3879",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3880",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3881",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3888",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3897",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3887",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3889",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3890",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3902",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3903",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3885",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3886",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3891",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3892",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3893",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3894",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3895",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3896",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3898",
    'successor': "3877",
    'type': "SS",
  },
  {
    'predecessor': "3899",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3900",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3883",
    'successor': "3877",
    'type': "FS",
  },
  {
    'predecessor': "3879",
    'successor': "3880",
    'type': "SS",
  },
  {
    'predecessor': "3880",
    'successor': "3881",
    'type': "SS",
  },
  {
    'predecessor': "3881",
    'successor': "3883",
    'type': "FS",
  },
  {
    'predecessor': "3879",
    'successor': "3885",
    'type': "FS",
  },
  {
    'predecessor': "3879",
    'successor': "3886",
    'type': "FS",
  },
  {
    'predecessor': "3879",
    'successor': "3887",
    'type': "SS",
  },
  {
    'predecessor': "3880",
    'successor': "3888",
    'type': "SS",
  },
  {
    'predecessor': "3887",
    'successor': "3889",
    'type': "SS",
  },
  {
    'predecessor': "3889",
    'successor': "3890",
    'type': "SS",
  },
  {
    'predecessor': "3885",
    'successor': "3891",
    'type': "SS",
  },
  {
    'predecessor': "3891",
    'successor': "3892",
    'type': "SS",
  },
  {
    'predecessor': "3892",
    'successor': "3893",
    'type': "SS",
  },
  {
    'predecessor': "3885",
    'successor': "3894",
    'type': "SS",
  },
  {
    'predecessor': "3894",
    'successor': "3895",
    'type': "SS",
  },
  {
    'predecessor': "3895",
    'successor': "3896",
    'type': "SS",
  },
  {
    'predecessor': "3888",
    'successor': "3897",
    'type': "SS",
  },
  {
    'predecessor': "3885",
    'successor': "3898",
    'type': "SS",
  },
  {
    'predecessor': "3900",
    'successor': "3899",
    'type': "SS",
  },
  {
    'predecessor': "3898",
    'successor': "3900",
    'type': "SS",
  },
  {
    'predecessor': "3885",
    'successor': "3902",
    'type': "SS",
  },
  {
    'predecessor': "3902",
    'successor': "3903",
    'type': "SS",
  },
  {
    'predecessor': "3907",
    'successor': "3905",
    'type': "FS",
  },
  {
    'predecessor': "3879",
    'successor': "3907",
    'type': "SS",
  },
  {
    'predecessor': "3919",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3921",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3920",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3923",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3922",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3977",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3982",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3925",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3969",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3924",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3939",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3935",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3933",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3927",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3932",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3926",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3956",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3978",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3944",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3945",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3948",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3949",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3950",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3929",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3928",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3941",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3942",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3931",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3930",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3943",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3951",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3946",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3937",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3947",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3962",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3963",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3964",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3965",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3966",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3967",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3968",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3981",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3983",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "4003",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "4004",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "4037",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "4038",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3952",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3938",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3957",
    'successor': "3916",
    'type': "FS",
  },
  {
    'predecessor': "3921",
    'successor': "3920",
    'type': "SS",
  },
  {
    'predecessor': "3919",
    'successor': "3921",
    'type': "SS",
  },
  {
    'predecessor': "3923",
    'successor': "3922",
    'type': "SS",
  },
  {
    'predecessor': "3920",
    'successor': "3923",
    'type': "SS",
  },
  {
    'predecessor': "3925",
    'successor': "3924",
    'type': "SS",
  },
  {
    'predecessor': "3922",
    'successor': "3925",
    'type': "SS",
  },
  {
    'predecessor': "3927",
    'successor': "3926",
    'type': "SS",
  },
  {
    'predecessor': "3924",
    'successor': "3927",
    'type': "SS",
  },
  {
    'predecessor': "3929",
    'successor': "3928",
    'type': "SS",
  },
  {
    'predecessor': "3926",
    'successor': "3929",
    'type': "SS",
  },
  {
    'predecessor': "3931",
    'successor': "3930",
    'type': "SS",
  },
  {
    'predecessor': "3932",
    'successor': "3930",
    'type': "FS",
  },
  {
    'predecessor': "3928",
    'successor': "3931",
    'type': "SS",
  },
  {
    'predecessor': "3933",
    'successor': "3932",
    'type': "FS",
  },
  {
    'predecessor': "3922",
    'successor': "3933",
    'type': "FS",
  },
  {
    'predecessor': "3935",
    'successor': "3933",
    'type': "SS",
  },
  {
    'predecessor': "3922",
    'successor': "3935",
    'type': "FS",
  },
  {
    'predecessor': "3930",
    'successor': "3937",
    'type': "FS",
  },
  {
    'predecessor': "3937",
    'successor': "3938",
    'type': "FS",
  },
  {
    'predecessor': "3922",
    'successor': "3939",
    'type': "FS",
  },
  {
    'predecessor': "3926",
    'successor': "3941",
    'type': "FS",
  },
  {
    'predecessor': "3926",
    'successor': "3942",
    'type': "FS",
  },
  {
    'predecessor': "3941",
    'successor': "3943",
    'type': "FS",
  },
  {
    'predecessor': "3942",
    'successor': "3943",
    'type': "SS",
  },
  {
    'predecessor': "3924",
    'successor': "3944",
    'type': "FS",
  },
  {
    'predecessor': "3944",
    'successor': "3945",
    'type': "SS",
  },
  {
    'predecessor': "3943",
    'successor': "3946",
    'type': "FS",
  },
  {
    'predecessor': "3944",
    'successor': "3947",
    'type': "FS",
  },
  {
    'predecessor': "3945",
    'successor': "3947",
    'type': "FS",
  },
  {
    'predecessor': "3924",
    'successor': "3948",
    'type': "FS",
  },
  {
    'predecessor': "3949",
    'successor': "3948",
    'type': "SS",
  },
  {
    'predecessor': "3938",
    'successor': "3948",
    'type': "FS",
  },
  {
    'predecessor': "3924",
    'successor': "3949",
    'type': "FS",
  },
  {
    'predecessor': "3949",
    'successor': "3950",
    'type': "SS",
  },
  {
    'predecessor': "3941",
    'successor': "3951",
    'type': "FS",
  },
  {
    'predecessor': "3947",
    'successor': "3952",
    'type': "FS",
  },
  {
    'predecessor': "3958",
    'successor': "3954",
    'type': "SS",
  },
  {
    'predecessor': "3954",
    'successor': "3955",
    'type': "SS",
  },
  {
    'predecessor': "3925",
    'successor': "3956",
    'type': "FS",
  },
  {
    'predecessor': "3981",
    'successor': "3957",
    'type': "SS",
  },
  {
    'predecessor': "3957",
    'successor': "3958",
    'type': "SS",
  },
  {
    'predecessor': "3958",
    'successor': "3959",
    'type': "SS",
  },
  {
    'predecessor': "3959",
    'successor': "3960",
    'type': "SS",
  },
  {
    'predecessor': "3960",
    'successor': "3961",
    'type': "SS",
  },
  {
    'predecessor': "3981",
    'successor': "3962",
    'type': "SS",
  },
  {
    'predecessor': "3962",
    'successor': "3963",
    'type': "SS",
  },
  {
    'predecessor': "3963",
    'successor': "3964",
    'type': "SS",
  },
  {
    'predecessor': "3964",
    'successor': "3965",
    'type': "SS",
  },
  {
    'predecessor': "3965",
    'successor': "3966",
    'type': "SS",
  },
  {
    'predecessor': "3966",
    'successor': "3967",
    'type': "SS",
  },
  {
    'predecessor': "3967",
    'successor': "3968",
    'type': "SS",
  },
  {
    'predecessor': "3982",
    'successor': "3969",
    'type': "SS",
  },
  {
    'predecessor': "3983",
    'successor': "3970",
    'type': "SS",
  },
  {
    'predecessor': "3970",
    'successor': "3971",
    'type': "SS",
  },
  {
    'predecessor': "3971",
    'successor': "3972",
    'type': "SS",
  },
  {
    'predecessor': "3976",
    'successor': "3973",
    'type': "SS",
  },
  {
    'predecessor': "3973",
    'successor': "3974",
    'type': "SS",
  },
  {
    'predecessor': "3974",
    'successor': "3975",
    'type': "SS",
  },
  {
    'predecessor': "3972",
    'successor': "3976",
    'type': "SS",
  },
  {
    'predecessor': "3920",
    'successor': "3977",
    'type': "FS",
  },
  {
    'predecessor': "3924",
    'successor': "3978",
    'type': "FS",
  },
  {
    'predecessor': "3957",
    'successor': "3979",
    'type': "SS",
  },
  {
    'predecessor': "3979",
    'successor': "3980",
    'type': "SS",
  },
  {
    'predecessor': "3939",
    'successor': "3981",
    'type': "FS",
  },
  {
    'predecessor': "3977",
    'successor': "3982",
    'type': "SS",
  },
  {
    'predecessor': "3968",
    'successor': "3983",
    'type': "SS",
  },
  {
    'predecessor': "3980",
    'successor': "3984",
    'type': "SS",
  },
  {
    'predecessor': "3984",
    'successor': "3985",
    'type': "SS",
  },
  {
    'predecessor': "4040",
    'successor': "3987",
    'type': "SS",
  },
  {
    'predecessor': "3987",
    'successor': "3988",
    'type': "SS",
  },
  {
    'predecessor': "3988",
    'successor': "3989",
    'type': "SS",
  },
  {
    'predecessor': "3989",
    'successor': "3990",
    'type': "SS",
  },
  {
    'predecessor': "4039",
    'successor': "3991",
    'type': "SS",
  },
  {
    'predecessor': "3991",
    'successor': "3992",
    'type': "SS",
  },
  {
    'predecessor': "3992",
    'successor': "3993",
    'type': "SS",
  },
  {
    'predecessor': "3993",
    'successor': "3994",
    'type': "SS",
  },
  {
    'predecessor': "4023",
    'successor': "3995",
    'type': "SS",
  },
  {
    'predecessor': "3995",
    'successor': "3996",
    'type': "SS",
  },
  {
    'predecessor': "3996",
    'successor': "3997",
    'type': "SS",
  },
  {
    'predecessor': "3997",
    'successor': "3998",
    'type': "SS",
  },
  {
    'predecessor': "3998",
    'successor': "3999",
    'type': "SS",
  },
  {
    'predecessor': "4016",
    'successor': "4000",
    'type': "SS",
  },
  {
    'predecessor': "4000",
    'successor': "4001",
    'type': "SS",
  },
  {
    'predecessor': "4005",
    'successor': "4002",
    'type': "SS",
  },
  {
    'predecessor': "3981",
    'successor': "4003",
    'type': "SS",
  },
  {
    'predecessor': "4003",
    'successor': "4004",
    'type': "SS",
  },
  {
    'predecessor': "3957",
    'successor': "4005",
    'type': "SS",
  },
  {
    'predecessor': "4005",
    'successor': "4006",
    'type': "SS",
  },
  {
    'predecessor': "4006",
    'successor': "4007",
    'type': "SS",
  },
  {
    'predecessor': "4007",
    'successor': "4008",
    'type': "SS",
  },
  {
    'predecessor': "4010",
    'successor': "4009",
    'type': "SS",
  },
  {
    'predecessor': "4005",
    'successor': "4010",
    'type': "SS",
  },
  {
    'predecessor': "4023",
    'successor': "4011",
    'type': "SS",
  },
  {
    'predecessor': "4011",
    'successor': "4012",
    'type': "SS",
  },
  {
    'predecessor': "4012",
    'successor': "4013",
    'type': "SS",
  },
  {
    'predecessor': "4013",
    'successor': "4014",
    'type': "SS",
  },
  {
    'predecessor': "4014",
    'successor': "4015",
    'type': "SS",
  },
  {
    'predecessor': "4010",
    'successor': "4016",
    'type': "SS",
  },
  {
    'predecessor': "3955",
    'successor': "4017",
    'type': "SS",
  },
  {
    'predecessor': "4005",
    'successor': "4018",
    'type': "SS",
  },
  {
    'predecessor': "4018",
    'successor': "4019",
    'type': "SS",
  },
  {
    'predecessor': "4019",
    'successor': "4020",
    'type': "SS",
  },
  {
    'predecessor': "4020",
    'successor': "4021",
    'type': "SS",
  },
  {
    'predecessor': "4021",
    'successor': "4022",
    'type': "SS",
  },
  {
    'predecessor': "4017",
    'successor': "4023",
    'type': "SS",
  },
  {
    'predecessor': "4023",
    'successor': "4024",
    'type': "SS",
  },
  {
    'predecessor': "4024",
    'successor': "4025",
    'type': "SS",
  },
  {
    'predecessor': "4025",
    'successor': "4026",
    'type': "SS",
  },
  {
    'predecessor': "4026",
    'successor': "4027",
    'type': "SS",
  },
  {
    'predecessor': "4010",
    'successor': "4028",
    'type': "SS",
  },
  {
    'predecessor': "4028",
    'successor': "4029",
    'type': "SS",
  },
  {
    'predecessor': "4029",
    'successor': "4030",
    'type': "SS",
  },
  {
    'predecessor': "4015",
    'successor': "4031",
    'type': "SS",
  },
  {
    'predecessor': "4031",
    'successor': "4032",
    'type': "SS",
  },
  {
    'predecessor': "4032",
    'successor': "4033",
    'type': "FS",
  },
  {
    'predecessor': "4033",
    'successor': "4034",
    'type': "SS",
  },
  {
    'predecessor': "4034",
    'successor': "4035",
    'type': "SS",
  },
  {
    'predecessor': "4000",
    'successor': "4036",
    'type': "SS",
  },
  {
    'predecessor': "4004",
    'successor': "4037",
    'type': "SS",
  },
  {
    'predecessor': "4037",
    'successor': "4038",
    'type': "SS",
  },
  {
    'predecessor': "4040",
    'successor': "4039",
    'type': "SS",
  },
  {
    'predecessor': "4002",
    'successor': "4040",
    'type': "SS",
  },
  {
    'predecessor': "4051",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4059",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4052",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4054",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4055",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4058",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4056",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "4057",
    'successor': "4049",
    'type': "FS",
  },
  {
    'predecessor': "5195",
    'successor': "4051",
    'type': "FS",
  },
  {
    'predecessor': "4051",
    'successor': "4052",
    'type': "FS",
  },
  {
    'predecessor': "4059",
    'successor': "4054",
    'type': "FS",
  },
  {
    'predecessor': "4051",
    'successor': "4054",
    'type': "FS",
  },
  {
    'predecessor': "4052",
    'successor': "4054",
    'type': "FS",
  },
  {
    'predecessor': "4059",
    'successor': "4055",
    'type': "FS",
  },
  {
    'predecessor': "4051",
    'successor': "4055",
    'type': "FS",
  },
  {
    'predecessor': "4058",
    'successor': "4056",
    'type': "FS",
  },
  {
    'predecessor': "4058",
    'successor': "4057",
    'type': "FS",
  },
  {
    'predecessor': "4054",
    'successor': "4058",
    'type': "FS",
  },
  {
    'predecessor': "4051",
    'successor': "4059",
    'type': "FS",
  },
  {
    'predecessor': "4070",
    'successor': "4068",
    'type': "FS",
  },
  {
    'predecessor': "4072",
    'successor': "4068",
    'type': "FS",
  },
  {
    'predecessor': "4073",
    'successor': "4068",
    'type': "FS",
  },
  {
    'predecessor': "4074",
    'successor': "4068",
    'type': "FS",
  },
  {
    'predecessor': "5717",
    'successor': "4070",
    'type': "FS",
  },
  {
    'predecessor': "4070",
    'successor': "4072",
    'type': "FS",
  },
  {
    'predecessor': "4070",
    'successor': "4073",
    'type': "FS",
  },
  {
    'predecessor': "4072",
    'successor': "4074",
    'type': "SS",
  },
];
setState({
  updateRows: () => {},
  MainGridId: viewModel.model.primaryTableId,
  RelatedSources: viewModel.model.secondaryTables,
  graphSettings,
  Pallete: pallete,
  viewModel,
  ROWS,
  RELATIONS,
});
JSX:
        <Gant
          Visible-var="viewModel"
          GetLocalization={() => {
            return getLocalization("Gantt." + $event);
          }}
          Pallete-var="Pallete"
          // Ключ в GraphSettings для главного графика
          MainGridId-var="MainGridId"
          // Список второстепенных графиков
          RelatedSources-var="RelatedSources"
          // Список видимых второстепенных графиков (ключи из GraphSettings)
          SelectedSources={[]}
          // Коллбэк, вызываемый при изменении списка видимых источников
          OnSelectedSourcesChanged={selectedSources => {
            console.log('selectedSources:', selectedSources);
          }}
          // Словарь с настройками всех графиков
          GraphSettings-var="graphSettings"
          // Обработка ошибок контрола
          OnError={(error) => {
            console.error(error);
          }}
        />