<!DOCTYPE html>
<html>

<head>
  <base href="http://demos.telerik.com/kendo-ui/treelist/angular" />
  <script data-require="lodash.js@*" data-semver="3.8.0" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.8.0/lodash.js"></script>
  <style>
    html {
      font-size: 14px;
      font-family: Arial, Helvetica, sans-serif;
    }
  </style>
  <title></title>
  <link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.429/styles/kendo.common-bootstrap.min.css" />
  <link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.429/styles/kendo.bootstrap.min.css" />
  <link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.429/styles/kendo.dataviz.min.css" />
  <link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.429/styles/kendo.dataviz.bootstrap.min.css" />

  <script src="http://cdn.kendostatic.com/2015.2.624/js/jquery.min.js"></script>
  <script src="http://cdn.kendostatic.com/2015.2.624/js/angular.min.js"></script>
  <script src="http://cdn.kendostatic.com/2015.2.624/js/kendo.all.min.js"></script>

  <style>
    /*.k-numeric-wrap,
        input.k-textbox {
            width: 76%;
        }
 
        .k-grid-content-locked {
            height: 100% !important;
        }

        .k-treelist tr {
            height: 53px !important;
        }*/
    
    div.k-grid-header-locked > table > thead > tr {
      padding-top: 59px;
      height: 59px !important;
    }
    
    .k-treelist input {
      width: 100%;
    }
  </style>
</head>

