Search

Export

Export

Export charts in high resolution and multiple formats.

Export
View live example →

Click on the buttons above the chart to select a format and download an exported image of the Chart element.

Set the extents to export either the current view or the whole chart.

export is a chart instance method, and does not affect the ReGraph state.

See also

import React, { useRef, useState } from "react";
import { createRoot } from "react-dom/client";

import { Chart } from "regraph";

import { items } from "./data";

import "regraph/export";
import "@ci/theme/rg/css/layout.css";
import "@fortawesome/fontawesome-free/css/fontawesome.css";
import "@fortawesome/fontawesome-free/css/solid.css";

function ExportDemo() {
  const chartRef = useRef(null);

  return (
    <div className="story">
      <ExportControls chartRef={chartRef} />
      <div className="chart-wrapper">
        <Chart
          ref={chartRef}
          layout={{ tightness: 4 }}
          items={items}
          options={{
            fit: { N204: true, N205: true, N220: true, N206: true, N209: true, N215: true },
            imageAlignment: { "fas fa-user": { size: 0.8, dy: -5 } },
            iconFontFamily: "Font Awesome 5 Free",
          }}
        />
      </div>
    </div>
  );
}

function ExportControls({ chartRef }) {
  const [format, setFormat] = useState("png");
  const [resolution, setResolution] = useState(4000);
  const [extents, setExtents] = useState("view");

  const pngFormat = format === "png";
  const svgFormat = format === "svg";
  const pdfFormat = format === "pdf";

  const fetchAndDownloadImage = () => {
    const options = { type: format, extents };
    if (pngFormat) {
      options.fitTo = { width: resolution, height: resolution };
    } else if (svgFormat) {
      options.fitTo = { width: window.innerWidth };
    } else if (pdfFormat) {
      options.fitTo = "page";
      // Note: margins are specified in points, with 72 points per inch
      options.doc = { layout: "landscape", margin: 0.5 * 72 };
    }
    if (chartRef.current) {
      chartRef.current
        .export(options)
        .then((image) => {
          image.download("ReGraph_export");
        })
        .catch((err) => {
          console.error("Regraph Export:", err.message);
        });
    }
  };

  return (
    <div
      className="options overlay"
      style={{ flexBasis: "auto", minWidth: 400, flexWrap: "nowrap" }}
    >
      <div
        className="options__group"
        style={{
          display: "flex",
          flexDirection: "column",
          justifyContent: "center",
          alignItems: "start",
        }}
      >
        <div className="options__group__subgroup">
          <span style={{ display: "inline-block", width: 80 }} className="label">
            Format
          </span>
          <button
            type="button"
            style={{ margin: "3px 6px" }}
            className={pngFormat ? "active" : ""}
            onClick={() => {
              setFormat("png");
            }}
          >
            PNG
          </button>
          <button
            type="button"
            style={{ margin: "3px 6px" }}
            className={format === "svg" ? "active" : ""}
            onClick={() => {
              setFormat("svg");
            }}
          >
            SVG
          </button>
          <button
            type="button"
            style={{ margin: "3px 6px" }}
            className={format === "pdf" ? "active" : ""}
            onClick={() => {
              setFormat("pdf");
            }}
          >
            PDF
          </button>
        </div>
        <div className="options__group__subgroup">
          <span style={{ display: "inline-block", width: 80 }} className="label">
            Extents
          </span>
          <button
            type="button"
            style={{ margin: "3px 6px" }}
            className={extents === "view" ? "active" : ""}
            onClick={() => {
              setExtents("view");
            }}
          >
            View
          </button>
          <button
            type="button"
            style={{ margin: "3px 6px" }}
            className={extents === "chart" ? "active" : ""}
            onClick={() => {
              setExtents("chart");
            }}
          >
            Chart
          </button>
        </div>
        <div
          className="options__group__subgroup"
          style={{ display: "flex", justifyContent: "center", alignItems: "center" }}
        >
          <span
            style={{
              display: "inline-block",
              width: 80,
              color: pngFormat ? "#555" : "#CCC",
            }}
            className="label"
          >
            Resolution
          </span>
          <div
            className="slider"
            style={{ display: "flex", justifyContent: "center", alignItems: "center" }}
          >
            <input
              type="range"
              min="1000"
              max="5000"
              step="500"
              defaultValue={resolution}
              style={{ boxShadow: "none" }}
              disabled={pngFormat}
              onChange={(event) => setResolution(parseInt(event.target.value, 10))}
            />
            <span
              style={{
                minWidth: "26px",
                marginLeft: "5px",
                color: pngFormat ? "#555" : "#CCC",
              }}
            >
              {Number(resolution / 1000).toFixed(1)}k
            </span>
          </div>
        </div>
      </div>

      <span className="separator" style={{ minHeight: "60px", height: "80%" }} />
      <button type="button" style={{ margin: "3px 6px" }} onClick={fetchAndDownloadImage}>
        Download
      </button>
    </div>
  );
}

const FontReadyChart = React.lazy(() =>
  document.fonts.load("900 24px 'Font Awesome 5 Free'").then(() => ({
    default: ExportDemo,
  }))
);

export function Demo() {
  return (
    <React.Suspense fallback="">
      <FontReadyChart />
    </React.Suspense>
  );
}

const root = createRoot(document.getElementById("regraph"));
root.render(<Demo />);
import { style } from "@ci/theme/rg/js/storyStyles";