<body>
  <div id="example" ng-app="KendoDemos">
    <div ng-controller="MyCtrl">
      <button kendo-button ng-click="showGrid()">Show Data</button>
      <br />
      <br />
      <div kendo-treelist="treeList" options="treelistOptions" k-ng-delay="treelistOptions"></div>

    </div>
  </div>
  <script>
    angular.module("KendoDemos", ["kendo.directives"])
      .controller("MyCtrl", function($scope) {

        function setLockedHeaderHeight(treeList) {

          var lockedHeader = treeList.lockedHeader;
          //console.log("lockedHeader", lockedHeader);
          var lockedHeaderTr = $(lockedHeader).find("tr");
          //lockedHeaderTr.height(lockedHeaderTr.height() * 2);
          //console.log("lockedHeaderTr", lockedHeaderTr);
        }

        function totalChildrenByHtml(fieldName, dataItem, totalRollColTotalsHtml, fieldsToExclude) {
          var colTotal = 0; 
          var rowID = dataItem.id;
          var root = $scope.dataSourceNew.at(0);
          var total = 0;
          //console.log("fieldName", fieldName);
          //console.log("dataItem", dataItem);
          if (dataItem.hasChildren) {
            var children = $scope.dataSourceNew.childNodes(dataItem);
            //console.log(dataItem.title, fieldName, children);
            _.each(children, function(childrow, colIndex) {
              //console.log("childrow", childrow);
              _.each($scope.columns, function(col, colIndex) {
                //console.log("col", col);
                if (fieldName == col.fieldName &&
                  (fieldsToExclude && !_.find(fieldsToExclude, function(fieldToExclude) {
                    return fieldName == fieldToExclude
                  }))) {
                  var currentChildVal = 0;
                  if (childrow[fieldName]) {
                    //console.log("dataItem kendoField", childrow[fieldName]);
                    currentChildVal = parseInt(childrow[fieldName]);
                  }
                  total = total + currentChildVal;
                }
              });
            });
            //console.log("total", total);
            dataItem[fieldName] = total;
            var totalRollupID = rowID + "_" + fieldName;
            //console.log("totalRollupID", totalRollupID);
            //console.log("totalRollColTotalsHtml", totalRollColTotalsHtml);
            var totalRollupCur = _.find(totalRollColTotalsHtml, function(rollUp) {
              return rollUp.id.indexOf(totalRollupID) == 0;
            });
            //console.log("totalRollupCur", totalRollupCur);
            $(totalRollupCur).html(formatTB(total));

            var totalColForTotalRollup = total;
            // get all rollup columns for this row
            var totalRollupCols = $(totalRollupCur).closest("tr").find(".totalRollup").not(totalRollupCur);
            //console.log("totalRollupCols", totalRollupCols);
            var totalCol = $(totalRollupCur).closest("tr").find(".total");
            //console.log("totalCol", totalCol);

            _.each(totalRollupCols, function(totalRollupCurSet, index) {
              totalRollupCurSet = $(totalRollupCurSet);
              //console.log("totalRollupCurSet", $(totalRollupCurSet));
              // console.log("totalRollupCurSet value", parseInt($(totalRollupCurSet)[0].innerText.substring(1)));
              //console.log("totalRollupCurSet[0]", totalRollupCurSet[0]);
              //console.log("totalRollupCurSet[0].id.split(\"_\")[1]", totalRollupCurSet[0].id.split("_")[1]);
              //console.log("_.find(fieldsToExclude, function (fieldToExclude) { totalRollupCurSet[0].id.split(\"_\")[1] == fieldToExclude })", _.find(fieldsToExclude, function (fieldToExclude) { return totalRollupCurSet[0].id.split("_")[1] == fieldToExclude }));
              if (!fieldsToExclude ||
                (fieldsToExclude && !_.find(fieldsToExclude, function(fieldToExclude) {
                  return totalRollupCurSet[0].id.split("_")[1] == fieldToExclude
                }))) {
                totalColForTotalRollup = totalColForTotalRollup + parseInt(totalRollupCurSet[0].innerText.replace(/[^0-9-\.]+/g, ""));
                //console.log("totalled field used", totalRollupCurSet[0].id.split("_")[1]);
              }

              //console.log("totalColForTotalRollup", totalColForTotalRollup);
            });


            $(totalCol).html(formatTB(totalColForTotalRollup));

            //var totalRollup = totalRollupsHtml.("[id^='" + totalRollupID +"']");
            //console.log("totalRollup", totalRollup);
          }

          if (dataItem.parentId)
            return $scope.dataSourceNew.get(dataItem.parentId);
          else
            return null;
        };

        function totalTB(tbNum, dataItem, fieldName, fieldsToExclude) {
          if (tbNum) {
            //console.log('tbNum', tbNum);
            tbNum = $(tbNum);
            var tr = tbNum.closest("tr");
            //console.log('tr', tr);
            //return this.dataItem.Qty * this.dataItem.Amt
            //var cells = tr.cells;
            //console.log("cells", cells);
            var tbNumsInRow = tr.find("[data-role=numerictextbox]");
            //console.log("tbNumsInRow", tbNumsInRow);
            var totalCol = tr.find(".total");
            //console.log("totalCol", totalCol);
            //console.log(fieldName);
            dataItem[fieldName] = tbNum.val();

            var total = 0;
            // do the left total column
            _.each(tbNumsInRow, function(tbNumCur, colIndex) {
              var tbNumCur = $(tbNumCur);
              total = total + parseInt(tbNumCur.val());
            });

            totalCol.text(formatTB(total));
            var treeList = $(tbNum.closest("[data-role=treelist]"));
            //console.log("treeList", treeList);
            var totalRollupColTotalsHtml = treeList.find("span[id*='_" + fieldName + "_'].totalRollup");
            //console.log("totalRollupColTotalsHtml", totalRollupColTotalsHtml);
            //var totalRollupColTextBoxesHtml = treeList.find("input[id*='_" + fieldName + "_']");
            var dataItemForColTotal = dataItem;
            // do the total columns parents
            while (dataItemForColTotal) {
              //console.log("parentIdForColTotal", parentIdForColTotal);
              dataItemForColTotal = totalChildrenByHtml(fieldName, dataItemForColTotal, totalRollupColTotalsHtml, fieldsToExclude);
              //dataItemForColTotal = totalChildren(fieldName, dataItemForColTotal);
            }
            //console.log("total", total);
            //console.log("rowID", rowID);
            // console.log("dataItem", dataItem);
            //console.log("parentID", parentID);
            //console.log("dataItemParent", dataItemParent);
            //console.log("$scope.dataSourceNew", $scope.dataSourceNew);
          }
        };

        function formatTB(value) {
          return kendo.format("{0:c0}", value);
        }

        function buildGroupHeader(treeList) {
          //setLockedHeaderHeight(treeList); 
          var columnHeaderParent = $(treeList.thead);

          var firstChild = columnHeaderParent.first();
          //console.log("buildGroupHeader:firstChild", $(firstChild));
          var groupHeaderColumns = firstChild.find("tr[id='groupHeaderColumns']");
          //console.log("groupHeaderColumns", groupHeaderColumns);
          if (groupHeaderColumns)
            groupHeaderColumns.remove();

          var groupHeaderRowHtml = "<tr id=\groupHeaderColumns\>";
          _.each($scope.gridColumnsGroupings, function(groupHeader, groupHeaderIndex) {
            var rowSpan = groupHeader.columns.length;
            //console.log("groupHeader", groupHeader);
            //console.log("rowSpan", rowSpan);
            groupHeaderRowHtml = groupHeaderRowHtml + "<th role='columnheader' colspan='" + rowSpan + "' data-colspan='" + rowSpan + "' data-title='" + groupHeader.title + "' id='' class='k-header' data-role='droptarget'>" + groupHeader.title + "</th>";
          });

          groupHeaderRowHtml = groupHeaderRowHtml + "</tr>";
          columnHeaderParent.prepend(groupHeaderRowHtml);
          //console.log("groupHeaderRowHtml", groupHeaderRowHtml);

        }

        $scope.showGrid = function() {

          $scope.fieldsToExclude = ["CE"];
          $scope.resultData = getData();

          $scope.columns = _.sortBy($scope.resultData.columns, function(d) {
            return d.sortOrder;
          });
          
          $scope.rows = $scope.resultData.rows;

          //console.log("columns", $scope.columns);
          $scope.tabs = _.sortBy($scope.resultData.controlDimension, function(d) {
            return d.sortOrder;
          });

          // console.log("tabs", $scope.tabs);
          // console.log("rows", $scope.resultData.rows);
          // console.log("cellLocks", $scope.resultData.cellLocks);
          $scope.cellLocks = $scope.resultData.cellLocks;

          $scope.gridColumns = [{
            field: "title",
            title: "Title",
            width: "320px",
            locked: true
          }];

          $scope.totalTB = totalTB;

          $scope.numericTextBoxOptions = {
            format: "C0",
            decimals: 0,
            change: function() {
              if (!this.value())
                this.value(0);
            }
          }

          $scope.fields = {
            parentId: {
              field: "parentID",
              nullable: true
            },
            TotalCol: {
              type: "number"
            },
            title: {
              editable: false
            }
          };

          $scope.gridColumnsGroupings = [];
          $scope.gridColumnsGroupings.push({
            title: "",
            columns: ["Sum of Accounts"]
          });
          var groupText = 1;
          var groupTextCounter = 0;
          var groupedColumns = [];

          _.each($scope.columns, function(col, colIndex) {
            if (col.title != "Sum of All Accounts") {
              groupedColumns.push(col.fieldName);
              if (groupTextCounter < 4) {
                groupTextCounter++;
              } else {
                $scope.gridColumnsGroupings.push({
                  title: "Group " + groupText,
                  columns: groupedColumns
                });
                groupedColumns = [];
                groupTextCounter = 0;
                groupText++;
              }
            }
          });

          if (groupTextCounter != 0) {
            $scope.gridColumnsGroupings.push({
              title: "Group " + groupText,
              columns: groupedColumns
            })
          };

          $scope.gridColumnsGroupings.push({
            title: "",
            columns: ["Total"]
          });
          // console.log("groupedColumns", groupedColumns);


          $scope.gridColumns.push({
            field: "TotalCol",
            title: "Sum of All Accounts",
            width: "150px",
            template: function(dataItem) {
              // total all columns in row except for "Sum of All Acounts"
              var total = 0;
              _.each($scope.columns, function(col, colIndex) {
                if (col.fieldName && !_.find($scope.fieldsToExclude, function(fieldToExclude) {
                    return fieldToExclude == col.fieldName
                  }))
                  total = total + parseInt(dataItem[col.fieldName]);
              });
              return "<span class='total'>" + formatTB(total) + "</span>";
            }
          });

          _.each($scope.columns, function(col, colIndex) {


            if(col.fieldName != "CE")
            {
            $scope.gridColumns.push({
              field: col.fieldName,
              title: col.title,
              width: "150px",
              template: function(dataItem) {
                if (dataItem.hasChildren || col.title == "Sum of All Accounts") {
                  return "<span class='totalRollup' id=\"" + dataItem.id + "_" + col.fieldName + "_" + dataItem.parentId + "\">" + kendo.toString(dataItem[col.fieldName], 'C0') + "</span>";
                } else {
                  //console.log("dataItem", dataItem);
                  return "<input id=\"" + dataItem.id + "_" + col.fieldName + "_" + dataItem.parentId + "\" data-role=numerictextbox  />";
                }
              }
            });

            $scope.fields[col.fieldName] = {
              type: "number"
            };
            }
          });


          $scope.dataSourceNew = new kendo.data.TreeListDataSource({
            data: $scope.rows,
            schema: {
              model: {
                id: "id",
                fields: $scope.fields,
                expanded: true
              }
            }
          });

          //console.log("$scope.dataSourceNew", $scope.dataSourceNew);

          //console.log("$scope.gridColumns", $scope.gridColumns);
          $scope.treelistOptions = {
            sortable: false,
            editable: true,
            height: "768px",
            columns: $scope.gridColumns,
            dataSource: $scope.dataSourceNew,
            expand: function(e) {
              console.log("expand", e);
            },
            collapse: function(e) {
              console.log("Collapsing", e);
            },
            dataBound: function() {
              var treeList = this;
              buildGroupHeader(treeList);
              treeList.items()
                .find("input")
                .each(function(_, input) {
                  input = $(input);
                  //console.log("input.closest(\"td\")",input.closest("td"));
                  //console.log("input.closest(\"td\")",input.closest("td").index());
                  //console.log("treeList.columns",treeList.columns);
                  var field = treeList.columns[input.closest("td").index() + 1].field;
                  //console.log("field", field);
                  var row = input.closest("tr");
                  var dataItem = treeList.dataItem(row);
                  //console.log("dataItem", dataItem)
                  //input.attr("id", dataItem.id + "_" + field + "_" + dataItem.parentId);
//                  if (!dataItem[field] || parseInt(dataItem[field]) == 0)
//                    input.val("-");
//                  else
                    input.val(dataItem[field]);
                  input.bind('keypress', function(e) {
                    //if the letter is not digit then display error and don't type anything
                    if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
                      return false;
                    }
                  });
                  input.bind('change', function(e) {
                    //        //console.log("this.value()", this.value());
                    //console.log("change e", e);
                    //console.log($(this).val());
                    var inputJq = $(this);
                    if (!inputJq.val())
                      inputJq.val(0);
                    dataItem[field] = parseInt(inputJq.val());
                    totalTB(this, dataItem, field, $scope.fieldsToExclude);
                  });
                });
            }
          };
          //console.log("$scope.treeList", $scope.treeList);
          if ($scope.treeList)
            $scope.treeList.setDataSource($scope.dataSourceNew);

        };


      })
      
      function convertDashToZero(value)
      {
        if(value == "-")
          value = 0;
          
          return value;
      }
      
      function convertZeroToDash(value)
      {
        if(value == "0" || value == 0)
          value = "-";
          
          return value;
      }

    function getData() {

      return {
        "cellLocks": null,
        "columns": [{
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "A",
          "id": "f37b3a96-674c-443e-bca4-eefb8789e540",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 1,
          "title": "1206"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AB",
          "id": "bb3985df-b181-4a69-bf70-0418175c569d",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 2,
          "title": "1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AC",
          "id": "534d2a1d-481c-4970-86f8-48866d4eb6e6",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 3,
          "title": "ACI"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AD",
          "id": "8a9946d9-9ffa-464f-af77-9848b812ca93",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 4,
          "title": "ACI - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AE",
          "id": "1e6a4dfd-3500-4546-9461-de4552026cc0",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 5,
          "title": "AEECA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AF",
          "id": "c4a98b98-f6c8-46b2-94d0-0b36a194a596",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 6,
          "title": "AEECA - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AG",
          "id": "153f169a-0e52-463c-a087-c999567a70dd",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 7,
          "title": "CCF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AH",
          "id": "64da9bcf-658b-498e-bc1e-e32a5eb1e4f9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 8,
          "title": "DA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AI",
          "id": "44ec5c8a-06f1-46ff-bf4e-3dc85537c9a0",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 9,
          "title": "DA - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AJ",
          "id": "05b80aaf-f338-48ac-8302-8759d41f75ea",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 10,
          "title": "DF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AK",
          "id": "992a4184-4a50-4816-9ab9-774774eb913f",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 11,
          "title": "EFAC"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AL",
          "id": "d60edd46-3627-44b7-993c-60953a24fde6",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 12,
          "title": "ERMA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AM",
          "id": "a4c67d5d-4f72-4d6e-94ea-aa7a24af8076",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 13,
          "title": "ESF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AN",
          "id": "0665a314-08e6-4b9b-9afa-3cece4e06219",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 14,
          "title": "ESF - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AO",
          "id": "fabf075b-2060-4bc5-b16c-aba8b4be4669",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 15,
          "title": "FFP"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AP",
          "id": "b8f480d8-19c0-4a0e-9761-959a61257d3c",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 16,
          "title": "FMF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AQ",
          "id": "8e0afef6-2d37-4384-8ad6-78684ae838df",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 17,
          "title": "FSA - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AR",
          "id": "0df5d1fb-6705-48fa-9d57-eafb3946b51d",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 18,
          "title": "GHP-STATE"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AS",
          "id": "6675e457-f19d-408c-967b-a4810b441872",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 19,
          "title": "GHP-USAID"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AT",
          "id": "a0b69115-887c-47ec-9db7-d6bdaab6c8c9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 20,
          "title": "GSCF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AU",
          "id": "ba5a8013-4930-4121-a448-a50217adacbf",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 21,
          "title": "IDA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AV",
          "id": "7ab06b6a-656c-4a08-8cef-81043bfcb4b3",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 22,
          "title": "IMET"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AW",
          "id": "057cc414-8116-40f1-b354-bef5899ce968",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 23,
          "title": "INCLE"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AX",
          "id": "8284ba3a-64bd-42eb-818f-3a08109be427",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 24,
          "title": "INCLE - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AY",
          "id": "7bbe0026-4608-48fd-b5b8-c969c3ca71ca",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 25,
          "title": "IOandP"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "AZ",
          "id": "38bf9bdf-b116-4431-a6bd-ee4ad69e1fae",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 26,
          "title": "MENA IF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BA",
          "id": "7429c52b-592d-4c38-9bbf-49ffa3bc3433",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 27,
          "title": "MRA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BB",
          "id": "476bcc13-fadb-4684-b5f2-f65cbd257035",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 28,
          "title": "N/A"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BC",
          "id": "5d19be10-6d59-4bf1-a783-1ab9d11a958c",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 29,
          "title": "NADR"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BD",
          "id": "e3b83e82-330f-4392-a613-e3f38c22bd96",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 30,
          "title": "NADR ATA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BE",
          "id": "7cf3ff47-87b8-42eb-880a-de8aa82b7160",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 31,
          "title": "NADR CTBT IMS"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BF",
          "id": "e3c86902-a387-4345-a00f-9e54fc63cd70",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 32,
          "title": "NADR CTBTO PrepComm"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BG",
          "id": "913ef8bb-92da-49c6-baa7-3b7ec78c93e9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 33,
          "title": "NADR CTE"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BH",
          "id": "c07b68fb-7cb9-443e-9693-8578b97919a2",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 34,
          "title": "NADR CTF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BI",
          "id": "f9b5b05d-9f94-4685-a372-a911aa99810b",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 35,
          "title": "NADR CVE"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BJ",
          "id": "f53bb1ca-0908-490e-8a97-790b683b2532",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 36,
          "title": "NADR CWD"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BK",
          "id": "28956809-59e2-486a-ab35-966f49e559d9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 37,
          "title": "NADR EXBS"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BL",
          "id": "7482d8de-4020-494e-b9c5-6997f7a69d13",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 38,
          "title": "NADR GTR"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BM",
          "id": "8f12b16c-a4c5-486c-b81f-212d321b54de",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 39,
          "title": "NADR HD"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BN",
          "id": "9fe7ced5-eebf-4e89-a604-e98f1eb5cdd9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 40,
          "title": "NADR HD - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BO",
          "id": "c0619393-fea1-4497-a140-1793f9252130",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 41,
          "title": "NADR IAEA"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BP",
          "id": "b4ce8b13-ec62-4001-915c-e955877bfe05",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 42,
          "title": "NADR ITF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BQ",
          "id": "c9ff8e32-a63e-4e81-8ff0-dec59ce6b606",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 43,
          "title": "NADR NDF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BR",
          "id": "28554d50-3dd0-4a55-9108-1e4b8f31f3ba",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 44,
          "title": "NADR SA LW"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BS",
          "id": "acbafcc6-d0c5-4f2e-ab60-4e7785a94d47",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 45,
          "title": "NADR TIP"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BT",
          "id": "1d08951f-483f-4f62-9119-12fbad12d1a9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 46,
          "title": "NADR UNSCR 1540"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BU",
          "id": "b93183f0-1dbd-4d77-a9dd-e06bfcee6174",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 47,
          "title": "NADR WMDT"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BV",
          "id": "06396dea-daa3-4af7-8fdd-c107d4dc4059",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 48,
          "title": "NADR WMDT - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BW",
          "id": "c288a0f6-100c-4073-9693-b3738e0b8f08",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 49,
          "title": "PCCF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BX",
          "id": "370064c5-40c4-418c-bfb2-ed2dea97f0f9",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 50,
          "title": "PKO"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BY",
          "id": "b02145c0-8320-4beb-a4dd-9bfdb8b9e2c1",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 51,
          "title": "PKO - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "BZ",
          "id": "4bebd77a-d95b-4b00-b043-23696e87ddc6",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 52,
          "title": "SEED"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "CA",
          "id": "3e6a5dfe-d5a7-4f83-9c39-c04f0a6d07d7",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 53,
          "title": "SF"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "CB",
          "id": "2b9d45c0-4e11-4f13-ad39-2b62cac7f877",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 54,
          "title": "TI"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "CC",
          "id": "c6f63eb7-750a-4220-8e3e-e446faad41b5",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 55,
          "title": "TI - 1207"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "CD",
          "id": "df5a995d-0c70-4a8f-8fdb-285db6d6f276",
          "isLocked": false,
          "parentID": "532263d9-998e-4216-8001-85c5ab537b7f",
          "shortName": "",
          "sortOrder": 56,
          "title": "USAID Admin"
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "CE",
          "id": "532263d9-998e-4216-8001-85c5ab537b7f",
          "isLocked": true,
          "parentID": "662b5351-6520-43a2-8246-315152359354",
          "shortName": "",
          "sortOrder": -1,
          "title": "Sum of All Accounts",
          "hasChildren": true
        }],
        "controlDimension": [{
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "d9cb34f9-241b-4e2c-9f55-38c55ab3d6bb",
          "isLocked": false,
          "parentID": "00000000-0000-0000-0000-000000000000",
          "shortName": "",
          "sortOrder": 0,
          "title": "Total"
        }],
        "rows": [{
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
          "isLocked": true,
          "parentID": null,
          "shortName": "",
          "sortOrder": -1,
          "title": "TOTAL",
          "A": 0,
          "AB": 0,
          "AC": 15978,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 14780,
          "AH": 1470,
          "AI": 9610,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 307,
          "AN": 0,
          "AO": 843,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 42988,
          "hasChildren": true
        }, {
          "color": "#BFBFBF",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "isLocked": true,
          "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
          "shortName": "",
          "sortOrder": 10000,
          "title": "Africa",
          "A": 0,
          "AB": 0,
          "AC": 15978,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 14780,
          "AH": 1470,
          "AI": 9610,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 307,
          "AN": 0,
          "AO": 843,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 42988,
          "hasChildren": true
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "d790376d-15b2-414e-8b0e-b120e615d236",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10002,
          "title": "African Union",
          "A": 0,
          "AB": 0,
          "AC": 15978,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 14780,
          "AH": 1470,
          "AI": 9610,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 307,
          "AN": 0,
          "AO": 843,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 42988
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "0fab7ea9-6952-4267-a11d-6fcb2af1a406",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10005,
          "title": "Angola",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "25a0e97b-17df-4373-aa60-cb894dbe62a8",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10015,
          "title": "Benin",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "fc92de83-7c72-4ce2-b438-a4054e9dba32",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10018,
          "title": "Botswana",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "ac75440c-5d31-4158-ae6f-c38d839a43cb",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10022,
          "title": "Burkina Faso",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "66095e52-f6f0-40ce-b4bb-a9accc729178",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10024,
          "title": "Burundi",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "e5599801-86ef-4051-be65-1b0dd0f54da5",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10025,
          "title": "Cabo Verde",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "1ec92c17-a8e5-4ed1-bf1d-513dc7a9bd74",
          "isLocked": false,
          "parentID": "9db8e9f8-3bc0-4e31-b5d9-5df089931f7f",
          "shortName": "",
          "sortOrder": 10027,
          "title": "Cameroon",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "#BFBFBF",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "isLocked": true,
          "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
          "shortName": "",
          "sortOrder": 20000,
          "title": "East Asia and Pacific",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0,
          "hasChildren": true
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "07212bd0-362e-4fa7-9bde-f693dc713297",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20020,
          "title": "Brunei",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "b37867d1-6c05-41c6-8a4a-afbdc8bd8c00",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20023,
          "title": "Burma",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "e0b4f31e-c949-4ff0-9a9e-9c0c30d3d913",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20026,
          "title": "Cambodia",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "781394f2-61e9-49a8-b761-d78016203c0c",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20031,
          "title": "China",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "eb7d3949-a7e9-472e-8ba2-4dd8decdb707",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20050,
          "title": "Fiji",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "4576195b-f981-4b8a-9876-8ca442c4b2e6",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20065,
          "title": "Indonesia",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "2d05313b-6eb8-488e-a784-6749764db09a",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20074,
          "title": "Kiribati",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }, {
          "color": "",
          "columnDomain": "",
          "columnType": 0,
          "fieldName": "",
          "id": "4421630e-1706-4832-bab1-8004fec72587",
          "isLocked": false,
          "parentID": "72698053-423e-4ee7-b2f4-97ee0a270961",
          "shortName": "",
          "sortOrder": 20098,
          "title": "Mongolia",
          "A": 0,
          "AB": 0,
          "AC": 0,
          "AD": 0,
          "AE": 0,
          "AF": 0,
          "AG": 0,
          "AH": 0,
          "AI": 0,
          "AJ": 0,
          "AK": 0,
          "AL": 0,
          "AM": 0,
          "AN": 0,
          "AO": 0,
          "AP": 0,
          "AQ": 0,
          "AR": 0,
          "AS": 0,
          "AT": 0,
          "AU": 0,
          "AV": 0,
          "AW": 0,
          "AX": 0,
          "AY": 0,
          "AZ": 0,
          "BA": 0,
          "BB": 0,
          "BC": 0,
          "BD": 0,
          "BE": 0,
          "BF": 0,
          "BG": 0,
          "BH": 0,
          "BI": 0,
          "BJ": 0,
          "BK": 0,
          "BL": 0,
          "BM": 0,
          "BN": 0,
          "BO": 0,
          "BP": 0,
          "BQ": 0,
          "BR": 0,
          "BS": 0,
          "BT": 0,
          "BU": 0,
          "BV": 0,
          "BW": 0,
          "BX": 0,
          "BY": 0,
          "BZ": 0,
          "CA": 0,
          "CB": 0,
          "CC": 0,
          "CD": 0,
          "CE": 0
        }],
        "fieldToColumn": {
          "A": "f37b3a96-674c-443e-bca4-eefb8789e540",
          "AB": "bb3985df-b181-4a69-bf70-0418175c569d",
          "AC": "534d2a1d-481c-4970-86f8-48866d4eb6e6",
          "AD": "8a9946d9-9ffa-464f-af77-9848b812ca93",
          "AE": "1e6a4dfd-3500-4546-9461-de4552026cc0",
          "AF": "c4a98b98-f6c8-46b2-94d0-0b36a194a596",
          "AG": "153f169a-0e52-463c-a087-c999567a70dd",
          "AH": "64da9bcf-658b-498e-bc1e-e32a5eb1e4f9",
          "AI": "44ec5c8a-06f1-46ff-bf4e-3dc85537c9a0",
          "AJ": "05b80aaf-f338-48ac-8302-8759d41f75ea",
          "AK": "992a4184-4a50-4816-9ab9-774774eb913f",
          "AL": "d60edd46-3627-44b7-993c-60953a24fde6",
          "AM": "a4c67d5d-4f72-4d6e-94ea-aa7a24af8076",
          "AN": "0665a314-08e6-4b9b-9afa-3cece4e06219",
          "AO": "fabf075b-2060-4bc5-b16c-aba8b4be4669",
          "AP": "b8f480d8-19c0-4a0e-9761-959a61257d3c",
          "AQ": "8e0afef6-2d37-4384-8ad6-78684ae838df",
          "AR": "0df5d1fb-6705-48fa-9d57-eafb3946b51d",
          "AS": "6675e457-f19d-408c-967b-a4810b441872",
          "AT": "a0b69115-887c-47ec-9db7-d6bdaab6c8c9",
          "AU": "ba5a8013-4930-4121-a448-a50217adacbf",
          "AV": "7ab06b6a-656c-4a08-8cef-81043bfcb4b3",
          "AW": "057cc414-8116-40f1-b354-bef5899ce968",
          "AX": "8284ba3a-64bd-42eb-818f-3a08109be427",
          "AY": "7bbe0026-4608-48fd-b5b8-c969c3ca71ca",
          "AZ": "38bf9bdf-b116-4431-a6bd-ee4ad69e1fae",
          "BA": "7429c52b-592d-4c38-9bbf-49ffa3bc3433",
          "BB": "476bcc13-fadb-4684-b5f2-f65cbd257035",
          "BC": "5d19be10-6d59-4bf1-a783-1ab9d11a958c",
          "BD": "e3b83e82-330f-4392-a613-e3f38c22bd96",
          "BE": "7cf3ff47-87b8-42eb-880a-de8aa82b7160",
          "BF": "e3c86902-a387-4345-a00f-9e54fc63cd70",
          "BG": "913ef8bb-92da-49c6-baa7-3b7ec78c93e9",
          "BH": "c07b68fb-7cb9-443e-9693-8578b97919a2",
          "BI": "f9b5b05d-9f94-4685-a372-a911aa99810b",
          "BJ": "f53bb1ca-0908-490e-8a97-790b683b2532",
          "BK": "28956809-59e2-486a-ab35-966f49e559d9",
          "BL": "7482d8de-4020-494e-b9c5-6997f7a69d13",
          "BM": "8f12b16c-a4c5-486c-b81f-212d321b54de",
          "BN": "9fe7ced5-eebf-4e89-a604-e98f1eb5cdd9",
          "BO": "c0619393-fea1-4497-a140-1793f9252130",
          "BP": "b4ce8b13-ec62-4001-915c-e955877bfe05",
          "BQ": "c9ff8e32-a63e-4e81-8ff0-dec59ce6b606",
          "BR": "28554d50-3dd0-4a55-9108-1e4b8f31f3ba",
          "BS": "acbafcc6-d0c5-4f2e-ab60-4e7785a94d47",
          "BT": "1d08951f-483f-4f62-9119-12fbad12d1a9",
          "BU": "b93183f0-1dbd-4d77-a9dd-e06bfcee6174",
          "BV": "06396dea-daa3-4af7-8fdd-c107d4dc4059",
          "BW": "c288a0f6-100c-4073-9693-b3738e0b8f08",
          "BX": "370064c5-40c4-418c-bfb2-ed2dea97f0f9",
          "BY": "b02145c0-8320-4beb-a4dd-9bfdb8b9e2c1",
          "BZ": "4bebd77a-d95b-4b00-b043-23696e87ddc6",
          "CA": "3e6a5dfe-d5a7-4f83-9c39-c04f0a6d07d7",
          "CB": "2b9d45c0-4e11-4f13-ad39-2b62cac7f877",
          "CC": "c6f63eb7-750a-4220-8e3e-e446faad41b5",
          "CD": "df5a995d-0c70-4a8f-8fdb-285db6d6f276",
          "CE": "532263d9-998e-4216-8001-85c5ab537b7f"
        }
      }
    };
  </script>



</body>

</html>
// Code goes here

/* Styles go here */

function getData(){
return  {
          "cellLocks": null,
          "columns": [{
            "color": "#",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b6e81a26-bfa7-4d9a-903f-0cba66687f47",
            "isLocked": false,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 3,
            "title": "Direct"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "57cf9462-9ea0-4acd-9bf3-f7fa701c9817",
            "isLocked": false,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 4,
            "title": "PO.1.1"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3b8c1999-af1f-4e41-ad1e-5be16fa15906",
            "isLocked": false,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 5,
            "title": "PO.2.1"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1a782695-d696-4845-9142-c95b9d981ff0",
            "isLocked": false,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 6,
            "title": "PO.3.1"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "isLocked": true,
            "parentID": "19be61ee-1e82-4f5d-a3c6-f438244b979a",
            "shortName": null,
            "sortOrder": 999999,
            "title": "Total"
          }],
          "controlDimension": [{
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "00000000-0000-0000-0000-000000000000",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "All Accounts"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c4a98b98-f6c8-46b2-94d0-0b36a194a596",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Assistance for Europe, Eurasia and Central Asia - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8284ba3a-64bd-42eb-818f-3a08109be427",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Narcotics Control and Law Enforcement - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0665a314-08e6-4b9b-9afa-3cece4e06219",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Economic Support Fund - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "44ec5c8a-06f1-46ff-bf4e-3dc85537c9a0",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Development Assistance - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8e0afef6-2d37-4384-8ad6-78684ae838df",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "FREEDOM Support Act - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8a9946d9-9ffa-464f-af77-9848b812ca93",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Andean Counterdrug Program - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b02145c0-8320-4beb-a4dd-9bfdb8b9e2c1",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Peacekeeping Operations - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c6f63eb7-750a-4220-8e3e-e446faad41b5",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Transition Initiatives - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1d08951f-483f-4f62-9119-12fbad12d1a9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "UN Security Council Resolution 1540 Trust Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c0619393-fea1-4497-a140-1793f9252130",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "IAEA Voluntary Contribution"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "28554d50-3dd0-4a55-9108-1e4b8f31f3ba",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Small Arms Light Weapons Destruction"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8f12b16c-a4c5-486c-b81f-212d321b54de",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Humanitarian Demining Program"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "913ef8bb-92da-49c6-baa7-3b7ec78c93e9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "CT Engagement with Allies"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "acbafcc6-d0c5-4f2e-ab60-4e7785a94d47",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Terrorist Interdiction Program"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7482d8de-4020-494e-b9c5-6997f7a69d13",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Global Threat Reduction"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f53bb1ca-0908-490e-8a97-790b683b2532",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Conventional Weapons Destruction"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c07b68fb-7cb9-443e-9693-8578b97919a2",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Counterterrorism Financing"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "28956809-59e2-486a-ab35-966f49e559d9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Export Control and Related Border Security Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e3c86902-a387-4345-a00f-9e54fc63cd70",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "CTBTO Preparatory Commission-Special Contributions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f9b5b05d-9f94-4685-a372-a911aa99810b",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Countering Violent Extremism"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "06396dea-daa3-4af7-8fdd-c107d4dc4059",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "NADR NADR WMDT - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7cf3ff47-87b8-42eb-880a-de8aa82b7160",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "CTBT International Monitoring System"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c9ff8e32-a63e-4e81-8ff0-dec59ce6b606",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Nonproliferation and Disarmament Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b93183f0-1dbd-4d77-a9dd-e06bfcee6174",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Weapons of Mass Destruction Terrorism"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e3b83e82-330f-4392-a613-e3f38c22bd96",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Antiterrorism Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b4ce8b13-ec62-4001-915c-e955877bfe05",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Trust Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9fe7ced5-eebf-4e89-a604-e98f1eb5cdd9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "NADR Humanitarian Demining Program - 1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "bb3985df-b181-4a69-bf70-0418175c569d",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "1207"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5d19be10-6d59-4bf1-a783-1ab9d11a958c",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Nonproliferation, Antiterrorism, Demining and Related Programs"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4bebd77a-d95b-4b00-b043-23696e87ddc6",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Assistance for Eastern Europe and Baltic States"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "df5a995d-0c70-4a8f-8fdb-285db6d6f276",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "USAID Administrative Expense"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2b9d45c0-4e11-4f13-ad39-2b62cac7f877",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Transition Initiatives"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7429c52b-592d-4c38-9bbf-49ffa3bc3433",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Migration and Refugee Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d60edd46-3627-44b7-993c-60953a24fde6",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Emergency Refugee and Migration Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "992a4184-4a50-4816-9ab9-774774eb913f",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Emergency Food Assistance Contingency Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7ab06b6a-656c-4a08-8cef-81043bfcb4b3",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Military Education and Training"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "05b80aaf-f338-48ac-8302-8759d41f75ea",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Democracy Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b8f480d8-19c0-4a0e-9761-959a61257d3c",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Foreign Military Financing"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6675e457-f19d-408c-967b-a4810b441872",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Global Health Programs - USAID"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ba5a8013-4930-4121-a448-a50217adacbf",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Disaster Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a4c67d5d-4f72-4d6e-94ea-aa7a24af8076",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Economic Support Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "fabf075b-2060-4bc5-b16c-aba8b4be4669",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Food for Peace Title II"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c288a0f6-100c-4073-9693-b3738e0b8f08",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Pakistan Counterinsurgency Capability Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "057cc414-8116-40f1-b354-bef5899ce968",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Narcotics Control and Law Enforcement"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3e6a5dfe-d5a7-4f83-9c39-c04f0a6d07d7",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Stabilization Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7bbe0026-4608-48fd-b5b8-c969c3ca71ca",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "International Organizations and Programs"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "153f169a-0e52-463c-a087-c999567a70dd",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Complex Crises Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a0b69115-887c-47ec-9db7-d6bdaab6c8c9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Global Security Contingency Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1e6a4dfd-3500-4546-9461-de4552026cc0",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Assistance for Europe, Eurasia and Central Asia"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "64da9bcf-658b-498e-bc1e-e32a5eb1e4f9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Development Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0df5d1fb-6705-48fa-9d57-eafb3946b51d",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Global Health Programs - State"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "370064c5-40c4-418c-bfb2-ed2dea97f0f9",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Peacekeeping Operations"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "38bf9bdf-b116-4431-a6bd-ee4ad69e1fae",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Middle East and North Africa Incentive Fund"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f37b3a96-674c-443e-bca4-eefb8789e540",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "1206"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "534d2a1d-481c-4970-86f8-48866d4eb6e6",
            "isLocked": false,
            "parentID": "00000000-0000-0000-0000-000000000000",
            "shortName": null,
            "sortOrder": 0,
            "title": "Andean Counterdrug Initiative"
          }],
          "funds": {
            "c4a98b98-f6c8-46b2-94d0-0b36a194a596": {
              "b02197f3-e3ad-4e0a-a857-45627c125624": {
                "b6e81a26-bfa7-4d9a-903f-0cba66687f47": {
                  "amount": 157.00,
                  "attributes": {},
                  "fundID": "ea037bb1-5412-40bd-bc55-e8e62c7e0c0a",
                  "fundTypeID": "00000000-0000-0000-0000-000000000000",
                  "lastActivityDate": "0001-01-01T00:00:00",
                  "lastSessionID": "00000000-0000-0000-0000-000000000000",
                  "otherAttributes": null,
                  "parentID": "00000000-0000-0000-0000-000000000000",
                  "recordID": 0
                }
              }
            },
            "00000000-0000-0000-0000-000000000000": {
              "b02197f3-e3ad-4e0a-a857-45627c125624": {
                "b6e81a26-bfa7-4d9a-903f-0cba66687f47": {
                  "amount": 157.00,
                  "attributes": {},
                  "fundID": "00000000-0000-0000-0000-000000000000",
                  "fundTypeID": "00000000-0000-0000-0000-000000000000",
                  "lastActivityDate": "0001-01-01T00:00:00",
                  "lastSessionID": "00000000-0000-0000-0000-000000000000",
                  "otherAttributes": null,
                  "parentID": "00000000-0000-0000-0000-000000000000",
                  "recordID": 0
                }
              }
            }
          },
          "rows": [{
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "920d64c4-9da8-43f1-9c59-31911dcd7db5",
            "isLocked": false,
            "parentID": "d30f6e25-ba19-41c5-80ff-01db2dd0dfd2",
            "shortName": null,
            "sortOrder": 22,
            "title": "PS.5.3 Prevention"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "dff2d89e-0827-4245-a2a0-7b2757d2a1f3",
            "isLocked": false,
            "parentID": "d30f6e25-ba19-41c5-80ff-01db2dd0dfd2",
            "shortName": null,
            "sortOrder": 23,
            "title": "PS.5.2 Prosecution"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "eb52c816-d15c-4840-87cc-ee137a435725",
            "isLocked": false,
            "parentID": "d30f6e25-ba19-41c5-80ff-01db2dd0dfd2",
            "shortName": null,
            "sortOrder": 24,
            "title": "PS.5.1 Protection"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "de62c676-ecd5-4639-9c3b-4e396db9f100",
            "isLocked": false,
            "parentID": "d17cd513-56f2-4bc6-96e3-098eee094ab2",
            "shortName": null,
            "sortOrder": 26,
            "title": "PS.6.3 Preventive Diplomacy"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b73445a1-a2a5-4ab9-a73c-4fb2a5bfc77f",
            "isLocked": false,
            "parentID": "d17cd513-56f2-4bc6-96e3-098eee094ab2",
            "shortName": null,
            "sortOrder": 27,
            "title": "PS.6.2 Peace and Reconciliation Processes"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4d75a637-8bd7-4872-ad4e-6892bf9cd6ef",
            "isLocked": false,
            "parentID": "d17cd513-56f2-4bc6-96e3-098eee094ab2",
            "shortName": null,
            "sortOrder": 28,
            "title": "PS.6.4 Disarmament, Demobilization, and Reintegration (DDR)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "af0c3913-2286-4a2e-8619-902a965a6618",
            "isLocked": false,
            "parentID": "d17cd513-56f2-4bc6-96e3-098eee094ab2",
            "shortName": null,
            "sortOrder": 29,
            "title": "PS.6.1 Conflict Early Warning, Mitigation and Peace Building"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "49342315-71bc-4be4-94a4-08a2220ca903",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 79,
            "title": "HL.1.6 Adult Care and Support"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "af4cdf1f-b334-48dd-9d00-21f4f4082754",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 80,
            "title": "HL.1.12 Laboratory Infrastructure"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2e3ab2cd-162d-4186-84df-2952a3d2fbb7",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 81,
            "title": "HL.1.18 Treatment/Pediatric Treatment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6e31adff-e986-4efb-925d-30b454ca7110",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 82,
            "title": "HL.1.10 Treatment/ARV Drugs"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "45869fff-408d-4461-a567-329cdc897b53",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 83,
            "title": "HL.1.14 Strategic Information"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a589dae4-c87a-4420-b438-59368d63d2c4",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 84,
            "title": "HL.1.8 Orphans and Vulnerable Children"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9f636b40-8e1c-4764-9f52-5afd11159d8a",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 85,
            "title": "HL.1.7 TB/HIV"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6d1eab1b-1a1a-483a-aa70-5fa7369fe66e",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 86,
            "title": "HL.1.13 Health System Strengthening"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7896cf05-057a-496b-94cf-64d7333a5f0b",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 87,
            "title": "HL.1.11 Treatment/Adult Treatment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "573b2cf1-40b3-4360-9d4b-78cb34dfcc56",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 88,
            "title": "HL.1.16 Biomedical Prevention - Prevention Among Injecting and Non-Injecting Drug Users"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d9eb4936-4a48-4867-b5d0-986b28c51116",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 89,
            "title": "HL.1.15 Biomedical Prevention - Medical Male Circumcision"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4269c1af-beb7-4d3c-a5e6-9c725e2fe9d0",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 90,
            "title": "HL.1.17 Pediatric Care and Support"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "aa9519d6-df47-4af7-bcb1-a9aae8d6317d",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 91,
            "title": "HL.1.4 Biomedical Prevention - Injection Safety"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2ba12603-adb4-4361-a2d7-aaabdfb86d92",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 92,
            "title": "HL.1.1 Preventing Mother-to-Child Transmission (PMTCT)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b8d15b51-da2a-4c0b-a326-b6cdd6f30bbf",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 93,
            "title": "HL.1.5 Sexual Prevention - Other Sexual Prevention"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3416b418-788f-46c8-b229-dfabcaebd537",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 94,
            "title": "HL.1.9 Counseling and Testing"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ceeebca5-478d-439a-a243-eab9965e8251",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 95,
            "title": "HL.1.2 Sexual Prevention - Abstinence/Be Faithful"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9cb07545-7c10-428d-87ce-ebec7b3fb160",
            "isLocked": false,
            "parentID": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "shortName": null,
            "sortOrder": 96,
            "title": "HL.1.3 Biomedical Prevention - Blood Safety"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b02197f3-e3ad-4e0a-a857-45627c125624",
            "isLocked": false,
            "parentID": "d3dde668-f83d-42f5-b58c-0dc5297c29f2",
            "shortName": null,
            "sortOrder": 3,
            "title": "PS.1.3 Build Law Enforcement and Criminal Justice Counterterrorism Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "92ce2d60-031b-4246-9dae-45a658c142c0",
            "isLocked": false,
            "parentID": "d3dde668-f83d-42f5-b58c-0dc5297c29f2",
            "shortName": null,
            "sortOrder": 4,
            "title": "PS.1.4 Strengthen Multilateral and Regional Counterterrorism Mechanisms"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b7402277-efa9-4a1d-b538-ac3206a4a168",
            "isLocked": false,
            "parentID": "d3dde668-f83d-42f5-b58c-0dc5297c29f2",
            "shortName": null,
            "sortOrder": 5,
            "title": "PS.1.1 Disrupt Terrorist Networks"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "addd1c96-61f5-4d9e-a795-df446077287d",
            "isLocked": false,
            "parentID": "d3dde668-f83d-42f5-b58c-0dc5297c29f2",
            "shortName": null,
            "sortOrder": 6,
            "title": "PS.1.2 Counter Violent Extremism"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e775586a-4877-4619-9687-0780134e6162",
            "isLocked": false,
            "parentID": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "shortName": null,
            "sortOrder": 194,
            "title": "ES.5.2 Conditional Cash Transfers"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "adbd907a-d9b6-4f43-9f98-25ef957a9029",
            "isLocked": false,
            "parentID": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "shortName": null,
            "sortOrder": 195,
            "title": "ES.5.5 Host Country Strategic Information Capacity for Targeted Cash or In-Kind Social Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "cc505dec-9c91-459b-93a6-5917fcecdeee",
            "isLocked": false,
            "parentID": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "shortName": null,
            "sortOrder": 196,
            "title": "ES.5.4 Self-Help Programs"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ce942269-c7cd-4c58-9153-a0e5b57e4870",
            "isLocked": false,
            "parentID": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "shortName": null,
            "sortOrder": 197,
            "title": "ES.5.1 Targeted Financial Assistance to Meet Basic Needs for the Poorest"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d71dc44a-a061-488e-8182-aa9aaf3c63a5",
            "isLocked": false,
            "parentID": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "shortName": null,
            "sortOrder": 198,
            "title": "ES.5.3 Targeted Subsidies for Low-Income Households"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "85ffe268-e196-4dec-8d53-02f46b584d48",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 120,
            "title": "HL.4.3 Commodity Stockpile"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4519d1b5-4f75-40e4-b271-172a71c0b358",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 121,
            "title": "HL.4.4 Behavior Change Communications"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f7960d47-8e69-436f-aef0-17a0fbcbe7c6",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 122,
            "title": "HL.4.2 Animal and Human Disease Surveillance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "82945c59-4abe-4289-bf6a-43709414c4fc",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 123,
            "title": "HL.4.1 Planning and Preparedness for Outbreak Response"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "588dfc2a-b3cc-413f-a727-ca82c5e75a70",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 124,
            "title": "HL.4.6 Cross-cutting Health Systems Strengthening (PIOET)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "88977ddf-ef65-48d5-bec3-e08cf0e9db46",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 125,
            "title": "HL.4.7 Host Country Strategic Information Systems (PIOET)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3f64fb67-8288-4b33-a948-faf12fb6693b",
            "isLocked": false,
            "parentID": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "shortName": null,
            "sortOrder": 126,
            "title": "HL.4.5 Response to Disease Outbreak"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "680b840d-9f8b-438e-9440-de5389c73f77",
            "isLocked": false,
            "parentID": "138f414f-82bc-49a3-a9dd-17adc9912a38",
            "shortName": null,
            "sortOrder": 237,
            "title": "EG.8.2 Improved Information and Communication Technology (ICT) Policy and Institutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a6b292ae-e9d1-4b75-98bc-f1e813da71dc",
            "isLocked": false,
            "parentID": "138f414f-82bc-49a3-a9dd-17adc9912a38",
            "shortName": null,
            "sortOrder": 238,
            "title": "EG.8.1 Expanded Access to Information and Telecommunications Services"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5653b57a-a7a4-4193-ab94-241de4295cd1",
            "isLocked": false,
            "parentID": "692d0f97-fc08-4f4c-acca-21d9aad4e352",
            "shortName": null,
            "sortOrder": 233,
            "title": "EG.7.3 Energy Policy and Institutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6ef1e5ea-9c51-49ec-8f3e-2a9b72ee1cd5",
            "isLocked": false,
            "parentID": "692d0f97-fc08-4f4c-acca-21d9aad4e352",
            "shortName": null,
            "sortOrder": 234,
            "title": "EG.7.2 Energy Infrastructure Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "91ca8fcb-67c4-4b0a-b071-cef07b9a1b59",
            "isLocked": false,
            "parentID": "692d0f97-fc08-4f4c-acca-21d9aad4e352",
            "shortName": null,
            "sortOrder": 235,
            "title": "EG.7.1 Expanded Access to Modern Energy Services"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "03f64707-249b-4a1e-a17e-455d2fafef1a",
            "isLocked": true,
            "parentID": "0c99a5c3-5203-46ae-818b-2358037e6f0b",
            "shortName": null,
            "sortOrder": 253,
            "title": "HA.1 Protection, Assistance and Solutions"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4d70c337-32dc-4b6b-901d-a18f8190a65a",
            "isLocked": true,
            "parentID": "0c99a5c3-5203-46ae-818b-2358037e6f0b",
            "shortName": null,
            "sortOrder": 256,
            "title": "HA.2 Disaster Readiness"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c372376c-1420-4d36-9fa1-a3aad44b93d4",
            "isLocked": true,
            "parentID": "0c99a5c3-5203-46ae-818b-2358037e6f0b",
            "shortName": null,
            "sortOrder": 258,
            "title": "HA.3 Migration Management"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ff8cb8c1-5d75-48e8-bd2a-143309b0a34e",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 38,
            "title": "PS.9.6 Specialized Law Enforcement and Intermediate Security Forces"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ccc24eca-20ee-4043-a444-2b090d26f91f",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 39,
            "title": "PS.9.3 Community Service Initiatives"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "16e33490-9656-4a84-94fa-594af95fc648",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 40,
            "title": "PS.9.1 Civilian Policing and Peacekeeping"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "fac441dd-6f5a-4624-b71d-9792d134eee6",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 41,
            "title": "PS.9.4 Corrections Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "58df8b5f-1152-4767-ad92-adfed1157943",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 42,
            "title": "PS.9.2 Civilian Police Reform/Community-Oriented Policing"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5c9f8f01-886c-41bd-8f18-ae23d2d54c0a",
            "isLocked": false,
            "parentID": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "shortName": null,
            "sortOrder": 43,
            "title": "PS.9.5 Border Security"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3fa23a46-9b36-4475-b0a1-08dade96220d",
            "isLocked": false,
            "parentID": "c7da44dc-c4ec-4bca-bc75-25afee422096",
            "shortName": null,
            "sortOrder": 128,
            "title": "HL.5.1 Neglected Tropical Diseases and Other Infectious Diseases"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "40741352-3f67-4cdd-8334-7282d9097b83",
            "isLocked": false,
            "parentID": "c7da44dc-c4ec-4bca-bc75-25afee422096",
            "shortName": null,
            "sortOrder": 129,
            "title": "HL.5.2 Non-Communicable Public Health Threats Including Injuries"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c8fa8211-c8fc-4f52-abec-a82968938902",
            "isLocked": false,
            "parentID": "c7da44dc-c4ec-4bca-bc75-25afee422096",
            "shortName": null,
            "sortOrder": 130,
            "title": "HL.5.4 Host Country Strategic Information Systems (Other Health)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "cea8094f-d4f6-4fa8-b26f-f98b4745c9fe",
            "isLocked": false,
            "parentID": "c7da44dc-c4ec-4bca-bc75-25afee422096",
            "shortName": null,
            "sortOrder": 131,
            "title": "HL.5.3 Cross-cutting Health Systems Strengthening (Other Health)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "89ad537c-6bbc-4889-bca3-0de5728a844f",
            "isLocked": true,
            "parentID": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "shortName": null,
            "sortOrder": 193,
            "title": "ES.5 Social Assistance"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "isLocked": true,
            "parentID": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "shortName": null,
            "sortOrder": 167,
            "title": "ES.1 Basic Education"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "23fde7de-6941-4120-b8e4-915ee1a1196d",
            "isLocked": true,
            "parentID": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "shortName": null,
            "sortOrder": 183,
            "title": "ES.3 Social Policies, Regulations, and Systems"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "isLocked": true,
            "parentID": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "shortName": null,
            "sortOrder": 187,
            "title": "ES.4 Social Services"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "isLocked": true,
            "parentID": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "shortName": null,
            "sortOrder": 176,
            "title": "ES.2 Higher Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6109e8d4-36ba-4899-931c-0f426943d2e9",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 98,
            "title": "HL.2.4 Programmatic Management of Multi Drug-Resistant TB (MDR-TB)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c65925a6-8c7e-49de-8a68-1750a2e46ab1",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 99,
            "title": "HL.2.10 Improved Diagnosis and Treatment of Pediatric TB"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "fdfb093e-b303-443b-adf7-28404f0f3f82",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 100,
            "title": "HL.2.9 TB Laboratory Strengthening "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "eb17fad9-8a84-489f-b27e-3604ecad763a",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 101,
            "title": "HL.2.3 Improved Management of TB/HIV Co-infection"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6d6fa662-9ff2-40bf-bd3d-391014697f2c",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 102,
            "title": "HL.2.1 Universal Access to TB Diagnosis and Treatment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "98eca56a-462f-49de-aea8-544bc5001a15",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 103,
            "title": "HL.2.6 Development of New Tools and Improved Approaches"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "19f2355b-6a50-4dd2-83cb-574912d2eac5",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 104,
            "title": "HL.2.2 Improved TB Drug Management"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0689ba00-932a-4abb-b640-908d7ae593db",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 105,
            "title": "HL.2.5 Treatment and Support Services"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f60c888b-c808-4ca6-a9f8-ae2b0c411ca8",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 106,
            "title": "HL.2.8 Host Country Strategic Information Systems"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1d90517c-557f-40c7-b9e1-cb5ee3c59146",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 107,
            "title": "HL.2.11 Improved TB Infection Prevention and Control"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "63a207d7-cc2d-4cf1-b097-eaffa3764b68",
            "isLocked": false,
            "parentID": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "shortName": null,
            "sortOrder": 108,
            "title": "HL.2.7 Cross-cutting Health Systems Strengthening (TB)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "06ac9461-ae69-47ec-ab61-1820830096d9",
            "isLocked": false,
            "parentID": "f679f0e7-1979-4917-8a29-30940efb7a0e",
            "shortName": null,
            "sortOrder": 8,
            "title": "PS.2.1 Counter WMD Proliferation and Combat WMD Terrorism"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0c99a5c3-5203-46ae-818b-2358037e6f0b",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 252,
            "title": "HA Humanitarian Assistance"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a5ef5f2a-dc79-4faa-8abf-2f325917f5ea",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 166,
            "title": "ES Education and Social Services"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 44,
            "title": "DR Democracy, Human Rights and Governance"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c6ada5a5-1291-4129-8c0b-de977241d34f",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 261,
            "title": "PO Program Development and Oversight"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 77,
            "title": "HL Health"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 199,
            "title": "EG Economic Growth"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "isLocked": true,
            "parentID": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "shortName": null,
            "sortOrder": 1,
            "title": "PS Peace and Security"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d3b5b158-e044-4928-a27b-430c94d2d6d0",
            "isLocked": false,
            "parentID": "03f64707-249b-4a1e-a17e-455d2fafef1a",
            "shortName": null,
            "sortOrder": 254,
            "title": "HA.1.2 Assistance and Recovery"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f25f73a5-acfb-4320-a89f-954548710ab9",
            "isLocked": false,
            "parentID": "03f64707-249b-4a1e-a17e-455d2fafef1a",
            "shortName": null,
            "sortOrder": 255,
            "title": "HA.1.1 Protection and Solutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "fbc82083-f5fe-454d-b33f-580882834d25",
            "isLocked": false,
            "parentID": "8e395d4b-1908-4b32-a9bf-4683e63a1e5e",
            "shortName": null,
            "sortOrder": 227,
            "title": "EG.6.4 Technical/Vocational Training for Employment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "68fb34f5-e901-4567-a4b6-9cd2d0d9ae59",
            "isLocked": false,
            "parentID": "8e395d4b-1908-4b32-a9bf-4683e63a1e5e",
            "shortName": null,
            "sortOrder": 228,
            "title": "EG.6.1 Systemic and Institutional Reform"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "42cff9d6-562b-4010-a68c-c56281247826",
            "isLocked": false,
            "parentID": "8e395d4b-1908-4b32-a9bf-4683e63a1e5e",
            "shortName": null,
            "sortOrder": 229,
            "title": "EG.6.3 Workforce Readiness"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2595af70-687d-4245-84b6-e93f917e19d5",
            "isLocked": false,
            "parentID": "8e395d4b-1908-4b32-a9bf-4683e63a1e5e",
            "shortName": null,
            "sortOrder": 230,
            "title": "EG.6.2 Partnership Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b58c9836-0b26-4a46-abaf-0197bec2fe45",
            "isLocked": false,
            "parentID": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "shortName": null,
            "sortOrder": 47,
            "title": "DR.1.3 Checks and Balances with Judicial Independence and Supremacy of Law"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "47a58600-bc6c-492e-8b55-07458ed31911",
            "isLocked": false,
            "parentID": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "shortName": null,
            "sortOrder": 48,
            "title": "DR.1.5 Fairness and Access to Justice"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6ceea71c-c730-4378-a77c-470be0c2fc79",
            "isLocked": false,
            "parentID": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "shortName": null,
            "sortOrder": 49,
            "title": "DR.1.2 Culture of Lawfulness"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c55f4a1e-a481-4845-b919-564245fbe1cc",
            "isLocked": false,
            "parentID": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "shortName": null,
            "sortOrder": 50,
            "title": "DR.1.4 Justice Systems and Institutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5303e9ba-aac9-4bad-b42b-591c7d30f013",
            "isLocked": false,
            "parentID": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "shortName": null,
            "sortOrder": 51,
            "title": "DR.1.1 Constitutions, Laws, and Legal Systems"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5f0f1272-9a0e-402b-82d5-5fad53d9183a",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 168,
            "title": "ES.1.2 Primary Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "810b6231-eeb3-4212-9ea9-6765703f80dc",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 169,
            "title": "ES.1.5 Literacy and Numeracy for Youth and Adults"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "cc9fb870-5056-484b-80d9-6aad5e5b7fc3",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 170,
            "title": "ES.1.1 Pre-Primary Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "00f67ad2-dcfc-4475-aedc-ad9d5aab61c6",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 171,
            "title": "ES.1.4 Learning for Out-of-School Youth"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "062c13b1-c3ee-4b0e-93ae-be76fa07e148",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 172,
            "title": "ES.1.3 Lower Secondary Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c008f7a9-85e2-4265-b45a-cec30f062c09",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 173,
            "title": "ES.1.6 Upper Secondary Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0e10212a-b63a-4b28-9371-da07d3859b78",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 174,
            "title": "ES.1.8 Host Country Strategic Information Capacity (Basic Ed)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7db39ffc-3945-447a-a709-f8f35920daaa",
            "isLocked": false,
            "parentID": "ad6ef405-1e45-44a7-ae5e-52078f9eaeb1",
            "shortName": null,
            "sortOrder": 175,
            "title": "ES.1.7 Education Systems"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "79dd6c22-8f79-40ec-b7c7-046c464244e6",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 110,
            "title": "HL.3.1 Diagnosis and Treatment with Artemisinin-Based Combination Therapies"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "bb5be0c7-cec7-4594-bed7-232651401f28",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 111,
            "title": "HL.3.7 Cross-cutting Health Systems Strengthening (Malaria)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "789b1917-ec62-4758-a04c-5a5021bee729",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 112,
            "title": "HL.3.2 Insecticide-Treated Nets (ITNs) to Prevent Malaria"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b58782ba-2907-49e6-9c28-67c0b5d914f9",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 113,
            "title": "HL.3.3 Indoor Residual Spraying (IRS) to Prevent Malaria"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "51aef1fb-f7d7-450c-8670-94a342b79fa6",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 114,
            "title": "HL.3.9 Host Country Strategic Information Systems (Malaria) "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7232b778-32d4-4038-8bdb-ba6fc6c11f0e",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 115,
            "title": "HL.3.4 Intermittent Preventive Treatment of Pregnant Women"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "abbff560-f039-4677-8359-da68e53f9ea8",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 116,
            "title": "HL.3.8 Anti-microbial Resistance (Malaria)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "886d60c0-1ec8-481d-9754-e40d66d2ca84",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 117,
            "title": "HL.3.5 Epidemic Preparedness and Response"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9f8119fe-c9b9-47da-9903-e56531db120c",
            "isLocked": false,
            "parentID": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "shortName": null,
            "sortOrder": 118,
            "title": "HL.3.6 Malaria Research"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "73edc42b-b7f3-4b00-b2e2-f33d0b6d1da9",
            "isLocked": false,
            "parentID": "dc347726-f99d-4a24-a571-53b55208057c",
            "shortName": null,
            "sortOrder": 31,
            "title": "PS.7.2 Explosive Remnants of War (ERW) and Humanitarian Mine Action (HMA)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "448dbd9b-0522-4e95-ab1e-ff85b2dd73a3",
            "isLocked": false,
            "parentID": "dc347726-f99d-4a24-a571-53b55208057c",
            "shortName": null,
            "sortOrder": 32,
            "title": "PS.7.1 Small Arms/Light Weapons (SA/LW) Destruction and Security"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "bb16f5b4-129f-4db3-b305-d54c091780bc",
            "isLocked": false,
            "parentID": "bbb34eff-2bc6-4f3a-abfc-56f52a268565",
            "shortName": null,
            "sortOrder": 211,
            "title": "EG.2.1 Trade and Investment Enabling Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6699f5f3-7516-42ae-a13e-f5f0b36659e2",
            "isLocked": false,
            "parentID": "bbb34eff-2bc6-4f3a-abfc-56f52a268565",
            "shortName": null,
            "sortOrder": 212,
            "title": "EG.2.2 Trade and Investment Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1ffaeda8-cf82-487e-b8d4-05dbf38e85ff",
            "isLocked": false,
            "parentID": "3b8c1999-af1f-4e41-ad1e-5be16fa15906",
            "shortName": null,
            "sortOrder": 265,
            "title": "PO.2.1 Administration and Oversight"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "71854c1d-81c6-48ec-af18-5604e5d654b2",
            "isLocked": false,
            "parentID": "2e7fe752-7388-4c20-9d81-5fbe63a8afdf",
            "shortName": null,
            "sortOrder": 34,
            "title": "PS.8.1 Defense and Security Operational Capacity-Building"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "cc8d2dfc-4344-45de-b826-602b5b8fde96",
            "isLocked": false,
            "parentID": "2e7fe752-7388-4c20-9d81-5fbe63a8afdf",
            "shortName": null,
            "sortOrder": 35,
            "title": "PS.8.2 Military Professionalization and Institutional Reform"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8a799797-12e3-4d5f-8b9f-fd2bda14eb83",
            "isLocked": false,
            "parentID": "2e7fe752-7388-4c20-9d81-5fbe63a8afdf",
            "shortName": null,
            "sortOrder": 36,
            "title": "PS.8.3 Logistical and Operational Support"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e366a579-2171-446b-aed6-2bd7faaf015e",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 152,
            "title": "HL.8.6 Science and Technology Cooperation"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7be39cff-5b7b-4c4e-85f5-5258fb290e7e",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 153,
            "title": "HL.8.5 Water Resources Productivity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d0bc9c6d-edf6-436c-b326-6033e5689ba6",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 154,
            "title": "HL.8.3 Water and Sanitation Policy and Governance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "dc82cc8b-29b8-4501-b163-652c16f73d54",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 155,
            "title": "HL.8.7 Host Country Strategic Information Systems (Water)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b8334b0c-5bfc-4e31-855a-66a3bc50218c",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 156,
            "title": "HL.8.2 Basic Sanitation"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1dd54e8b-6cf3-4400-bca7-b072fe11dd39",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 157,
            "title": "HL.8.1 Safe Water Access"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c4b205de-40d1-4e9c-af11-c3b30d766501",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 158,
            "title": "HL.8.4 Sustainable Financing for Water and Sanitation Services"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "86390df9-dbce-472d-afe8-ddabdad901c5",
            "isLocked": false,
            "parentID": "5da9252c-3c94-452e-aa64-677762c6c309",
            "shortName": null,
            "sortOrder": 159,
            "title": "HL.8.8 Cross-cutting Health Systems Strengthening (Water)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "31e46574-4044-428f-8241-11a1e9bc6c1f",
            "isLocked": false,
            "parentID": "6af01cf8-5d3a-4178-81be-6cc043002aa0",
            "shortName": null,
            "sortOrder": 245,
            "title": "EG.10.4 Land Tenure and Sustainable Land Management"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "100f2a5b-253a-4e54-8122-5c7ac5c6ea59",
            "isLocked": false,
            "parentID": "6af01cf8-5d3a-4178-81be-6cc043002aa0",
            "shortName": null,
            "sortOrder": 246,
            "title": "EG.10.2 Biodiversity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0fb64938-4976-4f29-a57b-9464ef521dc1",
            "isLocked": false,
            "parentID": "6af01cf8-5d3a-4178-81be-6cc043002aa0",
            "shortName": null,
            "sortOrder": 247,
            "title": "EG.10.1 Clean Productive Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1db44958-be6a-45e2-bb64-d42b4e7d37c7",
            "isLocked": false,
            "parentID": "6af01cf8-5d3a-4178-81be-6cc043002aa0",
            "shortName": null,
            "sortOrder": 248,
            "title": "EG.10.3 Natural Resource Management"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5e2e2739-fada-4b42-be93-6340262d10d8",
            "isLocked": false,
            "parentID": "55e48e88-40f5-45da-b8b7-6d263d7879d4",
            "shortName": null,
            "sortOrder": 214,
            "title": "EG.3.2 Agriculture Sector Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "17f98570-bd67-42fd-9d12-9a8a1257f191",
            "isLocked": false,
            "parentID": "55e48e88-40f5-45da-b8b7-6d263d7879d4",
            "shortName": null,
            "sortOrder": 215,
            "title": "EG.3.3 Nutrition-Sensitive Agriculture"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "09e1a00c-6473-4e84-8998-e93796c8b9b6",
            "isLocked": false,
            "parentID": "55e48e88-40f5-45da-b8b7-6d263d7879d4",
            "shortName": null,
            "sortOrder": 216,
            "title": "EG.3.1 Agriculture Enabling Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "14f1af13-46ad-487d-b6b0-26ce5cb4f318",
            "isLocked": false,
            "parentID": "c8061b02-46bb-467b-88ab-71be8e0b9cf3",
            "shortName": null,
            "sortOrder": 17,
            "title": "PS.4.1 Financial Crimes and Money Laundering"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4af40928-6d19-4115-b3ff-95a546c997d3",
            "isLocked": false,
            "parentID": "c8061b02-46bb-467b-88ab-71be8e0b9cf3",
            "shortName": null,
            "sortOrder": 18,
            "title": "PS.4.4 Cybersecurity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "49d654e9-49dc-4074-a74c-a1bdd1c21be0",
            "isLocked": false,
            "parentID": "c8061b02-46bb-467b-88ab-71be8e0b9cf3",
            "shortName": null,
            "sortOrder": 19,
            "title": "PS.4.3 Organized and Gang-related Crime"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "67387a0d-883f-46c7-b747-e1c656214804",
            "isLocked": false,
            "parentID": "c8061b02-46bb-467b-88ab-71be8e0b9cf3",
            "shortName": null,
            "sortOrder": 20,
            "title": "PS.4.2 Deter Cybercrime, Intellectual Property Theft, and Corporate Espionage"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "281b89ae-aaa5-4e63-be1a-2f1cac6d1800",
            "isLocked": false,
            "parentID": "23fde7de-6941-4120-b8e4-915ee1a1196d",
            "shortName": null,
            "sortOrder": 184,
            "title": "ES.3.3 Host Country Strategic Information Capacity for Social Services Policy"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ed3b54e9-c9bb-4097-a859-5fcc1849b015",
            "isLocked": false,
            "parentID": "23fde7de-6941-4120-b8e4-915ee1a1196d",
            "shortName": null,
            "sortOrder": 185,
            "title": "ES.3.1 Social Policy Governance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e9e6819e-1ef1-4415-8ef6-95b730f4c4d0",
            "isLocked": false,
            "parentID": "23fde7de-6941-4120-b8e4-915ee1a1196d",
            "shortName": null,
            "sortOrder": 186,
            "title": "ES.3.2 Research Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ace3e952-c2ad-4b8a-ac4f-1527d3cf63f2",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 201,
            "title": "EG.13.2 Implementation of Low Emission Development, Implementation in Land Use and/or REDD+ "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "24da456c-60a4-4a06-b7bb-2c29b2376b02",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 202,
            "title": "EG.12.1 Low Emissions Energy Development Planning for Energy"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0b2ab9db-356c-481a-b06b-31033b34fe86",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 203,
            "title": "EG.11.1 Climate Science and Analysis"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "20c7bf45-25c4-4f9e-8637-63feed4a71b4",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 204,
            "title": "EG.11.3 Climate-resilient Practices"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8188b8f2-a3c9-4b5c-848c-66cba8885c35",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 205,
            "title": "EG.11.2 Climate Governance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8524d875-4330-4692-9f52-7260aa343c1e",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 206,
            "title": "EG.12.2 Clear Energy Investment, Implementation, and Use"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "11337b0c-3088-4134-8a80-bf27c29d37e9",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 207,
            "title": "EG.1.1 Fiscal policy"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0d444e7b-33c2-4bef-9fc3-c101954e8563",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 208,
            "title": "EG.1.2 Monetary policy"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8d7c4d6b-754d-4b5c-8e40-f7bc37e48b7c",
            "isLocked": false,
            "parentID": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "shortName": null,
            "sortOrder": 209,
            "title": "EG.13.1 Planning for Low Emission Development, Implementation in Land Use and/or REDD+"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2bc72786-63f7-4796-845b-6b4625225130",
            "isLocked": false,
            "parentID": "7c03b7a3-175e-4094-a606-9a3ccea91de1",
            "shortName": null,
            "sortOrder": 53,
            "title": "DR.6.3 Equal Rights for Marginalized Communities"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8378d168-f7b4-4aea-a4ac-aba0dfa28d8c",
            "isLocked": false,
            "parentID": "7c03b7a3-175e-4094-a606-9a3ccea91de1",
            "shortName": null,
            "sortOrder": 54,
            "title": "DR.6.1 Human Rights Systems, Policies and Protection"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4b71321d-3fbb-4080-b077-eb361399fe3d",
            "isLocked": false,
            "parentID": "7c03b7a3-175e-4094-a606-9a3ccea91de1",
            "shortName": null,
            "sortOrder": 55,
            "title": "DR.6.2 Transitional Justice "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4506da4e-c859-4132-835a-344d7385d893",
            "isLocked": false,
            "parentID": "4d70c337-32dc-4b6b-901d-a18f8190a65a",
            "shortName": null,
            "sortOrder": 257,
            "title": "HA.2.1 Capacity Building, Preparedness, and Planning"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "06295436-2130-4d7f-a5c6-3ad5ad97cfdb",
            "isLocked": false,
            "parentID": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "shortName": null,
            "sortOrder": 161,
            "title": "HL.9.5 Host Country Strategic Information Systems (Nutrition) "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "97a4174c-475f-4523-bdaa-5894e1f7350e",
            "isLocked": false,
            "parentID": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "shortName": null,
            "sortOrder": 162,
            "title": "HL.9.1 Promotion of Improved Nutrition Practices"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "af6b4975-0f89-4347-bae2-705fd9d7b408",
            "isLocked": false,
            "parentID": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "shortName": null,
            "sortOrder": 163,
            "title": "HL.9.4 Cross-cutting Health Systems Strengthening (Nutrition)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2ffcca55-c601-4723-b793-ccee5a3ce620",
            "isLocked": false,
            "parentID": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "shortName": null,
            "sortOrder": 164,
            "title": "HL.9.3 Nutrition Enabling Environment and Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2b89a709-8a1e-4373-bd50-dabb42be8963",
            "isLocked": false,
            "parentID": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "shortName": null,
            "sortOrder": 165,
            "title": "HL.9.2 Population-based Nutrition Service Delivery"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c0ba9a0f-a23f-4582-8747-0b9a38a199e5",
            "isLocked": false,
            "parentID": "c372376c-1420-4d36-9fa1-a3aad44b93d4",
            "shortName": null,
            "sortOrder": 259,
            "title": "HA.3.1 Protection and Assistance"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d0cd0ba8-8149-4a4c-8bf9-fd62dab6cd01",
            "isLocked": false,
            "parentID": "c372376c-1420-4d36-9fa1-a3aad44b93d4",
            "shortName": null,
            "sortOrder": 260,
            "title": "HA.3.2 Institutional Support and Capacity-building"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "60caf3b2-564b-4353-96a9-039e110056d3",
            "isLocked": false,
            "parentID": "c90bd8eb-3b5c-40e7-9053-b0a715e71525",
            "shortName": null,
            "sortOrder": 74,
            "title": "DR.5.2 Professional and Institutional Capacities of Media"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "95a84efd-46df-4d57-8389-2409017accd4",
            "isLocked": false,
            "parentID": "c90bd8eb-3b5c-40e7-9053-b0a715e71525",
            "shortName": null,
            "sortOrder": 75,
            "title": "DR.5.1 Enabling Environment for Media and Free Flow of Information"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "74cbb777-7e4d-410c-af2d-9a8b1ecd4321",
            "isLocked": false,
            "parentID": "c90bd8eb-3b5c-40e7-9053-b0a715e71525",
            "shortName": null,
            "sortOrder": 76,
            "title": "DR.5.3 Outlets and Infrastructure"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "029bed5c-01eb-4548-837b-3e2cffa061b2",
            "isLocked": false,
            "parentID": "1668ce70-7e63-4120-a5bf-b79270224162",
            "shortName": null,
            "sortOrder": 240,
            "title": "EG.9.3 Transport Planning, Policy, and Institutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3fc88cf3-54ad-4b49-a2f9-f625cd34d73f",
            "isLocked": false,
            "parentID": "1668ce70-7e63-4120-a5bf-b79270224162",
            "shortName": null,
            "sortOrder": 241,
            "title": "EG.9.2 Transportation Infrastructure Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d38bc75e-6913-439b-8f3f-ffde58ff164f",
            "isLocked": false,
            "parentID": "1668ce70-7e63-4120-a5bf-b79270224162",
            "shortName": null,
            "sortOrder": 242,
            "title": "EG.9.1 Expanded Access to Transportation Services in Rural and Low Income Areas"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "dac9b33a-d47b-4795-bddd-2ffa9a5ad74d",
            "isLocked": false,
            "parentID": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "shortName": null,
            "sortOrder": 68,
            "title": "DR.4.1 Enabling Environment for Civil Society"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "586d7483-0ea1-417f-acd8-35ade5365dca",
            "isLocked": false,
            "parentID": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "shortName": null,
            "sortOrder": 69,
            "title": "DR.4.3 Civic Education, Citizen Participation and Public Accountability "
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0a4c5d8d-1505-4f22-a126-9015e158d0bb",
            "isLocked": false,
            "parentID": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "shortName": null,
            "sortOrder": 70,
            "title": "DR.4.4 Civic Education and Democratic Culture"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "812a988b-6233-478d-9f7c-c6a5f069017c",
            "isLocked": false,
            "parentID": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "shortName": null,
            "sortOrder": 71,
            "title": "DR.4.5 Democratic Labor and Trade Unions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c6b56ad5-20e9-4cc5-af52-effe3e2ae7e0",
            "isLocked": false,
            "parentID": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "shortName": null,
            "sortOrder": 72,
            "title": "DR.4.2 Civil Society Organizational Capacity Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8210744a-e755-4f21-8ac0-a4d1df5920b4",
            "isLocked": false,
            "parentID": "844606b5-4bd9-40ea-8969-bbce0e7dc23a",
            "shortName": null,
            "sortOrder": 221,
            "title": "EG.4.2 Financial Sector Capacity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0549260a-6bc4-420f-9e4d-f42c84a0d527",
            "isLocked": false,
            "parentID": "844606b5-4bd9-40ea-8969-bbce0e7dc23a",
            "shortName": null,
            "sortOrder": 222,
            "title": "EG.4.1 Financial Sector Enabling Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "df9f4ee7-f58b-4303-9a32-047b680e3e4e",
            "isLocked": false,
            "parentID": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "shortName": null,
            "sortOrder": 10,
            "title": "PS.3.5 Narcotics-Related Corruption"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "de7d9de8-f07f-4a0f-9f9c-870a0bc8ace3",
            "isLocked": false,
            "parentID": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "shortName": null,
            "sortOrder": 11,
            "title": "PS.3.2 Alternative Development and Alternative Livelihoods"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e2824d56-4631-43c0-8c41-877efdc328dc",
            "isLocked": false,
            "parentID": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "shortName": null,
            "sortOrder": 12,
            "title": "PS.3.4 Drug Demand, Prevention and Treatment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d39b1236-f97e-4092-8f40-f53f0a341d31",
            "isLocked": false,
            "parentID": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "shortName": null,
            "sortOrder": 13,
            "title": "PS.3.3 Interdiction"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "99ee0df8-67e2-4e3c-a2e3-fd8e64283212",
            "isLocked": false,
            "parentID": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "shortName": null,
            "sortOrder": 14,
            "title": "PS.3.1 Eradication"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3f8b3ebe-5399-43c0-b715-7c2186d0d14b",
            "isLocked": false,
            "parentID": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "shortName": null,
            "sortOrder": 57,
            "title": "DR.2.4 Anti-Corruption Reforms"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "85a85df1-b9fa-4a15-9552-a51b78ade685",
            "isLocked": false,
            "parentID": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "shortName": null,
            "sortOrder": 58,
            "title": "DR.2.5 Executive Authority - Security Sector (Civilian)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2a276e5c-5acd-4000-af0b-c78e25afa5e3",
            "isLocked": false,
            "parentID": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "shortName": null,
            "sortOrder": 59,
            "title": "DR.2.2 Non-security Executive Authority - Function and Processes"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0e7a8dd7-2f4a-47ff-bab6-c8e5ed03f6dc",
            "isLocked": false,
            "parentID": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "shortName": null,
            "sortOrder": 60,
            "title": "DR.2.1 Legislative Authority - Function and Processes"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c02364eb-74e9-4ade-94c1-f9780673e0ad",
            "isLocked": false,
            "parentID": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "shortName": null,
            "sortOrder": 61,
            "title": "DR.2.3 Local Government and Decentralization"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "96c93c80-9de6-46dd-8f08-4edad1a1236f",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 46,
            "title": "DR.1 Rule of Law (ROL)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7c03b7a3-175e-4094-a606-9a3ccea91de1",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 52,
            "title": "DR.6 Human Rights"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c90bd8eb-3b5c-40e7-9053-b0a715e71525",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 73,
            "title": "DR.5 Independent Media and Free Flow of Information"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9f2d6d26-48ae-459d-b767-b9e8dbf370af",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 67,
            "title": "DR.4 Civil Society"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8abb725f-2d45-42c8-bfc0-bd9ff0b3316d",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 56,
            "title": "DR.2 Good Governance"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f719303b-6040-4dab-b980-d550f0c2e307",
            "isLocked": true,
            "parentID": "4a8e48d1-7c77-443a-b110-c4991a846d2a",
            "shortName": null,
            "sortOrder": 62,
            "title": "DR.3 Political Competition and Consensus-Building"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e1d757ac-ef51-4ca0-8c2a-14a1f3eea473",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 133,
            "title": "HL.6.1 Birth Preparedness and Maternity Services"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "21ff5db1-d457-4602-a3a0-1c68bbaa69dc",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 134,
            "title": "HL.6.2 Treatment of Obstetric Complications and Disabilities"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "59a73126-c903-4b33-95d6-35066f23dbbe",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 135,
            "title": "HL.6.8 Cross-cutting Health Systems Strengthening"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e56b1967-49b1-454d-abb4-512bea12996b",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 136,
            "title": "HL.6.9 Anti-microbial Resistance (MCH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "899ba7ed-ffd2-4c3d-9187-5342d1ef8166",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 137,
            "title": "HL.6.7 Household Level Water, Sanitation, Hygiene and Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0d9552a0-9949-49f3-8f5a-6d9cc744cbe2",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 138,
            "title": "HL.6.10 Host Country Strategic Information System (MCH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "45c8788b-a2ba-4a0e-800e-74afa8b22ef8",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 139,
            "title": "HL.6.3 Newborn Care and Treatment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "7a67310c-1d9b-4e0f-9ad7-a056aa61b181",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 140,
            "title": "HL.6.6 Treatment of Child Illness"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a84fff74-b13f-4426-8779-b01298ba5c1d",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 141,
            "title": "HL.6.5 Polio"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f0b22277-f0b2-4d0c-809f-bcf2290338ab",
            "isLocked": false,
            "parentID": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "shortName": null,
            "sortOrder": 142,
            "title": "HL.6.4 Immunization"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b416636e-5699-4284-8c0d-7158ed5600c9",
            "isLocked": false,
            "parentID": "f719303b-6040-4dab-b980-d550f0c2e307",
            "shortName": null,
            "sortOrder": 63,
            "title": "DR.3.1 Consensus-Building Processes"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ddbce616-5703-4746-a5a1-7fc4f1291e84",
            "isLocked": false,
            "parentID": "f719303b-6040-4dab-b980-d550f0c2e307",
            "shortName": null,
            "sortOrder": 64,
            "title": "DR.3.3 Political Parties"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c20da05f-774f-4386-b337-91e54c5d47db",
            "isLocked": false,
            "parentID": "f719303b-6040-4dab-b980-d550f0c2e307",
            "shortName": null,
            "sortOrder": 65,
            "title": "DR.3.2 Elections and Political Processes"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3b8c1999-af1f-4e41-ad1e-5be16fa15906",
            "isLocked": true,
            "parentID": "c6ada5a5-1291-4129-8c0b-de977241d34f",
            "shortName": null,
            "sortOrder": 264,
            "title": "PO.2 Administration and Oversight"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "57cf9462-9ea0-4acd-9bf3-f7fa701c9817",
            "isLocked": true,
            "parentID": "c6ada5a5-1291-4129-8c0b-de977241d34f",
            "shortName": null,
            "sortOrder": 262,
            "title": "PO.1 Program Design and Learning"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "19533bc0-3955-44d8-a797-2d2131cf8fc1",
            "isLocked": false,
            "parentID": "180258e2-a793-4e29-ab5a-e60a3d54d5f1",
            "shortName": null,
            "sortOrder": 224,
            "title": "EG.5.1 Business Enabling Environment"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "edcb97fc-cf25-46ef-9031-8bdc64b86f72",
            "isLocked": false,
            "parentID": "180258e2-a793-4e29-ab5a-e60a3d54d5f1",
            "shortName": null,
            "sortOrder": 225,
            "title": "EG.5.2 Private Sector Opportunity"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "0352884a-0edf-49b3-a6f6-23226cb2edc2",
            "isLocked": false,
            "parentID": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "shortName": null,
            "sortOrder": 188,
            "title": "ES.4.1 Vulnerable Children"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "35ac7629-734d-4736-be8f-44e827ccec9b",
            "isLocked": false,
            "parentID": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "shortName": null,
            "sortOrder": 189,
            "title": "ES.4.4 Other Targeted Vulnerable Groups"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c6f6b2af-719d-4fff-95e4-a7d392bc550d",
            "isLocked": false,
            "parentID": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "shortName": null,
            "sortOrder": 190,
            "title": "ES.4.5 Host Country Strategic Information Capacity for Social Services Programs"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "237f0ff4-c3ef-4266-a1ac-caa89eb8fd96",
            "isLocked": false,
            "parentID": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "shortName": null,
            "sortOrder": 191,
            "title": "ES.4.3 Victims of Torture"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ce30067a-226a-4374-98b8-cc25ced03981",
            "isLocked": false,
            "parentID": "1567f666-c30a-4c30-9af3-eb474ca0d8d6",
            "shortName": null,
            "sortOrder": 192,
            "title": "ES.4.2 Victims of War"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "a3d68a90-aee6-4238-b931-0a617f6c247a",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 144,
            "title": "HL.7.6 Procurement and Supply Chain (FP/RH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "4e57580a-da9b-4ef2-8b19-23045e0fe35d",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 145,
            "title": "HL.7.2 Communication and Knowledge Management (FP/RH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "758a16f1-ca8c-4e3c-b2cf-28010867757f",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 146,
            "title": "HL.7.5 Host Country Strategic Information Systems (FP/RH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "518b76db-4a1c-442b-a9e4-4f8883594eef",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 147,
            "title": "HL.7.1 Service Delivery"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5bb6a7b6-3f3a-4df1-acb7-beeaec46e1dc",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 148,
            "title": "HL.7.7 Research (FP/RH)"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "e2d0d3c4-df0d-4faa-8b79-c185864d2496",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 149,
            "title": "HL.7.3 Policy Analysis and Capacity Building"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "ef3478c1-f738-4f4a-86fd-e8109d42e104",
            "isLocked": false,
            "parentID": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "shortName": null,
            "sortOrder": 150,
            "title": "HL.7.4 Cross-cutting Health Systems Strengthening (FP/RH)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d2b47127-5bf4-4c80-a4c8-0a5f28c4b487",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 78,
            "title": "HL.1 HIV/AIDS"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "72d37e7a-86e0-49da-852c-10da8a04db65",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 119,
            "title": "HL.4 Pandemic Influenza and Other Emerging Threats (PIOET)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c7da44dc-c4ec-4bca-bc75-25afee422096",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 127,
            "title": "HL.5 Other Public Health Threats"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "29d825f9-f4f1-4ed8-b09a-2f3d23a6b259",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 97,
            "title": "HL.2 Tuberculosis"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "fab993e1-a15c-4e56-be37-53a36adebc99",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 109,
            "title": "HL.3 Malaria"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5da9252c-3c94-452e-aa64-677762c6c309",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 151,
            "title": "HL.8 Water Supply and Sanitation"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "5dd5e0bc-d049-47a2-a8c2-a2623a00a8f3",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 160,
            "title": "HL.9 Nutrition"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b76ef794-fcda-4d1d-9597-c9b4ed80ac23",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 132,
            "title": "HL.6 Maternal and Child Health"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1e9974f1-4d19-431b-928a-ec000cf32cbe",
            "isLocked": true,
            "parentID": "3440be11-2081-4caa-b03c-efa6ca9ed1fa",
            "shortName": null,
            "sortOrder": 143,
            "title": "HL.7 Family Planning and Reproductive Health"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "138f414f-82bc-49a3-a9dd-17adc9912a38",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 236,
            "title": "EG.8 Information and Communications Technology Services"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "692d0f97-fc08-4f4c-acca-21d9aad4e352",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 232,
            "title": "EG.7 Modern Energy Services"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "8e395d4b-1908-4b32-a9bf-4683e63a1e5e",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 226,
            "title": "EG.6 Workforce Development"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "bbb34eff-2bc6-4f3a-abfc-56f52a268565",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 210,
            "title": "EG.2 Trade and Investment"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6af01cf8-5d3a-4178-81be-6cc043002aa0",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 244,
            "title": "EG.10 Environment"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "55e48e88-40f5-45da-b8b7-6d263d7879d4",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 213,
            "title": "EG.3 Agriculture"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "9f5ae96e-2a66-44cc-95f3-7e597fc9c39a",
            "isLocked": false,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 249,
            "title": "EG.11 Climate Change - Adaptation"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "df7453d9-a126-4a12-a568-8eda8d0f12f7",
            "isLocked": false,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 251,
            "title": "EG.13 Climate Change - Sustainable Landscapes"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d5f65395-e267-4142-9c01-95baecfe1a34",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 200,
            "title": "EG.1 Macroeconomic Foundation for Growth"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "1668ce70-7e63-4120-a5bf-b79270224162",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 239,
            "title": "EG.9 Transport Services"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3a6a5854-22e6-4bdf-9edf-b81840adc9bb",
            "isLocked": false,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 250,
            "title": "EG.12 Climate Change - Clean Energy"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "844606b5-4bd9-40ea-8969-bbce0e7dc23a",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 220,
            "title": "EG.4 Financial Sector"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "180258e2-a793-4e29-ab5a-e60a3d54d5f1",
            "isLocked": true,
            "parentID": "42fc8440-400b-4266-93ea-f1884f1b75aa",
            "shortName": null,
            "sortOrder": 223,
            "title": "EG.5 Private Sector Productivity"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d30f6e25-ba19-41c5-80ff-01db2dd0dfd2",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 21,
            "title": "PS.5 Trafficking in Persons"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d17cd513-56f2-4bc6-96e3-098eee094ab2",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 25,
            "title": "PS.6 Conflict Mitigation and Stabilization"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "d3dde668-f83d-42f5-b58c-0dc5297c29f2",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 2,
            "title": "PS.1 Counter-Terrorism"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f3c9d478-e929-4db1-9b72-245688bdae9b",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 37,
            "title": "PS.9 Citizen Security and Law Enforcement"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "f679f0e7-1979-4917-8a29-30940efb7a0e",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 7,
            "title": "PS.2 Combatting weapons of Mass Destruction (WMD)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "dc347726-f99d-4a24-a571-53b55208057c",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 30,
            "title": "PS.7 Conventional Weapons Security and Explosive Remnants of War (ERW)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "2e7fe752-7388-4c20-9d81-5fbe63a8afdf",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 33,
            "title": "PS.8 Strengthening Military Partnerships and Capabilities"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c8061b02-46bb-467b-88ab-71be8e0b9cf3",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 16,
            "title": "PS.4 Transnational Threats and Crime"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "b3ed18f4-e0d4-43ac-99f6-bd118a21881f",
            "isLocked": true,
            "parentID": "dd66f507-0a88-4949-80ed-f22aae72ee89",
            "shortName": null,
            "sortOrder": 9,
            "title": "PS.3 Counter-Narcotics"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "56baa130-a0eb-4a24-a23c-8d6f05f88a4e",
            "isLocked": false,
            "parentID": "57cf9462-9ea0-4acd-9bf3-f7fa701c9817",
            "shortName": null,
            "sortOrder": 263,
            "title": "PO.1.1 Program Design and Learning"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "6e25748d-54ff-4e90-a79f-0278f2018a62",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 177,
            "title": "ES.2.5 Systemic Reform of Tertiary Institutions"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "df9fde0d-df31-4a84-9169-49cfdfd582ec",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 178,
            "title": "ES.2.4 Engaging Tertiary Institutions in Workforce Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c4be9187-0be5-4144-8314-8d79625c149d",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 179,
            "title": "ES.2.2 Access to Tertiary Education and Professional Development to Strengthen Higher Education"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "c67001b5-a859-485e-b73c-aa5a0ec99527",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 180,
            "title": "ES.2.6 Access to Higher Education Opportunities"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "da480e09-8957-40a8-af48-b4d1eab93812",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 181,
            "title": "ES.2.1 Engaging Higher Education Institutions in Research and Development"
          }, {
            "color": "",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "533fe41c-8aff-4131-b546-e1e4e2641094",
            "isLocked": false,
            "parentID": "f17b4249-77a7-4dfc-a55e-f8289401228b",
            "shortName": null,
            "sortOrder": 182,
            "title": "ES.2.3 Host Country Strategic Information Capacity (Higher Ed)"
          }, {
            "color": "#BFBFBF",
            "columnDomain": "",
            "columnType": 0,
            "fieldName": "",
            "id": "3ddfae57-a7a2-4f68-a4ca-4325fb33f6ba",
            "isLocked": true,
            "parentID": null,
            "shortName": null,
            "sortOrder": -1,
            "title": "Total"
          }]
        };
        }