export const items = {
  N1: {
    ...style.primary2,
    label: [
      {
        text: "Hassan al Fadli",
        position: "s",
      },
    ],
    border: {
      width: 2,
    },
    data: {
      country: "Afghanistan",
      region: "Middle East",
    },
    fontIcon: {
      text: "fas fa-user",
      color: style.colors.offWhite,
    },
  },
  N2: {
    ...style.primary2,
    label: [{ text: "Nabil ibn al-Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N3: {
    ...style.primary2,
    label: [{ text: "Mustafa al-Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N4: {
    ...style.primary2,
    label: [{ text: "Ibrahim Abd Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N5: {
    ...style.primary2,
    label: [{ text: "Amir Abdal Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N6: {
    ...style.primary2,
    label: [{ text: "Omar Abu Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N7: {
    ...style.primary2,
    label: [{ text: "Sami al Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N8: {
    ...style.primary2,
    label: [{ text: "Yusuf al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N9: {
    color: style.colors.midGrey,
    label: [{ text: "Tariq ibn Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N10: {
    ...style.primary2,
    label: [{ text: "Yusuf Abd Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N11: {
    ...style.primary2,
    label: [{ text: "Ahmed al Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N12: {
    ...style.primary2,
    label: [{ text: "Zaid Abdal Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N13: {
    ...style.primary2,
    label: [{ text: "Yusuf ibn Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N14: {
    ...style.primary2,
    label: [{ text: "Mustafa Abu Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N15: {
    ...style.primary2,
    label: [{ text: "Nabil Abd Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N16: {
    ...style.primary2,
    label: [{ text: "Faisal ibn al-Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N17: {
    ...style.primary2,
    label: [{ text: "Faisal al Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N18: {
    ...style.primary2,
    label: [{ text: "Tariq Abdal Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N19: {
    ...style.primary2,
    label: [{ text: "Karim al Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N20: {
    ...style.primary2,
    label: [{ text: "Zaid ibn Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N21: {
    ...style.primary2,
    label: [{ text: "Ahmed ibn al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N22: {
    ...style.primary2,
    label: [{ text: "Saad al-Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N23: {
    ...style.primary2,
    label: [{ text: "Sami ibn Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Jordan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N24: {
    ...style.primary2,
    label: [{ text: "Zaid al Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N25: {
    ...style.primary2,
    label: [{ text: "Ali al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N26: {
    ...style.primary2,
    label: [{ text: "Faisal Abdal Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N27: {
    ...style.cat05,
    label: [{ text: "Tariq al Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Sudan", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N28: {
    ...style.primary2,
    label: [{ text: "Saad ibn Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N29: {
    ...style.primary2,
    label: [{ text: "Bilal al Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N30: {
    ...style.primary2,
    label: [{ text: "Omar al-Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N31: {
    ...style.cat03,
    label: [{ text: "Faisal ibn Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N32: {
    ...style.primary2,
    label: [{ text: "Ali ibn Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N33: {
    ...style.primary2,
    label: [{ text: "Yusuf Abdal Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N34: {
    ...style.primary2,
    label: [{ text: "Mustafa Abu Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N35: {
    ...style.primary2,
    label: [{ text: "Ibrahim al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Yemen", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N36: {
    ...style.primary2,
    label: [{ text: "Yusuf Abd Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N37: {
    ...style.primary2,
    label: [{ text: "Hassan Abd Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N38: {
    ...style.primary3,
    label: [{ text: "Bilal Abd Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N39: {
    ...style.primary2,
    label: [{ text: "Omar ibn al-Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N40: {
    ...style.primary3,
    label: [{ text: "Faisal Abdal Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N41: {
    ...style.primary2,
    label: [{ text: "Amir al Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N42: {
    ...style.primary2,
    label: [{ text: "Mohammed al Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N43: {
    ...style.primary2,
    label: [{ text: "Abdul Abdal Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N44: {
    ...style.primary2,
    label: [{ text: "Zaid ibn al-Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N45: {
    ...style.primary2,
    label: [{ text: "Abdul Abdal Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N46: {
    ...style.primary2,
    label: [{ text: "Nabil Abdal Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N47: {
    ...style.primary2,
    label: [{ text: "Mustafa ibn al-Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N48: {
    ...style.primary2,
    label: [{ text: "Zaid Abd Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N49: {
    ...style.cat03,
    label: [{ text: "L'Houssaine Kherchtou", position: "s" }],
    border: { width: 2 },
    data: { country: "Italy", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N50: {
    ...style.primary2,
    label: [{ text: "Abdul Abd Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N51: {
    ...style.primary2,
    label: [{ text: "Omar al Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N52: {
    ...style.cat05,
    label: [{ text: "Abdul Abd Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Tanzania", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N53: {
    ...style.cat03,
    label: [{ text: "Saad Abd Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N54: {
    ...style.cat03,
    label: [{ text: "Faisal bin Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N55: {
    ...style.primary2,
    label: [{ text: "Khalid ibn Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N56: {
    ...style.primary2,
    label: [{ text: "Amir ibn Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N57: {
    ...style.cat03,
    label: [{ text: "Amir ibn al-Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N58: {
    ...style.cat03,
    label: [{ text: "Yusuf Abdal Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N59: {
    ...style.cat03,
    label: [{ text: "Zaid Abd Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N60: {
    ...style.cat03,
    label: [{ text: "Ali al Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N61: {
    ...style.cat03,
    label: [{ text: "Nabil bin Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N62: {
    ...style.cat03,
    label: [{ text: "Amir Abdal Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N63: {
    ...style.cat03,
    label: [{ text: "Zaid al Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N64: {
    ...style.cat03,
    label: [{ text: "Zaid ibn Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N65: {
    ...style.cat03,
    label: [{ text: "Amir al-Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N66: {
    ...style.cat03,
    label: [{ text: "Khalid al Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N67: {
    ...style.cat03,
    label: [{ text: "Hassan Abdal Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N68: {
    ...style.primary3,
    label: [{ text: "Jamal Abu Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N69: {
    ...style.primary2,
    label: [{ text: "Nabil ibn al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N70: {
    color: style.colors.midGrey,
    label: [{ text: "Karim ibn al-Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N71: {
    ...style.primary2,
    label: [{ text: "Yusuf al-Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N72: {
    ...style.primary2,
    label: [{ text: "Mustafa bin Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N73: {
    ...style.primary2,
    label: [{ text: "Ali Abd Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N74: {
    ...style.primary2,
    label: [{ text: "Mohammed bin Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N75: {
    ...style.primary2,
    label: [{ text: "Khalid al-Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N76: {
    ...style.primary2,
    label: [{ text: "Amir Abd Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N77: {
    ...style.primary2,
    label: [{ text: "Amir Abu Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N78: {
    ...style.primary2,
    label: [{ text: "Yusuf al Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N79: {
    ...style.primary2,
    label: [{ text: "Abdul Abdal Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N80: {
    ...style.primary2,
    label: [{ text: "Yusuf Abd Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N81: {
    ...style.primary2,
    label: [{ text: "Mohammed Abu Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N82: {
    ...style.primary2,
    label: [{ text: "Bilal al Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N83: {
    ...style.primary2,
    label: [{ text: "Karim al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N84: {
    ...style.cat05,
    label: [{ text: "Ali Abdal Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N85: {
    ...style.primary2,
    label: [{ text: "Nabil al Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N86: {
    ...style.primary3,
    label: [{ text: "Saad Abdal Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N87: {
    ...style.primary3,
    label: [{ text: "Bilal al Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N88: {
    ...style.primary2,
    label: [{ text: "Khalid ibn al-Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Yemen", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N89: {
    ...style.cat03,
    label: [{ text: "Khalid ibn Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N90: {
    ...style.cat03,
    label: [{ text: "Yusuf Abu Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N91: {
    ...style.primary2,
    label: [{ text: "Saad al Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N92: {
    color: style.colors.midGrey,
    label: [{ text: "Mohammed Abd Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N93: {
    color: style.colors.midGrey,
    label: [{ text: "Bilal al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N94: {
    ...style.primary2,
    label: [{ text: "Ali Abd Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N95: {
    ...style.primary2,
    label: [{ text: "Faisal Abdal Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N96: {
    ...style.primary2,
    label: [{ text: "Zaid Abu Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N97: {
    ...style.primary3,
    label: [{ text: "Mohammed Abu Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N98: {
    ...style.primary3,
    label: [{ text: "Saad Abdal Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N99: {
    ...style.primary2,
    label: [{ text: "Ali Abdal Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N100: {
    ...style.primary2,
    label: [{ text: "Saad ibn al-Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N101: {
    ...style.primary2,
    label: [{ text: "Saad bin Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N102: {
    ...style.primary2,
    label: [{ text: "Ali bin Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N103: {
    ...style.primary2,
    label: [{ text: "Mohammed bin Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N104: {
    ...style.cat03,
    label: [{ text: "James Wright", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N105: {
    ...style.primary2,
    label: [{ text: "Nabil Abd Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N106: {
    color: style.colors.midGrey,
    label: [{ text: "Mustafa al Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N107: {
    ...style.primary2,
    label: [{ text: "Bilal ibn al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N108: {
    ...style.primary2,
    label: [{ text: "Abdul Abu Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N109: {
    ...style.cat03,
    label: [{ text: "Hassan Abdal Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N110: {
    ...style.cat03,
    label: [{ text: "Ibrahim Abd Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N111: {
    ...style.cat03,
    label: [{ text: "Hassan Abd Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N112: {
    ...style.cat03,
    label: [{ text: "Khalid Abdal Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N113: {
    ...style.cat03,
    label: [{ text: "Omar ibn al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N114: {
    ...style.cat03,
    label: [{ text: "Samuel Taylor", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N115: {
    ...style.cat03,
    label: [{ text: "Khalid Abu Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N116: {
    ...style.cat03,
    label: [{ text: "Jamal al Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N117: {
    ...style.cat03,
    label: [{ text: "Mohammed al Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N118: {
    ...style.primary2,
    label: [{ text: "Saad Abd Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Yemen", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N119: {
    ...style.primary2,
    label: [{ text: "Omar Abu Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Yemen", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N120: {
    ...style.primary2,
    label: [{ text: "Jamal Abd Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N121: {
    ...style.primary2,
    label: [{ text: "Jamal ibn Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N122: {
    ...style.primary2,
    label: [{ text: "Hassan al Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N123: {
    ...style.primary2,
    label: [{ text: "Mustafa Abdal Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N124: {
    ...style.primary2,
    label: [{ text: "Ahmed Abdal Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N125: {
    ...style.primary2,
    label: [{ text: "Abdul Abu Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N126: {
    ...style.primary2,
    label: [{ text: "Tariq Abdal Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N127: {
    ...style.primary2,
    label: [{ text: "Faisal bin Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Kuwait", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N128: {
    ...style.primary2,
    label: [{ text: "Omar al Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N129: {
    ...style.primary2,
    label: [{ text: "Mustafa Abd Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N130: {
    ...style.primary2,
    label: [{ text: "Nabil Abd Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N131: {
    ...style.primary2,
    label: [{ text: "Saad Abd Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N132: {
    color: style.colors.midGrey,
    label: [{ text: "Ahmed Abu Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N133: {
    ...style.primary2,
    label: [{ text: "Mustafa Abdal Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N134: {
    ...style.primary2,
    label: [{ text: "Bilal al-Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N135: {
    ...style.primary2,
    label: [{ text: "Mustafa Abu Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N136: {
    ...style.primary2,
    label: [{ text: "Ali ibn Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N137: {
    ...style.primary2,
    label: [{ text: "Amir Abu Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Saudi Arabia", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N138: {
    ...style.primary2,
    label: [{ text: "Ahmed bin Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N139: {
    ...style.primary2,
    label: [{ text: "Hassan Abu Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N140: {
    ...style.primary2,
    label: [{ text: "Yusuf Abu Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N141: {
    ...style.primary2,
    label: [{ text: "Tariq ibn al-Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N142: {
    ...style.primary2,
    label: [{ text: "Ali al Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N143: {
    ...style.primary2,
    label: [{ text: "Tariq al-Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N144: {
    ...style.primary2,
    label: [{ text: "Saad al-Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N145: {
    ...style.primary2,
    label: [{ text: "Yusuf Abd Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N146: {
    ...style.primary2,
    label: [{ text: "Nabil Abu Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N147: {
    ...style.primary2,
    label: [{ text: "Yusuf Abdal Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N148: {
    ...style.primary2,
    label: [{ text: "Faisal ibn al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Turkey", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N149: {
    ...style.cat03,
    label: [{ text: "Ali Abd Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N150: {
    color: style.colors.midGrey,
    label: [{ text: "Ahmed Abd Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N151: {
    ...style.cat01,
    label: [{ text: "Bilal ibn al-Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N152: {
    ...style.cat01,
    label: [{ text: "Nabil bin Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N153: {
    ...style.cat01,
    label: [{ text: "Ibrahim Abu Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N154: {
    ...style.primary2,
    label: [{ text: "Saad bin Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N155: {
    ...style.cat01,
    label: [{ text: "Amir ibn al-Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N156: {
    ...style.cat01,
    label: [{ text: "Bilal bin Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N157: {
    ...style.primary2,
    label: [{ text: "Amir Abdal Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N158: {
    ...style.cat01,
    label: [{ text: "Yusuf Abdal Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N159: {
    ...style.cat01,
    label: [{ text: "Hassan Abdal Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N160: {
    ...style.cat01,
    label: [{ text: "Hassan ibn al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N161: {
    ...style.cat01,
    label: [{ text: "Zaid al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N162: {
    ...style.cat01,
    label: [{ text: "Ali Abu Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N163: {
    ...style.cat01,
    label: [{ text: "Omar Abd Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N164: {
    ...style.cat01,
    label: [{ text: "Zaid Abu Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N165: {
    ...style.cat01,
    label: [{ text: "Jamal al-Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N166: {
    ...style.cat01,
    label: [{ text: "Yusuf Abd Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N167: {
    ...style.primary2,
    label: [{ text: "Abdul ibn al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N168: {
    ...style.cat01,
    label: [{ text: "Jamal Abu Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N169: {
    ...style.cat01,
    label: [{ text: "Saad ibn al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N170: {
    ...style.cat01,
    label: [{ text: "Jamal bin Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N171: {
    ...style.primary2,
    label: [{ text: "Amir ibn al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N172: {
    ...style.cat01,
    label: [{ text: "Ali Abu Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N173: {
    ...style.cat01,
    label: [{ text: "Ahmed bin Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N174: {
    ...style.cat01,
    label: [{ text: "Tariq al-Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N175: {
    ...style.primary2,
    label: [{ text: "Ahmed Abdal Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N176: {
    ...style.cat01,
    label: [{ text: "Omar bin Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N177: {
    ...style.cat01,
    label: [{ text: "Karim bin Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N178: {
    ...style.cat01,
    label: [{ text: "Ali Abdal Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N179: {
    ...style.primary2,
    label: [{ text: "Omar Abdal Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N180: {
    ...style.cat01,
    label: [{ text: "Zaid bin Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N181: {
    ...style.cat01,
    label: [{ text: "Mustafa Abd Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N182: {
    ...style.cat01,
    label: [{ text: "Nabil Abdal Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N183: {
    ...style.primary2,
    label: [{ text: "Bilal bin Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N184: {
    color: style.colors.midGrey,
    label: [{ text: "Zaid Abu Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N185: {
    color: style.colors.midGrey,
    label: [{ text: "Nabil ibn al-Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N186: {
    ...style.cat01,
    label: [{ text: "Abdul ibn al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N187: {
    ...style.cat01,
    label: [{ text: "Ibrahim ibn al-Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N188: {
    ...style.cat01,
    label: [{ text: "Khalid al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N189: {
    color: style.colors.midGrey,
    label: [{ text: "Karim Abu Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N190: {
    ...style.cat01,
    label: [{ text: "Nabil Abdal Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N191: {
    ...style.primary2,
    label: [{ text: "Omar Abu Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N192: {
    ...style.cat01,
    label: [{ text: "Nabil Abd Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Malaysia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N193: {
    ...style.primary2,
    label: [{ text: "Abdul ibn al-Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N194: {
    color: style.colors.midGrey,
    label: [{ text: "Faisal bin Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N195: {
    ...style.primary2,
    label: [{ text: "Abdul ibn Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N196: {
    ...style.primary2,
    label: [{ text: "Tariq al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N197: {
    ...style.cat01,
    label: [{ text: "Khalid Abd Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N198: {
    ...style.cat01,
    label: [{ text: "Mohammed ibn al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N199: {
    ...style.cat01,
    label: [{ text: "Amir al Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Singapore", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N200: {
    ...style.cat01,
    label: [{ text: "Matthew Miller", position: "s" }],
    border: { width: 2 },
    data: { country: "Australia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N201: {
    ...style.cat01,
    label: [{ text: "Daniel Green", position: "s" }],
    border: { width: 2 },
    data: { country: "Australia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N202: {
    ...style.cat03,
    label: [{ text: "Hassan Abdal Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N203: {
    ...style.cat05,
    label: [{ text: "Jamal ibn Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N204: {
    ...style.primary2,
    label: [{ text: "Nabil bin Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N205: {
    ...style.primary2,
    label: [{ text: "Karim Abu Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N206: {
    ...style.cat03,
    label: [{ text: "Ahmed bin Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N207: {
    ...style.cat03,
    label: [{ text: "Bilal al Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N208: {
    ...style.cat03,
    label: [{ text: "Ahmed bin Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N209: {
    ...style.cat03,
    label: [{ text: "Zaid Abu Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N210: {
    ...style.cat03,
    label: [{ text: "Mark Lewis", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N211: {
    ...style.cat03,
    label: [{ text: "Ali bin Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N212: {
    ...style.cat03,
    label: [{ text: "Jamal Abd Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N213: {
    ...style.cat03,
    label: [{ text: "Jamal ibn Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N214: {
    ...style.cat03,
    label: [{ text: "Nabil bin Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N215: {
    ...style.cat03,
    label: [{ text: "Mohammed al Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N216: {
    ...style.cat03,
    label: [{ text: "Omar Abd Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N217: {
    ...style.cat03,
    label: [{ text: "Sami Abu Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N218: {
    ...style.cat03,
    label: [{ text: "Karim ibn al-Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N219: {
    ...style.cat03,
    label: [{ text: "Amir ibn Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N220: {
    ...style.cat03,
    label: [{ text: "Ibrahim Abu Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N221: {
    ...style.cat03,
    label: [{ text: "Faisal Abu Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N222: {
    color: style.colors.midGrey,
    label: [{ text: "Yusuf ibn Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N223: {
    ...style.cat03,
    label: [{ text: "Saad ibn al-Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N224: {
    ...style.cat05,
    label: [{ text: "Faisal Abu Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N225: {
    ...style.cat03,
    label: [{ text: "Hassan ibn Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N226: {
    ...style.cat05,
    label: [{ text: "Tariq bin Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N227: {
    ...style.cat03,
    label: [{ text: "Sami bin Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N228: {
    ...style.cat03,
    label: [{ text: "Abdul Abd Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N229: {
    ...style.cat03,
    label: [{ text: "Mohammed Abdal Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N230: {
    ...style.cat03,
    label: [{ text: "Richard Lewis", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N231: {
    ...style.cat03,
    label: [{ text: "Michael Miller", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N232: {
    ...style.cat03,
    label: [{ text: "Faisal al Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N233: {
    ...style.cat03,
    label: [{ text: "Ibrahim al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N234: {
    ...style.cat03,
    label: [{ text: "Ahmed ibn Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N235: {
    ...style.cat03,
    label: [{ text: "Ibrahim Abd Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N236: {
    ...style.cat03,
    label: [{ text: "Zaid al Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N237: {
    ...style.cat03,
    label: [{ text: "Omar ibn al-Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N238: {
    ...style.cat03,
    label: [{ text: "Abdul bin Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N239: {
    ...style.cat05,
    label: [{ text: "Faisal al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N240: {
    ...style.cat03,
    label: [{ text: "Mark Jones", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N241: {
    ...style.cat03,
    label: [{ text: "Richard Williams", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N242: {
    ...style.cat03,
    label: [{ text: "Hassan ibn Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N243: {
    ...style.cat03,
    label: [{ text: "Zaid Abu Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N244: {
    ...style.cat03,
    label: [{ text: "Ali al-Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N245: {
    ...style.cat03,
    label: [{ text: "Nabil Abu Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N246: {
    ...style.cat03,
    label: [{ text: "Faisal bin Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N247: {
    ...style.cat03,
    label: [{ text: "Amir Abu Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N248: {
    ...style.cat03,
    label: [{ text: "Khalid al Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N249: {
    ...style.cat03,
    label: [{ text: "Ahmed Abdal Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N250: {
    ...style.primary2,
    label: [{ text: "Jamal Abd Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N251: {
    ...style.primary3,
    label: [{ text: "Amir bin Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N252: {
    ...style.primary3,
    label: [{ text: "Ibrahim al Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N253: {
    ...style.cat03,
    label: [{ text: "Ahmed al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N254: {
    ...style.primary2,
    label: [{ text: "Ali Abu Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N255: {
    ...style.primary3,
    label: [{ text: "Faisal ibn Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N256: {
    ...style.primary3,
    label: [{ text: "Faisal Abdal Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N257: {
    ...style.primary3,
    label: [{ text: "Omar ibn al-Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N258: {
    ...style.primary3,
    label: [{ text: "Sami ibn al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N259: {
    ...style.primary3,
    label: [{ text: "Bilal Abu Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N260: {
    ...style.primary3,
    label: [{ text: "Omar ibn Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N261: {
    ...style.primary3,
    label: [{ text: "Ahmed ibn Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N262: {
    ...style.primary3,
    label: [{ text: "Omar al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N263: {
    ...style.primary3,
    label: [{ text: "Hassan al-Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N264: {
    color: style.colors.midGrey,
    label: [{ text: "Saad Abd Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N265: {
    ...style.cat03,
    label: [{ text: "Omar Abu Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N266: {
    ...style.cat03,
    label: [{ text: "Amir Abdal Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N267: {
    ...style.cat03,
    label: [{ text: "Amir Abu Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N268: {
    ...style.cat05,
    label: [{ text: "Abdul Abu Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N269: {
    ...style.cat03,
    label: [{ text: "Saad al Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N270: {
    color: style.colors.midGrey,
    label: [{ text: "Amir ibn al-Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N271: {
    color: style.colors.midGrey,
    label: [{ text: "Ali bin Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N272: {
    color: style.colors.midGrey,
    label: [{ text: "Saad Abdal Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N273: {
    ...style.cat03,
    label: [{ text: "Michael Williams", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N274: {
    ...style.cat03,
    label: [{ text: "Faisal al-Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N275: {
    ...style.cat03,
    label: [{ text: "Zaid Abdal Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N276: {
    ...style.cat05,
    label: [{ text: "Saad al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Algeria", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N277: {
    ...style.cat03,
    label: [{ text: "Faisal ibn Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N278: {
    ...style.cat03,
    label: [{ text: "Ibrahim ibn Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N279: {
    ...style.cat03,
    label: [{ text: "Hassan bin Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N280: {
    ...style.cat03,
    label: [{ text: "Abdul al-Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N281: {
    ...style.primary2,
    label: [{ text: "Zaid al-Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Yemen", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N282: {
    ...style.cat03,
    label: [{ text: "Nabil ibn al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Italy", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N283: {
    ...style.cat03,
    label: [{ text: "Jamal al Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Belgium", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N284: {
    ...style.cat03,
    label: [{ text: "Ibrahim ibn Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Belgium", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N285: {
    ...style.cat03,
    label: [{ text: "Jamal al Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Belgium", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N286: {
    ...style.cat03,
    label: [{ text: "Saad Abdal Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Belgium", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N287: {
    ...style.cat03,
    label: [{ text: "Nabil al Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N288: {
    ...style.cat03,
    label: [{ text: "Hassan Abdal Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N289: {
    ...style.cat03,
    label: [{ text: "Ibrahim al-Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N290: {
    ...style.cat03,
    label: [{ text: "Ali al Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N291: {
    ...style.cat03,
    label: [{ text: "Richard Wilson", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N292: {
    ...style.cat03,
    label: [{ text: "Stephen Green", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N293: {
    ...style.cat03,
    label: [{ text: "Khalid ibn Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N294: {
    ...style.cat03,
    label: [{ text: "Omar Abd Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N295: {
    ...style.cat03,
    label: [{ text: "Mohammed Abdal Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N296: {
    ...style.cat03,
    label: [{ text: "Ibrahim bin Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N297: {
    ...style.cat03,
    label: [{ text: "Abdul Abd Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N298: {
    ...style.cat03,
    label: [{ text: "Daniel Scott", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N299: {
    ...style.cat03,
    label: [{ text: "Daniel Brown", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N300: {
    ...style.cat03,
    label: [{ text: "Mark Wilson", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N301: {
    ...style.cat03,
    label: [{ text: "Andrew Scott", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N302: {
    ...style.cat03,
    label: [{ text: "John Miller", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N303: {
    ...style.primary3,
    label: [{ text: "Mustafa al-Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N304: {
    ...style.cat03,
    label: [{ text: "Faisal al Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N305: {
    ...style.cat03,
    label: [{ text: "Ali al Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N306: {
    ...style.cat03,
    label: [{ text: "Saad ibn al-Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N307: {
    ...style.cat03,
    label: [{ text: "Faisal Abu Qureshi", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N308: {
    ...style.cat03,
    label: [{ text: "Ali Abu Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N309: {
    ...style.cat03,
    label: [{ text: "Omar Abd Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N310: {
    ...style.cat03,
    label: [{ text: "Nabil Abu Mahdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N311: {
    ...style.cat03,
    label: [{ text: "Zaid al Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N312: {
    ...style.primary2,
    label: [{ text: "Ibrahim Abdal Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N313: {
    ...style.cat03,
    label: [{ text: "Matthew Lewis", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N314: {
    ...style.cat03,
    label: [{ text: "Khalid al-Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N315: {
    ...style.cat03,
    label: [{ text: "Hassan ibn Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N316: {
    ...style.cat03,
    label: [{ text: "Tariq bin Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N317: {
    ...style.cat03,
    label: [{ text: "Hassan bin Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N318: {
    ...style.cat03,
    label: [{ text: "Ali Abd Hussein", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N319: {
    ...style.cat03,
    label: [{ text: "Amir ibn al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N320: {
    ...style.cat03,
    label: [{ text: "Hassan ibn Bakr", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N321: {
    ...style.primary2,
    label: [{ text: "Charles Jones", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N322: {
    ...style.cat05,
    label: [{ text: "Jamal al Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N323: {
    ...style.cat05,
    label: [{ text: "Nabil Abu Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N324: {
    ...style.cat05,
    label: [{ text: "Saad Abu Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N325: {
    ...style.cat05,
    label: [{ text: "Sami ibn al-Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N326: {
    ...style.cat05,
    label: [{ text: "Zaid bin Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N327: {
    ...style.cat05,
    label: [{ text: "Jamal ibn Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N328: {
    ...style.cat05,
    label: [{ text: "Zaid bin Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N329: {
    ...style.cat05,
    label: [{ text: "Ahmed al Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N330: {
    ...style.cat05,
    label: [{ text: "Tariq ibn al-Karim", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N331: {
    ...style.cat05,
    label: [{ text: "Ibrahim Abu Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N332: {
    ...style.cat05,
    label: [{ text: "Hassan Abd Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N333: {
    ...style.cat05,
    label: [{ text: "Omar al Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N334: {
    ...style.cat05,
    label: [{ text: "Saad Abu Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N335: {
    ...style.cat05,
    label: [{ text: "Mohammed al Najjar", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N336: {
    ...style.cat05,
    label: [{ text: "Ali bin Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N337: {
    ...style.cat05,
    label: [{ text: "Sami Abu Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N338: {
    ...style.cat05,
    label: [{ text: "Hassan ibn al-Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N339: {
    ...style.cat05,
    label: [{ text: "Amir ibn al-Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N340: {
    ...style.cat05,
    label: [{ text: "Saad Abu Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Morocco", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N341: {
    ...style.primary2,
    label: [{ text: "Mohammed Abdal Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N342: {
    ...style.primary2,
    label: [{ text: "Faisal Abu Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N343: {
    ...style.primary2,
    label: [{ text: "Karim Abdal Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N344: {
    ...style.primary2,
    label: [{ text: "Mohammed ibn al-Omari", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N345: {
    ...style.primary2,
    label: [{ text: "Mustafa Abdal Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N346: {
    ...style.cat01,
    label: [{ text: "Ahmed ibn al-Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "Australia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N347: {
    ...style.primary2,
    label: [{ text: "Nabil al Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N348: {
    ...style.cat03,
    label: [{ text: "Jamal Abdal Shehri", position: "s" }],
    border: { width: 2 },
    data: { country: "France", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N349: {
    ...style.cat03,
    label: [{ text: "Khalid Abdal Hassan", position: "s" }],
    border: { width: 2 },
    data: { country: "Germany", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N350: {
    ...style.cat05,
    label: [{ text: "Omar Abu Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Sudan", region: "Africa" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N351: {
    ...style.primary2,
    label: [{ text: "Faisal al-Zaman", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N352: {
    ...style.primary3,
    label: [{ text: "Khalid Abu Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Canada", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N353: {
    ...style.cat03,
    label: [{ text: "Matthew Jones", position: "s" }],
    border: { width: 2 },
    data: { country: "Britain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N354: {
    color: style.colors.midGrey,
    label: [{ text: "Ahmed bin Ghamdi", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N355: {
    ...style.cat03,
    label: [{ text: "Hassan bin Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Spain", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N356: {
    ...style.primary3,
    label: [{ text: "Faisal Abdal Harbi", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N357: {
    ...style.primary2,
    label: [{ text: "Faisal Abu Faruq", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N358: {
    ...style.primary2,
    label: [{ text: "Hassan al Shafi", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N359: {
    ...style.cat03,
    label: [{ text: "Anthony King", position: "s" }],
    border: { width: 2 },
    data: { country: "Bosnia", region: "Europe" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N360: {
    ...style.cat01,
    label: [{ text: "Faisal al-Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "Australia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N361: {
    ...style.primary2,
    label: [{ text: "Tariq Abd Fawaz", position: "s" }],
    border: { width: 2 },
    data: { country: "Pakistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N362: {
    ...style.primary3,
    label: [{ text: "Ali bin Rahman", position: "s" }],
    border: { width: 2 },
    data: { country: "USA", region: "North America" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N363: {
    ...style.primary2,
    label: [{ text: "Karim bin Fadli", position: "s" }],
    border: { width: 2 },
    data: { country: "Afghanistan", region: "Middle East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N364: {
    color: style.colors.midGrey,
    label: [{ text: "Sami ibn al-Tahir", position: "s" }],
    border: { width: 2 },
    data: { country: "Unknown Country" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N365: {
    ...style.cat01,
    label: [{ text: "Ibrahim Abdal Anwar", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  N366: {
    ...style.cat01,
    label: [{ text: "Tariq al Salim", position: "s" }],
    border: { width: 2 },
    data: { country: "Indonesia", region: "South East" },
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N10": {
    id1: "N1",
    id2: "N10",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N14": {
    id1: "N1",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N15": {
    id1: "N1",
    id2: "N15",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N152": {
    id1: "N1",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N16": {
    id1: "N1",
    id2: "N16",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N357": {
    id1: "N1",
    id2: "N357",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N363": {
    id1: "N1",
    id2: "N363",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N43": {
    id1: "N1",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N5": {
    id1: "N1",
    id2: "N5",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N6": {
    id1: "N1",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N7": {
    id1: "N1",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N8": {
    id1: "N1",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N2": {
    id1: "N10",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N4": {
    id1: "N10",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N6": {
    id1: "N10",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N149": {
    id1: "N104",
    id2: "N149",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N54": {
    id1: "N104",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N107/p/N120": {
    id1: "N107",
    id2: "N120",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N105": {
    id1: "N108",
    id2: "N105",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N27": {
    id1: "N108",
    id2: "N27",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N29": {
    id1: "N108",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N109/p/N29": {
    id1: "N109",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N2": {
    id1: "N11",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N21": {
    id1: "N11",
    id2: "N21",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N34": {
    id1: "N11",
    id2: "N34",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N6": {
    id1: "N11",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N110/p/N29": {
    id1: "N110",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N112/p/N29": {
    id1: "N112",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N115/p/N111": {
    id1: "N115",
    id2: "N111",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N115/p/N113": {
    id1: "N115",
    id2: "N113",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N117/p/N113": {
    id1: "N117",
    id2: "N113",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N118/p/N108": {
    id1: "N118",
    id2: "N108",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N12/p/N2": {
    id1: "N12",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N12/p/N6": {
    id1: "N12",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N120/p/N1": {
    id1: "N120",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N124/p/N126": {
    id1: "N124",
    id2: "N126",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N125/p/N126": {
    id1: "N125",
    id2: "N126",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N2": {
    id1: "N13",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N21": {
    id1: "N13",
    id2: "N21",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N23": {
    id1: "N13",
    id2: "N23",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N25": {
    id1: "N13",
    id2: "N25",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N34": {
    id1: "N13",
    id2: "N34",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N13/p/N6": {
    id1: "N13",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N142": {
    id1: "N138",
    id2: "N142",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N140/p/N139": {
    id1: "N140",
    id2: "N139",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N141/p/N143": {
    id1: "N141",
    id2: "N143",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N141/p/N147": {
    id1: "N141",
    id2: "N147",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N141/p/N148": {
    id1: "N141",
    id2: "N148",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N147/p/N148": {
    id1: "N147",
    id2: "N148",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N149/p/N54": {
    id1: "N149",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N195": {
    id1: "N151",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N155": {
    id1: "N153",
    id2: "N155",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N167": {
    id1: "N153",
    id2: "N167",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N175": {
    id1: "N153",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N179": {
    id1: "N153",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N195": {
    id1: "N153",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N196": {
    id1: "N153",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N154/p/N1": {
    id1: "N154",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N154/p/N41": {
    id1: "N154",
    id2: "N41",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N154/p/N43": {
    id1: "N154",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N161": {
    id1: "N155",
    id2: "N161",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N175": {
    id1: "N155",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N180": {
    id1: "N155",
    id2: "N180",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N151": {
    id1: "N156",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N152": {
    id1: "N156",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N167": {
    id1: "N156",
    id2: "N167",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N175": {
    id1: "N156",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N191": {
    id1: "N156",
    id2: "N191",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N153": {
    id1: "N157",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N158": {
    id1: "N157",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N161": {
    id1: "N158",
    id2: "N161",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N167": {
    id1: "N161",
    id2: "N167",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N175": {
    id1: "N161",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N179": {
    id1: "N161",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N195": {
    id1: "N161",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N196": {
    id1: "N161",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N165/p/N156": {
    id1: "N165",
    id2: "N156",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N173": {
    id1: "N166",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N175": {
    id1: "N166",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N180": {
    id1: "N174",
    id2: "N180",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N179": {
    id1: "N175",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N195": {
    id1: "N175",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N196": {
    id1: "N175",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N6": {
    id1: "N175",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N180": {
    id1: "N177",
    id2: "N180",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N178/p/N173": {
    id1: "N178",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N184/p/N153": {
    id1: "N184",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N185/p/N153": {
    id1: "N185",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N19/p/N355": {
    id1: "N19",
    id2: "N355",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N196/p/N151": {
    id1: "N196",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N21": {
    id1: "N2",
    id2: "N21",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N26": {
    id1: "N2",
    id2: "N26",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N27": {
    id1: "N2",
    id2: "N27",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N30": {
    id1: "N2",
    id2: "N30",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N33": {
    id1: "N2",
    id2: "N33",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N357": {
    id1: "N2",
    id2: "N357",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N5": {
    id1: "N2",
    id2: "N5",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N6": {
    id1: "N2",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N8": {
    id1: "N2",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N202/p/N306": {
    id1: "N202",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N203/p/N239": {
    id1: "N203",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N204/p/N211": {
    id1: "N204",
    id2: "N211",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N204/p/N212": {
    id1: "N204",
    id2: "N212",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N204/p/N213": {
    id1: "N204",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N206": {
    id1: "N205",
    id2: "N206",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N207": {
    id1: "N205",
    id2: "N207",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N208": {
    id1: "N205",
    id2: "N208",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N209": {
    id1: "N205",
    id2: "N209",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N210": {
    id1: "N205",
    id2: "N210",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N21/p/N6": {
    id1: "N21",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N204": {
    id1: "N214",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N217": {
    id1: "N214",
    id2: "N217",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N218": {
    id1: "N214",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N219": {
    id1: "N214",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N215/p/N204": {
    id1: "N215",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N215/p/N217": {
    id1: "N215",
    id2: "N217",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N215/p/N218": {
    id1: "N215",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N215/p/N219": {
    id1: "N215",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N216/p/N204": {
    id1: "N216",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N216/p/N217": {
    id1: "N216",
    id2: "N217",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N216/p/N218": {
    id1: "N216",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N216/p/N219": {
    id1: "N216",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N217/p/N204": {
    id1: "N217",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N217/p/N218": {
    id1: "N217",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N218/p/N204": {
    id1: "N218",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N218/p/N219": {
    id1: "N218",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N219/p/N204": {
    id1: "N219",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N220/p/N205": {
    id1: "N220",
    id2: "N205",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N220/p/N207": {
    id1: "N220",
    id2: "N207",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N221/p/N205": {
    id1: "N221",
    id2: "N205",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N221/p/N207": {
    id1: "N221",
    id2: "N207",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N223/p/N239": {
    id1: "N223",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N225/p/N232": {
    id1: "N225",
    id2: "N232",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N225/p/N239": {
    id1: "N225",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N225/p/N250": {
    id1: "N225",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N227/p/N223": {
    id1: "N227",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N228/p/N223": {
    id1: "N228",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N231/p/N229": {
    id1: "N231",
    id2: "N229",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N231/p/N232": {
    id1: "N231",
    id2: "N232",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N223": {
    id1: "N237",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N239": {
    id1: "N237",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N243": {
    id1: "N240",
    id2: "N243",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N244": {
    id1: "N240",
    id2: "N244",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N246": {
    id1: "N240",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N247": {
    id1: "N240",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N248": {
    id1: "N240",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N250": {
    id1: "N240",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N252": {
    id1: "N240",
    id2: "N252",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N253": {
    id1: "N240",
    id2: "N253",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N29": {
    id1: "N240",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N242": {
    id1: "N241",
    id2: "N242",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N243": {
    id1: "N241",
    id2: "N243",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N244": {
    id1: "N241",
    id2: "N244",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N246": {
    id1: "N241",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N248": {
    id1: "N241",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N243": {
    id1: "N242",
    id2: "N243",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N244": {
    id1: "N242",
    id2: "N244",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N245": {
    id1: "N242",
    id2: "N245",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N246": {
    id1: "N242",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N247": {
    id1: "N242",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N242/p/N248": {
    id1: "N242",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N244": {
    id1: "N243",
    id2: "N244",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N245": {
    id1: "N243",
    id2: "N245",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N246": {
    id1: "N243",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N247": {
    id1: "N243",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N248": {
    id1: "N243",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N243/p/N249": {
    id1: "N243",
    id2: "N249",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N244/p/N245": {
    id1: "N244",
    id2: "N245",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N244/p/N246": {
    id1: "N244",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N244/p/N247": {
    id1: "N244",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N244/p/N248": {
    id1: "N244",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N245/p/N246": {
    id1: "N245",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N245/p/N247": {
    id1: "N245",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N245/p/N248": {
    id1: "N245",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N246/p/N247": {
    id1: "N246",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N246/p/N248": {
    id1: "N246",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N247/p/N249": {
    id1: "N247",
    id2: "N249",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N249/p/N246": {
    id1: "N249",
    id2: "N246",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N241": {
    id1: "N250",
    id2: "N241",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N253": {
    id1: "N250",
    id2: "N253",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N251/p/N254": {
    id1: "N251",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N253/p/N254": {
    id1: "N253",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N250": {
    id1: "N255",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N256": {
    id1: "N255",
    id2: "N256",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N257": {
    id1: "N255",
    id2: "N257",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N352": {
    id1: "N255",
    id2: "N352",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N250": {
    id1: "N256",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N254": {
    id1: "N256",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N258": {
    id1: "N256",
    id2: "N258",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N260": {
    id1: "N256",
    id2: "N260",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N261": {
    id1: "N256",
    id2: "N261",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N303": {
    id1: "N256",
    id2: "N303",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N250": {
    id1: "N257",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N254": {
    id1: "N257",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N258": {
    id1: "N257",
    id2: "N258",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N258/p/N250": {
    id1: "N258",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N258/p/N254": {
    id1: "N258",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N258/p/N261": {
    id1: "N258",
    id2: "N261",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N259/p/N250": {
    id1: "N259",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N259/p/N254": {
    id1: "N259",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N260/p/N258": {
    id1: "N260",
    id2: "N258",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N260/p/N303": {
    id1: "N260",
    id2: "N303",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N262/p/N250": {
    id1: "N262",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N273/p/N264": {
    id1: "N273",
    id2: "N264",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N277/p/N279": {
    id1: "N277",
    id2: "N279",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N279/p/N305": {
    id1: "N279",
    id2: "N305",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N280/p/N291": {
    id1: "N280",
    id2: "N291",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N280/p/N292": {
    id1: "N280",
    id2: "N292",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N284": {
    id1: "N283",
    id2: "N284",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N284/p/N286": {
    id1: "N284",
    id2: "N286",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N284/p/N287": {
    id1: "N284",
    id2: "N287",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N284/p/N288": {
    id1: "N284",
    id2: "N288",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N285/p/N286": {
    id1: "N285",
    id2: "N286",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N285/p/N287": {
    id1: "N285",
    id2: "N287",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N285/p/N288": {
    id1: "N285",
    id2: "N288",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N286/p/N288": {
    id1: "N286",
    id2: "N288",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N287/p/N286": {
    id1: "N287",
    id2: "N286",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N288/p/N287": {
    id1: "N288",
    id2: "N287",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N289/p/N291": {
    id1: "N289",
    id2: "N291",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N289/p/N292": {
    id1: "N289",
    id2: "N292",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N290/p/N292": {
    id1: "N290",
    id2: "N292",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N295": {
    id1: "N293",
    id2: "N295",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N294/p/N295": {
    id1: "N294",
    id2: "N295",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N295/p/N300": {
    id1: "N295",
    id2: "N300",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N283": {
    id1: "N296",
    id2: "N283",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N293": {
    id1: "N296",
    id2: "N293",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N294": {
    id1: "N296",
    id2: "N294",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N300": {
    id1: "N296",
    id2: "N300",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N293": {
    id1: "N298",
    id2: "N293",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N296": {
    id1: "N298",
    id2: "N296",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N297": {
    id1: "N298",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N300": {
    id1: "N298",
    id2: "N300",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N34": {
    id1: "N3",
    id2: "N34",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N8": {
    id1: "N3",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N30/p/N33": {
    id1: "N30",
    id2: "N33",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N300/p/N293": {
    id1: "N300",
    id2: "N293",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N303/p/N254": {
    id1: "N303",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N304/p/N348": {
    id1: "N304",
    id2: "N348",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N311": {
    id1: "N306",
    id2: "N311",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N57": {
    id1: "N306",
    id2: "N57",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N307/p/N311": {
    id1: "N307",
    id2: "N311",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N308/p/N306": {
    id1: "N308",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N308/p/N310": {
    id1: "N308",
    id2: "N310",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N309/p/N306": {
    id1: "N309",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N310/p/N306": {
    id1: "N310",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N311/p/N315": {
    id1: "N311",
    id2: "N315",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N313/p/N202": {
    id1: "N313",
    id2: "N202",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N313/p/N306": {
    id1: "N313",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N314/p/N321": {
    id1: "N314",
    id2: "N321",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N314/p/N327": {
    id1: "N314",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N315/p/N327": {
    id1: "N315",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N316/p/N327": {
    id1: "N316",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N323": {
    id1: "N322",
    id2: "N323",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N324": {
    id1: "N322",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N325": {
    id1: "N322",
    id2: "N325",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N327": {
    id1: "N322",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N330": {
    id1: "N322",
    id2: "N330",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N322/p/N363": {
    id1: "N322",
    id2: "N363",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N323/p/N327": {
    id1: "N323",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N324/p/N327": {
    id1: "N324",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N326/p/N329": {
    id1: "N326",
    id2: "N329",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N327/p/N330": {
    id1: "N327",
    id2: "N330",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N327/p/N364": {
    id1: "N327",
    id2: "N364",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N330/p/N324": {
    id1: "N330",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N333": {
    id1: "N332",
    id2: "N333",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N334": {
    id1: "N332",
    id2: "N334",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N335": {
    id1: "N332",
    id2: "N335",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N336": {
    id1: "N332",
    id2: "N336",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N337": {
    id1: "N332",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N338": {
    id1: "N332",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N334": {
    id1: "N333",
    id2: "N334",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N335": {
    id1: "N333",
    id2: "N335",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N336": {
    id1: "N333",
    id2: "N336",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N337": {
    id1: "N333",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N338": {
    id1: "N333",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N336": {
    id1: "N334",
    id2: "N336",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N337": {
    id1: "N334",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N338": {
    id1: "N334",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N335/p/N336": {
    id1: "N335",
    id2: "N336",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N335/p/N337": {
    id1: "N335",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N335/p/N338": {
    id1: "N335",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N336/p/N337": {
    id1: "N336",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N336/p/N338": {
    id1: "N336",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N337/p/N338": {
    id1: "N337",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N343/p/N358": {
    id1: "N343",
    id2: "N358",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N35/p/N17": {
    id1: "N35",
    id2: "N17",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N357/p/N4": {
    id1: "N357",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N360/p/N38": {
    id1: "N360",
    id2: "N38",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N6": {
    id1: "N4",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N41/p/N43": {
    id1: "N41",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N5/p/N6": {
    id1: "N5",
    id2: "N6",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N19": {
    id1: "N58",
    id2: "N19",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N24": {
    id1: "N58",
    id2: "N24",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N62": {
    id1: "N58",
    id2: "N62",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N63": {
    id1: "N58",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N64": {
    id1: "N58",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N58/p/N66": {
    id1: "N58",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N60": {
    id1: "N59",
    id2: "N60",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N61": {
    id1: "N59",
    id2: "N61",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N62": {
    id1: "N59",
    id2: "N62",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N65": {
    id1: "N59",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N67": {
    id1: "N59",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N65": {
    id1: "N60",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N66": {
    id1: "N60",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N67": {
    id1: "N60",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N61/p/N62": {
    id1: "N61",
    id2: "N62",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N61/p/N64": {
    id1: "N61",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N61/p/N65": {
    id1: "N61",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N61/p/N66": {
    id1: "N61",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N62/p/N65": {
    id1: "N62",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N62/p/N66": {
    id1: "N62",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N62/p/N67": {
    id1: "N62",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N54": {
    id1: "N63",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N65": {
    id1: "N63",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N54": {
    id1: "N64",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N60": {
    id1: "N64",
    id2: "N60",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N54": {
    id1: "N65",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N66": {
    id1: "N65",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N54": {
    id1: "N66",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N67/p/N61": {
    id1: "N67",
    id2: "N61",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N80/p/N81": {
    id1: "N80",
    id2: "N81",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N80/p/N83": {
    id1: "N80",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N81/p/N83": {
    id1: "N81",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N97/p/N28": {
    id1: "N97",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N98/p/N28": {
    id1: "N98",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N153": {
    id1: "N1",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N22": {
    id1: "N1",
    id2: "N22",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N222": {
    id1: "N1",
    id2: "N222",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N28": {
    id1: "N1",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N296": {
    id1: "N1",
    id2: "N296",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N312": {
    id1: "N1",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N350": {
    id1: "N1",
    id2: "N350",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N39": {
    id1: "N1",
    id2: "N39",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N49": {
    id1: "N1",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N63": {
    id1: "N1",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N64": {
    id1: "N1",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N65": {
    id1: "N1",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N66": {
    id1: "N1",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N9": {
    id1: "N1",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N101/p/N103": {
    id1: "N101",
    id2: "N103",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N101/p/N99": {
    id1: "N101",
    id2: "N99",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N102/p/N103": {
    id1: "N102",
    id2: "N103",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N102/p/N55": {
    id1: "N102",
    id2: "N55",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N102/p/N99": {
    id1: "N102",
    id2: "N99",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N103/p/N98": {
    id1: "N103",
    id2: "N98",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N14": {
    id1: "N104",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N64": {
    id1: "N104",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N65": {
    id1: "N104",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N8": {
    id1: "N104",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N104/p/N87": {
    id1: "N104",
    id2: "N87",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N105/p/N16": {
    id1: "N105",
    id2: "N16",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N105/p/N55": {
    id1: "N105",
    id2: "N55",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N105/p/N56": {
    id1: "N105",
    id2: "N56",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N105/p/N96": {
    id1: "N105",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N109": {
    id1: "N108",
    id2: "N109",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N110": {
    id1: "N108",
    id2: "N110",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N111": {
    id1: "N108",
    id2: "N111",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N113": {
    id1: "N108",
    id2: "N113",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N119": {
    id1: "N108",
    id2: "N119",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N111/p/N109": {
    id1: "N111",
    id2: "N109",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N112/p/N108": {
    id1: "N112",
    id2: "N108",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N112/p/N109": {
    id1: "N112",
    id2: "N109",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N112/p/N111": {
    id1: "N112",
    id2: "N111",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N113/p/N109": {
    id1: "N113",
    id2: "N109",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N113/p/N110": {
    id1: "N113",
    id2: "N110",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N113/p/N111": {
    id1: "N113",
    id2: "N111",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N114/p/N109": {
    id1: "N114",
    id2: "N109",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N114/p/N110": {
    id1: "N114",
    id2: "N110",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N114/p/N112": {
    id1: "N114",
    id2: "N112",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N115/p/N116": {
    id1: "N115",
    id2: "N116",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N115/p/N117": {
    id1: "N115",
    id2: "N117",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N116/p/N113": {
    id1: "N116",
    id2: "N113",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N118/p/N119": {
    id1: "N118",
    id2: "N119",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N120/p/N108": {
    id1: "N120",
    id2: "N108",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N120/p/N121": {
    id1: "N120",
    id2: "N121",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N120/p/N55": {
    id1: "N120",
    id2: "N55",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N120/p/N88": {
    id1: "N120",
    id2: "N88",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N121/p/N124": {
    id1: "N121",
    id2: "N124",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N121/p/N55": {
    id1: "N121",
    id2: "N55",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N122/p/N124": {
    id1: "N122",
    id2: "N124",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N122/p/N127": {
    id1: "N122",
    id2: "N127",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N123/p/N124": {
    id1: "N123",
    id2: "N124",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N124/p/N120": {
    id1: "N124",
    id2: "N120",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N124/p/N28": {
    id1: "N124",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N132": {
    id1: "N128",
    id2: "N132",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N28": {
    id1: "N128",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N8": {
    id1: "N128",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N99": {
    id1: "N128",
    id2: "N99",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N130/p/N132": {
    id1: "N130",
    id2: "N132",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N132/p/N321": {
    id1: "N132",
    id2: "N321",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N132/p/N322": {
    id1: "N132",
    id2: "N322",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N132/p/N325": {
    id1: "N132",
    id2: "N325",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N132/p/N331": {
    id1: "N132",
    id2: "N331",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N132/p/N332": {
    id1: "N132",
    id2: "N332",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N136/p/N102": {
    id1: "N136",
    id2: "N102",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N140": {
    id1: "N138",
    id2: "N140",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N141": {
    id1: "N138",
    id2: "N141",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N144": {
    id1: "N138",
    id2: "N144",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N145": {
    id1: "N138",
    id2: "N145",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N2": {
    id1: "N138",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N139/p/N141": {
    id1: "N139",
    id2: "N141",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N153": {
    id1: "N14",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N297": {
    id1: "N14",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N298": {
    id1: "N14",
    id2: "N298",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N354": {
    id1: "N14",
    id2: "N354",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N356": {
    id1: "N14",
    id2: "N356",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N357": {
    id1: "N14",
    id2: "N357",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N37": {
    id1: "N14",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N53": {
    id1: "N14",
    id2: "N53",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N63": {
    id1: "N14",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N64": {
    id1: "N14",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N65": {
    id1: "N14",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N66": {
    id1: "N14",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N68": {
    id1: "N14",
    id2: "N68",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N69": {
    id1: "N14",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N70": {
    id1: "N14",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N86": {
    id1: "N14",
    id2: "N86",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N87": {
    id1: "N14",
    id2: "N87",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N9": {
    id1: "N14",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N97": {
    id1: "N14",
    id2: "N97",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N99": {
    id1: "N14",
    id2: "N99",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N142/p/N145": {
    id1: "N142",
    id2: "N145",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N145/p/N1": {
    id1: "N145",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N146/p/N138": {
    id1: "N146",
    id2: "N138",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N147/p/N1": {
    id1: "N147",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N147/p/N138": {
    id1: "N147",
    id2: "N138",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N147/p/N145": {
    id1: "N147",
    id2: "N145",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N147/p/N2": {
    id1: "N147",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N15/p/N22": {
    id1: "N15",
    id2: "N22",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N15/p/N3": {
    id1: "N15",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N15/p/N31": {
    id1: "N15",
    id2: "N31",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N15/p/N33": {
    id1: "N15",
    id2: "N33",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N15/p/N49": {
    id1: "N15",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N150/p/N147": {
    id1: "N150",
    id2: "N147",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N153": {
    id1: "N151",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N155": {
    id1: "N151",
    id2: "N155",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N171": {
    id1: "N151",
    id2: "N171",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N174": {
    id1: "N151",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N175": {
    id1: "N151",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N179": {
    id1: "N151",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N152/p/N153": {
    id1: "N152",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N152/p/N155": {
    id1: "N152",
    id2: "N155",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N152/p/N174": {
    id1: "N152",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N152/p/N175": {
    id1: "N152",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N152/p/N179": {
    id1: "N152",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N159": {
    id1: "N153",
    id2: "N159",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N160": {
    id1: "N153",
    id2: "N160",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N162": {
    id1: "N153",
    id2: "N162",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N163": {
    id1: "N153",
    id2: "N163",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N166": {
    id1: "N153",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N169": {
    id1: "N153",
    id2: "N169",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N171": {
    id1: "N153",
    id2: "N171",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N173": {
    id1: "N153",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N174": {
    id1: "N153",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N180": {
    id1: "N153",
    id2: "N180",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N181": {
    id1: "N153",
    id2: "N181",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N183": {
    id1: "N153",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N189": {
    id1: "N153",
    id2: "N189",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N190": {
    id1: "N153",
    id2: "N190",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N193": {
    id1: "N153",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N200": {
    id1: "N153",
    id2: "N200",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N201": {
    id1: "N153",
    id2: "N201",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N297": {
    id1: "N153",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N358": {
    id1: "N153",
    id2: "N358",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N365": {
    id1: "N153",
    id2: "N365",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N37": {
    id1: "N153",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N43": {
    id1: "N153",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N64": {
    id1: "N153",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N69": {
    id1: "N153",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N70": {
    id1: "N153",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N71": {
    id1: "N153",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N97": {
    id1: "N153",
    id2: "N97",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N154/p/N358": {
    id1: "N154",
    id2: "N358",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N10": {
    id1: "N155",
    id2: "N10",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N158": {
    id1: "N155",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N159": {
    id1: "N155",
    id2: "N159",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N160": {
    id1: "N155",
    id2: "N160",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N166": {
    id1: "N155",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N171": {
    id1: "N155",
    id2: "N171",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N173": {
    id1: "N155",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N176": {
    id1: "N155",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N178": {
    id1: "N155",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N183": {
    id1: "N155",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N197": {
    id1: "N155",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N200": {
    id1: "N155",
    id2: "N200",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N181": {
    id1: "N156",
    id2: "N181",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N159": {
    id1: "N157",
    id2: "N159",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N165": {
    id1: "N157",
    id2: "N165",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N2": {
    id1: "N157",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N4": {
    id1: "N157",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N159": {
    id1: "N158",
    id2: "N159",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N179": {
    id1: "N158",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N196": {
    id1: "N158",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N197": {
    id1: "N158",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N162": {
    id1: "N159",
    id2: "N162",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N167": {
    id1: "N159",
    id2: "N167",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N169": {
    id1: "N159",
    id2: "N169",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N179": {
    id1: "N159",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N180": {
    id1: "N159",
    id2: "N180",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N193": {
    id1: "N159",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N196": {
    id1: "N159",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N198": {
    id1: "N159",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N16/p/N349": {
    id1: "N16",
    id2: "N349",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N16/p/N357": {
    id1: "N16",
    id2: "N357",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N16/p/N364": {
    id1: "N16",
    id2: "N364",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N16/p/N89": {
    id1: "N16",
    id2: "N89",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N161": {
    id1: "N160",
    id2: "N161",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N162": {
    id1: "N160",
    id2: "N162",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N163": {
    id1: "N160",
    id2: "N163",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N166": {
    id1: "N160",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N168": {
    id1: "N160",
    id2: "N168",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N170": {
    id1: "N160",
    id2: "N170",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N174": {
    id1: "N160",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N175": {
    id1: "N160",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N178": {
    id1: "N160",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N183": {
    id1: "N160",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N193": {
    id1: "N160",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N361": {
    id1: "N160",
    id2: "N361",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N193": {
    id1: "N161",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N166": {
    id1: "N162",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N174": {
    id1: "N162",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N175": {
    id1: "N162",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N178": {
    id1: "N162",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N183": {
    id1: "N162",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N193": {
    id1: "N162",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N174": {
    id1: "N163",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N175": {
    id1: "N163",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N176": {
    id1: "N163",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N178": {
    id1: "N163",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N183": {
    id1: "N163",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N193": {
    id1: "N163",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N153": {
    id1: "N164",
    id2: "N153",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N178": {
    id1: "N164",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N297": {
    id1: "N164",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N37": {
    id1: "N164",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N64": {
    id1: "N164",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N69": {
    id1: "N164",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N70": {
    id1: "N164",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N71": {
    id1: "N164",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N165/p/N159": {
    id1: "N165",
    id2: "N159",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N174": {
    id1: "N166",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N176": {
    id1: "N166",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N178": {
    id1: "N166",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N193": {
    id1: "N166",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N167/p/N169": {
    id1: "N167",
    id2: "N169",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N169": {
    id1: "N168",
    id2: "N169",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N174": {
    id1: "N168",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N199": {
    id1: "N168",
    id2: "N199",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N170": {
    id1: "N169",
    id2: "N170",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N189": {
    id1: "N169",
    id2: "N189",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N297": {
    id1: "N169",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N97": {
    id1: "N169",
    id2: "N97",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N199": {
    id1: "N170",
    id2: "N199",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N173": {
    id1: "N171",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N175": {
    id1: "N171",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N179": {
    id1: "N171",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N195": {
    id1: "N171",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N172/p/N166": {
    id1: "N172",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N173/p/N175": {
    id1: "N173",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N173/p/N179": {
    id1: "N173",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N173/p/N195": {
    id1: "N173",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N175": {
    id1: "N174",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N176": {
    id1: "N174",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N178": {
    id1: "N174",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N182": {
    id1: "N174",
    id2: "N182",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N183": {
    id1: "N174",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N365": {
    id1: "N174",
    id2: "N365",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N366": {
    id1: "N174",
    id2: "N366",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N176": {
    id1: "N175",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N177": {
    id1: "N175",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N178": {
    id1: "N175",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N182": {
    id1: "N175",
    id2: "N182",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N183": {
    id1: "N175",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N178": {
    id1: "N176",
    id2: "N178",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N183": {
    id1: "N176",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N182": {
    id1: "N177",
    id2: "N182",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N365": {
    id1: "N177",
    id2: "N365",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N366": {
    id1: "N177",
    id2: "N366",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N178/p/N183": {
    id1: "N178",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N179/p/N197": {
    id1: "N179",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N222": {
    id1: "N18",
    id2: "N222",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N264": {
    id1: "N18",
    id2: "N264",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N306": {
    id1: "N18",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N309": {
    id1: "N18",
    id2: "N309",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N312": {
    id1: "N18",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N318": {
    id1: "N18",
    id2: "N318",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N320": {
    id1: "N18",
    id2: "N320",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N323": {
    id1: "N18",
    id2: "N323",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N18/p/N327": {
    id1: "N18",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N181/p/N168": {
    id1: "N181",
    id2: "N168",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N181/p/N170": {
    id1: "N181",
    id2: "N170",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N181/p/N198": {
    id1: "N181",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N181/p/N199": {
    id1: "N181",
    id2: "N199",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N183/p/N193": {
    id1: "N183",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N183/p/N194": {
    id1: "N183",
    id2: "N194",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N183/p/N366": {
    id1: "N183",
    id2: "N366",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N186/p/N187": {
    id1: "N186",
    id2: "N187",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N186/p/N188": {
    id1: "N186",
    id2: "N188",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N187/p/N188": {
    id1: "N187",
    id2: "N188",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N19/p/N22": {
    id1: "N19",
    id2: "N22",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N19/p/N24": {
    id1: "N19",
    id2: "N24",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N19/p/N343": {
    id1: "N19",
    id2: "N343",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N190/p/N198": {
    id1: "N190",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N190/p/N199": {
    id1: "N190",
    id2: "N199",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N193/p/N194": {
    id1: "N193",
    id2: "N194",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N196/p/N197": {
    id1: "N196",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N198/p/N97": {
    id1: "N198",
    id2: "N97",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N23": {
    id1: "N2",
    id2: "N23",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N25": {
    id1: "N2",
    id2: "N25",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N281": {
    id1: "N2",
    id2: "N281",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N351": {
    id1: "N2",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N39": {
    id1: "N2",
    id2: "N39",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N40": {
    id1: "N2",
    id2: "N40",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N20/p/N269": {
    id1: "N20",
    id2: "N269",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N201/p/N155": {
    id1: "N201",
    id2: "N155",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N201/p/N202": {
    id1: "N201",
    id2: "N202",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N201/p/N37": {
    id1: "N201",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N203/p/N204": {
    id1: "N203",
    id2: "N204",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N203/p/N205": {
    id1: "N203",
    id2: "N205",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N204/p/N207": {
    id1: "N204",
    id2: "N207",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N211": {
    id1: "N205",
    id2: "N211",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N212": {
    id1: "N205",
    id2: "N212",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N213": {
    id1: "N205",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N214": {
    id1: "N205",
    id2: "N214",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N215": {
    id1: "N205",
    id2: "N215",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N216": {
    id1: "N205",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N217": {
    id1: "N205",
    id2: "N217",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N218": {
    id1: "N205",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N205/p/N219": {
    id1: "N205",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N209": {
    id1: "N206",
    id2: "N209",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N211": {
    id1: "N206",
    id2: "N211",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N213": {
    id1: "N206",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N216": {
    id1: "N206",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N218": {
    id1: "N206",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N209": {
    id1: "N207",
    id2: "N209",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N211": {
    id1: "N207",
    id2: "N211",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N213": {
    id1: "N207",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N218": {
    id1: "N207",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N219": {
    id1: "N207",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N208/p/N213": {
    id1: "N208",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N208/p/N214": {
    id1: "N208",
    id2: "N214",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N209/p/N211": {
    id1: "N209",
    id2: "N211",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N209/p/N213": {
    id1: "N209",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N209/p/N216": {
    id1: "N209",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N209/p/N218": {
    id1: "N209",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N21/p/N8": {
    id1: "N21",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N210/p/N216": {
    id1: "N210",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N211/p/N218": {
    id1: "N211",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N211/p/N219": {
    id1: "N211",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N212/p/N217": {
    id1: "N212",
    id2: "N217",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N212/p/N218": {
    id1: "N212",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N213/p/N214": {
    id1: "N213",
    id2: "N214",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N213/p/N218": {
    id1: "N213",
    id2: "N218",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N22/p/N24": {
    id1: "N22",
    id2: "N24",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N22/p/N3": {
    id1: "N22",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N222/p/N223": {
    id1: "N222",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N222/p/N224": {
    id1: "N222",
    id2: "N224",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N222/p/N225": {
    id1: "N222",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N222/p/N238": {
    id1: "N222",
    id2: "N238",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N222/p/N29": {
    id1: "N222",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N223/p/N203": {
    id1: "N223",
    id2: "N203",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N223/p/N224": {
    id1: "N223",
    id2: "N224",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N223/p/N225": {
    id1: "N223",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N224/p/N227": {
    id1: "N224",
    id2: "N227",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N224/p/N228": {
    id1: "N224",
    id2: "N228",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N226/p/N224": {
    id1: "N226",
    id2: "N224",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N226/p/N225": {
    id1: "N226",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N226/p/N227": {
    id1: "N226",
    id2: "N227",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N226/p/N228": {
    id1: "N226",
    id2: "N228",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N230/p/N223": {
    id1: "N230",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N230/p/N224": {
    id1: "N230",
    id2: "N224",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N230/p/N225": {
    id1: "N230",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N230/p/N231": {
    id1: "N230",
    id2: "N231",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N231/p/N223": {
    id1: "N231",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N231/p/N225": {
    id1: "N231",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N223": {
    id1: "N232",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N226": {
    id1: "N232",
    id2: "N226",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N223": {
    id1: "N233",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N225": {
    id1: "N233",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N226": {
    id1: "N233",
    id2: "N226",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N234/p/N223": {
    id1: "N234",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N234/p/N225": {
    id1: "N234",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N234/p/N226": {
    id1: "N234",
    id2: "N226",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N235/p/N223": {
    id1: "N235",
    id2: "N223",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N235/p/N225": {
    id1: "N235",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N235/p/N226": {
    id1: "N235",
    id2: "N226",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N236/p/N225": {
    id1: "N236",
    id2: "N225",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N271": {
    id1: "N237",
    id2: "N271",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N280": {
    id1: "N237",
    id2: "N280",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N296": {
    id1: "N237",
    id2: "N296",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N237/p/N297": {
    id1: "N237",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N264": {
    id1: "N238",
    id2: "N264",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N265": {
    id1: "N238",
    id2: "N265",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N266": {
    id1: "N238",
    id2: "N266",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N267": {
    id1: "N238",
    id2: "N267",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N268": {
    id1: "N238",
    id2: "N268",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N24/p/N15": {
    id1: "N24",
    id2: "N15",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N24/p/N3": {
    id1: "N24",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N24/p/N49": {
    id1: "N24",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N24/p/N50": {
    id1: "N24",
    id2: "N50",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N24/p/N51": {
    id1: "N24",
    id2: "N51",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N249/p/N250": {
    id1: "N249",
    id2: "N250",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N249/p/N254": {
    id1: "N249",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N249/p/N256": {
    id1: "N249",
    id2: "N256",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N25/p/N3": {
    id1: "N25",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N7": {
    id1: "N250",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N251/p/N256": {
    id1: "N251",
    id2: "N256",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N251/p/N259": {
    id1: "N251",
    id2: "N259",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N251/p/N342": {
    id1: "N251",
    id2: "N342",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N262": {
    id1: "N255",
    id2: "N262",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N54": {
    id1: "N255",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N255/p/N7": {
    id1: "N255",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N262": {
    id1: "N256",
    id2: "N262",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N263": {
    id1: "N256",
    id2: "N263",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N264": {
    id1: "N256",
    id2: "N264",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N269": {
    id1: "N256",
    id2: "N269",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N270": {
    id1: "N256",
    id2: "N270",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N272": {
    id1: "N256",
    id2: "N272",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N274": {
    id1: "N256",
    id2: "N274",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N342": {
    id1: "N256",
    id2: "N342",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N7": {
    id1: "N256",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N261": {
    id1: "N257",
    id2: "N261",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N264": {
    id1: "N257",
    id2: "N264",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N342": {
    id1: "N257",
    id2: "N342",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N7": {
    id1: "N257",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N341": {
    id1: "N26",
    id2: "N341",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N347": {
    id1: "N26",
    id2: "N347",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N350": {
    id1: "N26",
    id2: "N350",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N351": {
    id1: "N26",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N94": {
    id1: "N26",
    id2: "N94",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N95": {
    id1: "N26",
    id2: "N95",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N26/p/N96": {
    id1: "N26",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N261/p/N262": {
    id1: "N261",
    id2: "N262",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N262/p/N54": {
    id1: "N262",
    id2: "N54",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N265": {
    id1: "N264",
    id2: "N265",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N266": {
    id1: "N264",
    id2: "N266",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N269": {
    id1: "N264",
    id2: "N269",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N270": {
    id1: "N264",
    id2: "N270",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N272": {
    id1: "N264",
    id2: "N272",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N277": {
    id1: "N264",
    id2: "N277",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N282": {
    id1: "N264",
    id2: "N282",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N29": {
    id1: "N264",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N306": {
    id1: "N264",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N264/p/N7": {
    id1: "N264",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N265/p/N266": {
    id1: "N265",
    id2: "N266",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N265/p/N267": {
    id1: "N265",
    id2: "N267",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N265/p/N268": {
    id1: "N265",
    id2: "N268",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N265/p/N270": {
    id1: "N265",
    id2: "N270",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N266/p/N267": {
    id1: "N266",
    id2: "N267",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N266/p/N268": {
    id1: "N266",
    id2: "N268",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N267/p/N268": {
    id1: "N267",
    id2: "N268",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N268/p/N269": {
    id1: "N268",
    id2: "N269",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N268/p/N282": {
    id1: "N268",
    id2: "N282",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N268/p/N306": {
    id1: "N268",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N269/p/N274": {
    id1: "N269",
    id2: "N274",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N269/p/N7": {
    id1: "N269",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N27/p/N29": {
    id1: "N27",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N270/p/N282": {
    id1: "N270",
    id2: "N282",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N270/p/N293": {
    id1: "N270",
    id2: "N293",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N270/p/N7": {
    id1: "N270",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N271/p/N7": {
    id1: "N271",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N272/p/N273": {
    id1: "N272",
    id2: "N273",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N272/p/N276": {
    id1: "N272",
    id2: "N276",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N272/p/N291": {
    id1: "N272",
    id2: "N291",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N273/p/N274": {
    id1: "N273",
    id2: "N274",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N274/p/N272": {
    id1: "N274",
    id2: "N272",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N275/p/N299": {
    id1: "N275",
    id2: "N299",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N276/p/N277": {
    id1: "N276",
    id2: "N277",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N281/p/N282": {
    id1: "N281",
    id2: "N282",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N282/p/N306": {
    id1: "N282",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N18": {
    id1: "N283",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N224": {
    id1: "N283",
    id2: "N224",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N237": {
    id1: "N283",
    id2: "N237",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N239": {
    id1: "N283",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N268": {
    id1: "N283",
    id2: "N268",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N285": {
    id1: "N283",
    id2: "N285",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N286": {
    id1: "N283",
    id2: "N286",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N287": {
    id1: "N283",
    id2: "N287",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N288": {
    id1: "N283",
    id2: "N288",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N283/p/N306": {
    id1: "N283",
    id2: "N306",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N284/p/N289": {
    id1: "N284",
    id2: "N289",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N289/p/N283": {
    id1: "N289",
    id2: "N283",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N29/p/N353": {
    id1: "N29",
    id2: "N353",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N297": {
    id1: "N293",
    id2: "N297",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N7": {
    id1: "N293",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N294/p/N301": {
    id1: "N294",
    id2: "N301",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N295/p/N296": {
    id1: "N295",
    id2: "N296",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N4": {
    id1: "N296",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N7": {
    id1: "N296",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N64": {
    id1: "N297",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N97": {
    id1: "N298",
    id2: "N97",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N299/p/N315": {
    id1: "N299",
    id2: "N315",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N49": {
    id1: "N3",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N50": {
    id1: "N3",
    id2: "N50",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N51": {
    id1: "N3",
    id2: "N51",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N30/p/N35": {
    id1: "N30",
    id2: "N35",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N304/p/N277": {
    id1: "N304",
    id2: "N277",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N304/p/N278": {
    id1: "N304",
    id2: "N278",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N304/p/N279": {
    id1: "N304",
    id2: "N279",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N304/p/N305": {
    id1: "N304",
    id2: "N305",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N312": {
    id1: "N306",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N314": {
    id1: "N306",
    id2: "N314",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N315": {
    id1: "N306",
    id2: "N315",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N318": {
    id1: "N306",
    id2: "N318",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N319": {
    id1: "N306",
    id2: "N319",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N320": {
    id1: "N306",
    id2: "N320",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N4": {
    id1: "N306",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N63": {
    id1: "N306",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N64": {
    id1: "N306",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N7": {
    id1: "N306",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N307/p/N313": {
    id1: "N307",
    id2: "N313",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N307/p/N7": {
    id1: "N307",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N308/p/N58": {
    id1: "N308",
    id2: "N58",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N309/p/N312": {
    id1: "N309",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N31/p/N33": {
    id1: "N31",
    id2: "N33",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N31/p/N35": {
    id1: "N31",
    id2: "N35",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N31/p/N351": {
    id1: "N31",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N31/p/N8": {
    id1: "N31",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N310/p/N312": {
    id1: "N310",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N313/p/N319": {
    id1: "N313",
    id2: "N319",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N313/p/N320": {
    id1: "N313",
    id2: "N320",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N314/p/N318": {
    id1: "N314",
    id2: "N318",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N315/p/N318": {
    id1: "N315",
    id2: "N318",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N315/p/N321": {
    id1: "N315",
    id2: "N321",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N315/p/N331": {
    id1: "N315",
    id2: "N331",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N317/p/N321": {
    id1: "N317",
    id2: "N321",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N317/p/N331": {
    id1: "N317",
    id2: "N331",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N318/p/N319": {
    id1: "N318",
    id2: "N319",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N318/p/N320": {
    id1: "N318",
    id2: "N320",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N319/p/N320": {
    id1: "N319",
    id2: "N320",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N321/p/N322": {
    id1: "N321",
    id2: "N322",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N321/p/N327": {
    id1: "N321",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N321/p/N329": {
    id1: "N321",
    id2: "N329",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N321/p/N331": {
    id1: "N321",
    id2: "N331",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N321/p/N332": {
    id1: "N321",
    id2: "N332",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N325/p/N326": {
    id1: "N325",
    id2: "N326",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N327/p/N328": {
    id1: "N327",
    id2: "N328",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N33/p/N351": {
    id1: "N33",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N314": {
    id1: "N331",
    id2: "N314",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N332": {
    id1: "N331",
    id2: "N332",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N333": {
    id1: "N331",
    id2: "N333",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N334": {
    id1: "N331",
    id2: "N334",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N335": {
    id1: "N331",
    id2: "N335",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N336": {
    id1: "N331",
    id2: "N336",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N337": {
    id1: "N331",
    id2: "N337",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N338": {
    id1: "N331",
    id2: "N338",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N341/p/N351": {
    id1: "N341",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N341/p/N352": {
    id1: "N341",
    id2: "N352",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N341/p/N7": {
    id1: "N341",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N342/p/N7": {
    id1: "N342",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N344/p/N345": {
    id1: "N344",
    id2: "N345",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N344/p/N346": {
    id1: "N344",
    id2: "N346",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N344/p/N7": {
    id1: "N344",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N345/p/N7": {
    id1: "N345",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N350/p/N341": {
    id1: "N350",
    id2: "N341",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N350/p/N351": {
    id1: "N350",
    id2: "N351",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N354/p/N9": {
    id1: "N354",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N365/p/N366": {
    id1: "N365",
    id2: "N366",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N366/p/N182": {
    id1: "N366",
    id2: "N182",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N1": {
    id1: "N37",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N200": {
    id1: "N37",
    id2: "N200",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N64": {
    id1: "N37",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N69": {
    id1: "N37",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N70": {
    id1: "N37",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N92": {
    id1: "N37",
    id2: "N92",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N37/p/N93": {
    id1: "N37",
    id2: "N93",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N38/p/N41": {
    id1: "N38",
    id2: "N41",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N14": {
    id1: "N4",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N37": {
    id1: "N4",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N50": {
    id1: "N4",
    id2: "N50",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N63": {
    id1: "N4",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N64": {
    id1: "N4",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N65": {
    id1: "N4",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N4/p/N66": {
    id1: "N4",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N41/p/N5": {
    id1: "N41",
    id2: "N5",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N42/p/N14": {
    id1: "N42",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N42/p/N43": {
    id1: "N42",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N43/p/N14": {
    id1: "N43",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N43/p/N44": {
    id1: "N43",
    id2: "N44",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N49/p/N39": {
    id1: "N49",
    id2: "N39",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N50/p/N49": {
    id1: "N50",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N50/p/N51": {
    id1: "N50",
    id2: "N51",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N51/p/N49": {
    id1: "N51",
    id2: "N49",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N52/p/N51": {
    id1: "N52",
    id2: "N51",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N55/p/N14": {
    id1: "N55",
    id2: "N14",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N55/p/N37": {
    id1: "N55",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N55/p/N84": {
    id1: "N55",
    id2: "N84",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N55/p/N92": {
    id1: "N55",
    id2: "N92",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N68": {
    id1: "N63",
    id2: "N68",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N69": {
    id1: "N63",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N70": {
    id1: "N63",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N73": {
    id1: "N63",
    id2: "N73",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N74": {
    id1: "N63",
    id2: "N74",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N78": {
    id1: "N63",
    id2: "N78",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N79": {
    id1: "N63",
    id2: "N79",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N9": {
    id1: "N63",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N68": {
    id1: "N64",
    id2: "N68",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N69": {
    id1: "N64",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N70": {
    id1: "N64",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N71": {
    id1: "N64",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N9": {
    id1: "N64",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N68": {
    id1: "N65",
    id2: "N68",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N69": {
    id1: "N65",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N70": {
    id1: "N65",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N77": {
    id1: "N65",
    id2: "N77",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N82": {
    id1: "N65",
    id2: "N82",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N83": {
    id1: "N65",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N68": {
    id1: "N66",
    id2: "N68",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N69": {
    id1: "N66",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N70": {
    id1: "N66",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N75": {
    id1: "N66",
    id2: "N75",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N76": {
    id1: "N66",
    id2: "N76",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N80": {
    id1: "N66",
    id2: "N80",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N81": {
    id1: "N66",
    id2: "N81",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N9": {
    id1: "N66",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N68/p/N69": {
    id1: "N68",
    id2: "N69",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N68/p/N70": {
    id1: "N68",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N68/p/N71": {
    id1: "N68",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N68/p/N72": {
    id1: "N68",
    id2: "N72",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N69/p/N70": {
    id1: "N69",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N69/p/N72": {
    id1: "N69",
    id2: "N72",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N7/p/N8": {
    id1: "N7",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N7/p/N85": {
    id1: "N7",
    id2: "N85",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N70/p/N71": {
    id1: "N70",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N70/p/N72": {
    id1: "N70",
    id2: "N72",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N71/p/N37": {
    id1: "N71",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N71/p/N72": {
    id1: "N71",
    id2: "N72",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N73/p/N78": {
    id1: "N73",
    id2: "N78",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N73/p/N79": {
    id1: "N73",
    id2: "N79",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N74/p/N78": {
    id1: "N74",
    id2: "N78",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N74/p/N79": {
    id1: "N74",
    id2: "N79",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N75/p/N80": {
    id1: "N75",
    id2: "N80",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N75/p/N81": {
    id1: "N75",
    id2: "N81",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N76/p/N80": {
    id1: "N76",
    id2: "N80",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N76/p/N81": {
    id1: "N76",
    id2: "N81",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N77/p/N82": {
    id1: "N77",
    id2: "N82",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N77/p/N83": {
    id1: "N77",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N78/p/N79": {
    id1: "N78",
    id2: "N79",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N8/p/N99": {
    id1: "N8",
    id2: "N99",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N80/p/N9": {
    id1: "N80",
    id2: "N9",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N90/p/N91": {
    id1: "N90",
    id2: "N91",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N99/p/N103": {
    id1: "N99",
    id2: "N103",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N99/p/N55": {
    id1: "N99",
    id2: "N55",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N358": {
    id1: "N1",
    id2: "N358",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N106/p/N105": {
    id1: "N106",
    id2: "N105",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N111/p/N29": {
    id1: "N111",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N113/p/N29": {
    id1: "N113",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N143/p/N148": {
    id1: "N143",
    id2: "N148",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N188": {
    id1: "N153",
    id2: "N188",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N162": {
    id1: "N155",
    id2: "N162",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N163": {
    id1: "N155",
    id2: "N163",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N152": {
    id1: "N158",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N197": {
    id1: "N159",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N163": {
    id1: "N162",
    id2: "N163",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N198": {
    id1: "N169",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N17/p/N2": {
    id1: "N17",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N171": {
    id1: "N170",
    id2: "N171",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N192": {
    id1: "N170",
    id2: "N192",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N192": {
    id1: "N171",
    id2: "N192",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N172/p/N173": {
    id1: "N172",
    id2: "N173",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N194/p/N361": {
    id1: "N194",
    id2: "N361",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N215/p/N216": {
    id1: "N215",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N277/p/N278": {
    id1: "N277",
    id2: "N278",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N277/p/N305": {
    id1: "N277",
    id2: "N305",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N278/p/N305": {
    id1: "N278",
    id2: "N305",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N299/p/N300": {
    id1: "N299",
    id2: "N300",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N314/p/N315": {
    id1: "N314",
    id2: "N315",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N314/p/N316": {
    id1: "N314",
    id2: "N316",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N315/p/N316": {
    id1: "N315",
    id2: "N316",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N326/p/N339": {
    id1: "N326",
    id2: "N339",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N326/p/N340": {
    id1: "N326",
    id2: "N340",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N339/p/N340": {
    id1: "N339",
    id2: "N340",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N345/p/N346": {
    id1: "N345",
    id2: "N346",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N347/p/N94": {
    id1: "N347",
    id2: "N94",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N347/p/N95": {
    id1: "N347",
    id2: "N95",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N347/p/N96": {
    id1: "N347",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N36/p/N1": {
    id1: "N36",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N69/p/N71": {
    id1: "N69",
    id2: "N71",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N73/p/N74": {
    id1: "N73",
    id2: "N74",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N94/p/N95": {
    id1: "N94",
    id2: "N95",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N94/p/N96": {
    id1: "N94",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N95/p/N96": {
    id1: "N95",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N97/p/N98": {
    id1: "N97",
    id2: "N98",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N19": {
    id1: "N1",
    id2: "N19",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N2": {
    id1: "N1",
    id2: "N2",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N24": {
    id1: "N1",
    id2: "N24",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N26": {
    id1: "N1",
    id2: "N26",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N3": {
    id1: "N1",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N343": {
    id1: "N1",
    id2: "N343",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N1/p/N4": {
    id1: "N1",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N11": {
    id1: "N10",
    id2: "N11",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N12": {
    id1: "N10",
    id2: "N12",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N10/p/N13": {
    id1: "N10",
    id2: "N13",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N100/p/N101": {
    id1: "N100",
    id2: "N101",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N105/p/N1": {
    id1: "N105",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N107/p/N1": {
    id1: "N107",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N109/p/N110": {
    id1: "N109",
    id2: "N110",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N12": {
    id1: "N11",
    id2: "N12",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N11/p/N13": {
    id1: "N11",
    id2: "N13",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N110/p/N111": {
    id1: "N110",
    id2: "N111",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N110/p/N112": {
    id1: "N110",
    id2: "N112",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N110/p/N116": {
    id1: "N110",
    id2: "N116",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N110/p/N117": {
    id1: "N110",
    id2: "N117",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N12/p/N13": {
    id1: "N12",
    id2: "N13",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N124/p/N125": {
    id1: "N124",
    id2: "N125",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N124/p/N127": {
    id1: "N124",
    id2: "N127",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N127/p/N28": {
    id1: "N127",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N1": {
    id1: "N128",
    id2: "N1",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N128/p/N4": {
    id1: "N128",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N134/p/N135": {
    id1: "N134",
    id2: "N135",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N138/p/N139": {
    id1: "N138",
    id2: "N139",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N141/p/N142": {
    id1: "N141",
    id2: "N142",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N141/p/N144": {
    id1: "N141",
    id2: "N144",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N151/p/N152": {
    id1: "N151",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N156": {
    id1: "N153",
    id2: "N156",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N161": {
    id1: "N153",
    id2: "N161",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N179": {
    id1: "N155",
    id2: "N179",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N195": {
    id1: "N155",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N196": {
    id1: "N155",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N161": {
    id1: "N156",
    id2: "N161",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N157/p/N7": {
    id1: "N157",
    id2: "N7",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N165": {
    id1: "N158",
    id2: "N165",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N175": {
    id1: "N158",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N191": {
    id1: "N158",
    id2: "N191",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N163": {
    id1: "N159",
    id2: "N163",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N166": {
    id1: "N159",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N183": {
    id1: "N159",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N169": {
    id1: "N160",
    id2: "N169",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N176": {
    id1: "N160",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N192": {
    id1: "N160",
    id2: "N192",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N197": {
    id1: "N160",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N176": {
    id1: "N162",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N166": {
    id1: "N163",
    id2: "N166",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N183": {
    id1: "N166",
    id2: "N183",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N170": {
    id1: "N168",
    id2: "N170",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N198": {
    id1: "N168",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N176": {
    id1: "N169",
    id2: "N176",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N192": {
    id1: "N169",
    id2: "N192",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N197": {
    id1: "N169",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N198": {
    id1: "N170",
    id2: "N198",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N193": {
    id1: "N171",
    id2: "N193",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N175/p/N191": {
    id1: "N175",
    id2: "N191",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N192": {
    id1: "N176",
    id2: "N192",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N197": {
    id1: "N176",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N179/p/N195": {
    id1: "N179",
    id2: "N195",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N179/p/N196": {
    id1: "N179",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N182/p/N365": {
    id1: "N182",
    id2: "N365",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N184/p/N185": {
    id1: "N184",
    id2: "N185",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N192/p/N197": {
    id1: "N192",
    id2: "N197",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N195/p/N196": {
    id1: "N195",
    id2: "N196",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N3": {
    id1: "N2",
    id2: "N3",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N32": {
    id1: "N2",
    id2: "N32",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N2/p/N4": {
    id1: "N2",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N204/p/N205": {
    id1: "N204",
    id2: "N205",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N207": {
    id1: "N206",
    id2: "N207",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N206/p/N208": {
    id1: "N206",
    id2: "N208",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N207/p/N208": {
    id1: "N207",
    id2: "N208",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N209/p/N210": {
    id1: "N209",
    id2: "N210",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N21/p/N23": {
    id1: "N21",
    id2: "N23",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N21/p/N25": {
    id1: "N21",
    id2: "N25",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N211/p/N212": {
    id1: "N211",
    id2: "N212",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N211/p/N213": {
    id1: "N211",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N212/p/N213": {
    id1: "N212",
    id2: "N213",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N215": {
    id1: "N214",
    id2: "N215",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N214/p/N216": {
    id1: "N214",
    id2: "N216",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N217/p/N219": {
    id1: "N217",
    id2: "N219",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N220/p/N221": {
    id1: "N220",
    id2: "N221",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N223/p/N226": {
    id1: "N223",
    id2: "N226",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N227/p/N228": {
    id1: "N227",
    id2: "N228",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N23/p/N25": {
    id1: "N23",
    id2: "N25",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N233": {
    id1: "N232",
    id2: "N233",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N234": {
    id1: "N232",
    id2: "N234",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N235": {
    id1: "N232",
    id2: "N235",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N232/p/N236": {
    id1: "N232",
    id2: "N236",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N234": {
    id1: "N233",
    id2: "N234",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N235": {
    id1: "N233",
    id2: "N235",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N233/p/N236": {
    id1: "N233",
    id2: "N236",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N234/p/N235": {
    id1: "N234",
    id2: "N235",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N234/p/N236": {
    id1: "N234",
    id2: "N236",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N235/p/N236": {
    id1: "N235",
    id2: "N236",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N241": {
    id1: "N240",
    id2: "N241",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N242": {
    id1: "N240",
    id2: "N242",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N240/p/N245": {
    id1: "N240",
    id2: "N245",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N245": {
    id1: "N241",
    id2: "N245",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N241/p/N247": {
    id1: "N241",
    id2: "N247",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N247/p/N248": {
    id1: "N247",
    id2: "N248",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N251": {
    id1: "N250",
    id2: "N251",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N252": {
    id1: "N250",
    id2: "N252",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N250/p/N254": {
    id1: "N250",
    id2: "N254",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N251/p/N252": {
    id1: "N251",
    id2: "N252",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N257": {
    id1: "N256",
    id2: "N257",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N256/p/N259": {
    id1: "N256",
    id2: "N259",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N257/p/N259": {
    id1: "N257",
    id2: "N259",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N258/p/N259": {
    id1: "N258",
    id2: "N259",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N262/p/N263": {
    id1: "N262",
    id2: "N263",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N277/p/N348": {
    id1: "N277",
    id2: "N348",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N278/p/N279": {
    id1: "N278",
    id2: "N279",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N282/p/N283": {
    id1: "N282",
    id2: "N283",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N284/p/N285": {
    id1: "N284",
    id2: "N285",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N289/p/N290": {
    id1: "N289",
    id2: "N290",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N294": {
    id1: "N293",
    id2: "N294",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N299": {
    id1: "N297",
    id2: "N299",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N300": {
    id1: "N297",
    id2: "N300",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N302": {
    id1: "N297",
    id2: "N302",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N3/p/N4": {
    id1: "N3",
    id2: "N4",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N30/p/N31": {
    id1: "N30",
    id2: "N31",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N307": {
    id1: "N306",
    id2: "N307",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N306/p/N58": {
    id1: "N306",
    id2: "N58",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N316/p/N321": {
    id1: "N316",
    id2: "N321",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N33/p/N8": {
    id1: "N33",
    id2: "N8",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N335": {
    id1: "N334",
    id2: "N335",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N349/p/N89": {
    id1: "N349",
    id2: "N89",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N356/p/N37": {
    id1: "N356",
    id2: "N37",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N358/p/N43": {
    id1: "N358",
    id2: "N43",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N362/p/N88": {
    id1: "N362",
    id2: "N88",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N39/p/N40": {
    id1: "N39",
    id2: "N40",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N41/p/N42": {
    id1: "N41",
    id2: "N42",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N41/p/N44": {
    id1: "N41",
    id2: "N44",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N42/p/N44": {
    id1: "N42",
    id2: "N44",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N45/p/N46": {
    id1: "N45",
    id2: "N46",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N45/p/N47": {
    id1: "N45",
    id2: "N47",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N45/p/N48": {
    id1: "N45",
    id2: "N48",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N46/p/N47": {
    id1: "N46",
    id2: "N47",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N46/p/N48": {
    id1: "N46",
    id2: "N48",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N47/p/N48": {
    id1: "N47",
    id2: "N48",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N57/p/N58": {
    id1: "N57",
    id2: "N58",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N57/p/N62": {
    id1: "N57",
    id2: "N62",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N63": {
    id1: "N59",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N64": {
    id1: "N59",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N59/p/N66": {
    id1: "N59",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N61": {
    id1: "N60",
    id2: "N61",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N62": {
    id1: "N60",
    id2: "N62",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N60/p/N63": {
    id1: "N60",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N61/p/N63": {
    id1: "N61",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N62/p/N63": {
    id1: "N62",
    id2: "N63",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N62/p/N64": {
    id1: "N62",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N64": {
    id1: "N63",
    id2: "N64",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N66": {
    id1: "N63",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N63/p/N67": {
    id1: "N63",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N65": {
    id1: "N64",
    id2: "N65",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N66": {
    id1: "N64",
    id2: "N66",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N64/p/N67": {
    id1: "N64",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N65/p/N67": {
    id1: "N65",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N66/p/N67": {
    id1: "N66",
    id2: "N67",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N72/p/N79": {
    id1: "N72",
    id2: "N79",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N73/p/N82": {
    id1: "N73",
    id2: "N82",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N73/p/N83": {
    id1: "N73",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N74/p/N82": {
    id1: "N74",
    id2: "N82",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N74/p/N83": {
    id1: "N74",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N82/p/N83": {
    id1: "N82",
    id2: "N83",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N85/p/N86": {
    id1: "N85",
    id2: "N86",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N106/p/N96": {
    id1: "N106",
    id2: "N96",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N108/p/N70": {
    id1: "N108",
    id2: "N70",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N111/p/N114": {
    id1: "N111",
    id2: "N114",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N113/p/N114": {
    id1: "N113",
    id2: "N114",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N114/p/N29": {
    id1: "N114",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N116/p/N117": {
    id1: "N116",
    id2: "N117",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N122/p/N123": {
    id1: "N122",
    id2: "N123",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N14/p/N41": {
    id1: "N14",
    id2: "N41",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N143/p/N147": {
    id1: "N143",
    id2: "N147",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N170": {
    id1: "N155",
    id2: "N170",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N174": {
    id1: "N155",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N155/p/N177": {
    id1: "N155",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N174": {
    id1: "N170",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N170/p/N177": {
    id1: "N170",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N174": {
    id1: "N171",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N177": {
    id1: "N171",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N174/p/N177": {
    id1: "N174",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N192/p/N155": {
    id1: "N192",
    id2: "N155",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N192/p/N174": {
    id1: "N192",
    id2: "N174",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N192/p/N177": {
    id1: "N192",
    id2: "N177",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N274/p/N275": {
    id1: "N274",
    id2: "N275",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N301": {
    id1: "N293",
    id2: "N301",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N308/p/N312": {
    id1: "N308",
    id2: "N312",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N309/p/N57": {
    id1: "N309",
    id2: "N57",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N75/p/N76": {
    id1: "N75",
    id2: "N76",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N75/p/N77": {
    id1: "N75",
    id2: "N77",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N76/p/N77": {
    id1: "N76",
    id2: "N77",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N115/p/N29": {
    id1: "N115",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N122/p/N28": {
    id1: "N122",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N123/p/N28": {
    id1: "N123",
    id2: "N28",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N158/p/N151": {
    id1: "N158",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N168/p/N151": {
    id1: "N168",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N169/p/N152": {
    id1: "N169",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N171/p/N152": {
    id1: "N171",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N172/p/N151": {
    id1: "N172",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N172/p/N152": {
    id1: "N172",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N173/p/N151": {
    id1: "N173",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N173/p/N152": {
    id1: "N173",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N151": {
    id1: "N176",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N176/p/N152": {
    id1: "N176",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N151": {
    id1: "N177",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N177/p/N152": {
    id1: "N177",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N178/p/N151": {
    id1: "N178",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N178/p/N152": {
    id1: "N178",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N180/p/N151": {
    id1: "N180",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N180/p/N152": {
    id1: "N180",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N181/p/N151": {
    id1: "N181",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N190/p/N156": {
    id1: "N190",
    id2: "N156",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N191/p/N152": {
    id1: "N191",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N192/p/N152": {
    id1: "N192",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N193/p/N158": {
    id1: "N193",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N193/p/N175": {
    id1: "N193",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N195/p/N152": {
    id1: "N195",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N197/p/N151": {
    id1: "N197",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N197/p/N152": {
    id1: "N197",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N200/p/N151": {
    id1: "N200",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N200/p/N152": {
    id1: "N200",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N201/p/N151": {
    id1: "N201",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N202/p/N307": {
    id1: "N202",
    id2: "N307",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N227/p/N239": {
    id1: "N227",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N228/p/N239": {
    id1: "N228",
    id2: "N239",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N18": {
    id1: "N238",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N238/p/N29": {
    id1: "N238",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N269/p/N18": {
    id1: "N269",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N273/p/N29": {
    id1: "N273",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N18": {
    id1: "N293",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N293/p/N29": {
    id1: "N293",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N295/p/N18": {
    id1: "N295",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N295/p/N29": {
    id1: "N295",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N18": {
    id1: "N296",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N296/p/N29": {
    id1: "N296",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N18": {
    id1: "N297",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N297/p/N29": {
    id1: "N297",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N18": {
    id1: "N298",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N298/p/N29": {
    id1: "N298",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N299/p/N18": {
    id1: "N299",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N299/p/N29": {
    id1: "N299",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N300/p/N18": {
    id1: "N300",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N300/p/N29": {
    id1: "N300",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N301/p/N18": {
    id1: "N301",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N301/p/N29": {
    id1: "N301",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N302/p/N18": {
    id1: "N302",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N302/p/N29": {
    id1: "N302",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N329/p/N327": {
    id1: "N329",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N331/p/N327": {
    id1: "N331",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N324": {
    id1: "N332",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N332/p/N327": {
    id1: "N332",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N324": {
    id1: "N333",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N333/p/N327": {
    id1: "N333",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N324": {
    id1: "N334",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N334/p/N327": {
    id1: "N334",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N335/p/N324": {
    id1: "N335",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N335/p/N327": {
    id1: "N335",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N336/p/N324": {
    id1: "N336",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N336/p/N327": {
    id1: "N336",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N337/p/N324": {
    id1: "N337",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N337/p/N327": {
    id1: "N337",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N338/p/N324": {
    id1: "N338",
    id2: "N324",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N338/p/N327": {
    id1: "N338",
    id2: "N327",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N344/p/N18": {
    id1: "N344",
    id2: "N18",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N365/p/N151": {
    id1: "N365",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N365/p/N152": {
    id1: "N365",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N38/p/N5": {
    id1: "N38",
    id2: "N5",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N90/p/N29": {
    id1: "N90",
    id2: "N29",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N153/p/N158": {
    id1: "N153",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N156/p/N158": {
    id1: "N156",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N151": {
    id1: "N159",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N159/p/N152": {
    id1: "N159",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N151": {
    id1: "N160",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N160/p/N152": {
    id1: "N160",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N151": {
    id1: "N161",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N161/p/N152": {
    id1: "N161",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N151": {
    id1: "N162",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N162/p/N152": {
    id1: "N162",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N151": {
    id1: "N163",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N163/p/N152": {
    id1: "N163",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N164/p/N156": {
    id1: "N164",
    id2: "N156",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N151": {
    id1: "N166",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N166/p/N152": {
    id1: "N166",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N167/p/N158": {
    id1: "N167",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N167/p/N175": {
    id1: "N167",
    id2: "N175",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N182/p/N151": {
    id1: "N182",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N182/p/N152": {
    id1: "N182",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N183/p/N158": {
    id1: "N183",
    id2: "N158",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N186/p/N151": {
    id1: "N186",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N186/p/N152": {
    id1: "N186",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N187/p/N151": {
    id1: "N187",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N187/p/N152": {
    id1: "N187",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N188/p/N151": {
    id1: "N188",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N188/p/N152": {
    id1: "N188",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N189/p/N151": {
    id1: "N189",
    id2: "N151",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
  "N196/p/N152": {
    id1: "N196",
    id2: "N152",
    ...style.link,
    fontIcon: { text: "fas fa-user", color: style.colors.offWhite },
  },
};
<!doctype html>
<html>
  <body>
    <div id="regraph" style="height: 100vh"></div>
    <script type="module" src="./code.jsx"></script>
  </body>
</html>

Terms of use

These terms do not alter or supersede any existing agreements between you (or your employer) and us.

By accessing or using any Content you agree to be bound by these Terms of Use. Please review these terms carefully before using the website.

The contents of this website, including but not limited to any text, code samples, API references, schemas, interactive tools, and other materials (collectively, the 'Content'), are made available for informational and internal evaluation purposes only. All intellectual property rights in the Content are reserved. No licence is granted to use the Content for any commercial purpose, or to copy, distribute, modify, reverse-engineer, or incorporate any part of the Content into any product or service, without our prior written consent.

This Content is provided “as is” and “as available,” without any representations, warranties, or guarantees of any kind, whether express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, non-infringement, or accuracy. To the fullest extent permitted by applicable law, we expressly exclude and disclaim all implied warranties, conditions, and other terms that might otherwise be implied.

We disclaim all liability for any loss or damage, whether direct, indirect, incidental, consequential, or otherwise, arising from any reliance placed on the Content or from your use of it, to the fullest extent permitted by applicable law. By continuing to access or use the Content, you acknowledge and agree to these terms.