WWDead Tactical Map

Tactical Map improvements: localStorage storage, dynamic map sizing, alt indicators, and bug fixes

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         WWDead Tactical Map
// @namespace    wwd-mini-map-malton
// @version      4.3.1
// @description  Tactical Map improvements: localStorage storage, dynamic map sizing, alt indicators, and bug fixes
// @author       DTTL
// @description  Displays city and suburb map in WWDead
// @include  /^https:\/\/wwdead\.com\/classic\/?(\?.*)?$/
// @include  /^https:\/\/wwdead\.com\/classic\/stats\/?(\?.*)?$/
// @license      GNU General Public License v2 or later; http://www.gnu.org/licenses/gpl.txt
// ==/UserScript==

/**
 * Original version: http://torbjorn.org/urbandead/gm/ud.navigation.user.js
 * Modified version by http://wiki.urbandead.com/index.php/User:Janzak
 * Additional tweaks by http://wiki.urbandead.com/index.php/User:Aichon
 *
 * Rewrite for WWDead by DTTL (2026)
 *
 * Major improvements and expansion contributed by Xunoaib (2026)
 * Source: https://github.com/xunoaib/wwdead_tacticalmap
 *
 * Thanks to the Urban Dead / World Wide Dead scripting community.
 * License:
 * GNU General Public License v2 or later
 * http://www.gnu.org/licenses/gpl.txt
 */

(function () {
  "use strict";

  // ------------------------------------------------
  // MEMORY VERSIONING
  // ------------------------------------------------
  const CURRENT_MEM_VERSION = 2; // bump to wipe stored data
  const CHARACTERS_KEY = "tacticalmap:chars_v2";
  const MEM_VERSION_KEY = "tacticalmap:memResetVersion";
  const COLLAPSED_KEY = "tacticalmap:collapsed";
  const LOCAL_MAP_RADIUS_KEY = "tacticalmap:LOCAL_MAP_RADIUS";

  function checkMemoryVersion() {
    const storedVersion = parseInt(localStorage.getItem(MEM_VERSION_KEY) || "0", 10);
    if (storedVersion < CURRENT_MEM_VERSION) {
      console.log(`Memory reset triggered: stored=${storedVersion}, current=${CURRENT_MEM_VERSION}`);
      // clear all tacticalmap storage
      Object.keys(localStorage).forEach(key => {
        if (key.startsWith("tacticalmap:")) {
          localStorage.removeItem(key);
        }
      });
      localStorage.setItem(MEM_VERSION_KEY, CURRENT_MEM_VERSION);
    }
  }
  checkMemoryVersion();

  // -----------------------------
  // Local map settings
  // -----------------------------
  let LOCAL_MAP_RADIUS = parseInt(localStorage.getItem(LOCAL_MAP_RADIUS_KEY) || 5, 10);
  let LOCAL_MAP_SIZE = LOCAL_MAP_RADIUS * 2 + 1;

  const MAIN_PLAYER_SYM = "●";
  const ALT_PLAYER_SYM = "▲";

  // ------------------------------------------------
  // SUBURB NAMES
  // ------------------------------------------------

  const suburbNames = [
    [
      "Dakerstown",
      "Jensentown",
      "Quarlesbank",
      "West Boundwood",
      "East Boundwood",
      "Lamport Hills",
      "Chancelwood",
      "Earletown",
      "Rhodenbank",
      "Dulston",
    ],
    [
      "Roywood",
      "Judgewood",
      "Gatcombeton",
      "Shuttlebank",
      "Yagoton",
      "Millen Hills",
      "Raines Hills",
      "Pashenton",
      "Rolt Heights",
      "Pescodside",
    ],
    [
      "Peddlesden Village",
      "Chudleyton",
      "Darvall Heights",
      "Eastonwood",
      "Brooke Hills",
      "Shearbank",
      "Huntley Heights",
      "Santlerville",
      "Gibsonton",
      "Dunningwood",
    ],
    [
      "Dunell Hills",
      "West Becktown",
      "East Becktown",
      "Richmond Hills",
      "Ketchelbank",
      "Roachtown",
      "Randallbank",
      "Heytown",
      "Spracklingbank",
      "Paynterton",
    ],
    [
      "Owsleybank",
      "Molebank",
      "Lukinswood",
      "Havercroft",
      "Barrville",
      "Ridleybank",
      "Pimbank",
      "Peppardville",
      "Pitneybank",
      "Starlingtown",
    ],
    [
      "Grigg Heights",
      "Reganbank",
      "Lerwill Heights",
      "Shore Hills",
      "Galbraith Hills",
      "Stanbury Village",
      "Roftwood",
      "Edgecombe",
      "Pegton",
      "Dentonside",
    ],
    [
      "Crooketon",
      "Mornington",
      "North Blythville",
      "Brooksville",
      "Mockridge Heights",
      "Shackleville",
      "Tollyton",
      "Crowbank",
      "Vinetown",
      "Houldenbank",
    ],
    [
      "Nixbank",
      "Wykewood",
      "South Blythville",
      "Greentown",
      "Tapton",
      "Kempsterbank",
      "Wray Heights",
      "Gulsonside",
      "Osmondville",
      "Penny Heights",
    ],
    [
      "Foulkes Village",
      "Ruddlebank",
      "Lockettside",
      "Dartside",
      "Kinch Heights",
      "West Grayside",
      "East Grayside",
      "Scarletwood",
      "Pennville",
      "Fryerbank",
    ],
    [
      "New Arkham",
      "Old Arkham",
      "Spicer Hills",
      "Williamsville",
      "Buttonville",
      "Wyke Hills",
      "Hollomstown",
      "Danversbank",
      "Whittenside",
      "Miltown",
    ],
  ];
  // ------------------------------------------------
  // BUILDING TYPES (colors match wiki map + icons)
  // ------------------------------------------------

  const BUILDING_TYPES = {
    0: null,
    1: {
      visible: true,
      color: "#163",
      border: "1px dotted #9db",
      name: "Armory",
    },
    2: { visible: true, color: "#8fA887", name: "Arms" },
    3: { visible: true, color: "#FD9", name: "Autoshop" },
    4: {
      visible: true,
      color: "#8fA887",
      border: "3px dotted #000000",
      name: "Bank",
    },
    5: { visible: true, color: "#8fA887", name: "Building" },
    6: { visible: true, color: "#587156", name: "Carpark" },
    7: { visible: true, color: "#BBCCBB", name: "Cathedral" },
    8: {
      visible: true,
      color: "#587156",
      border: "3px dotted #FF0000",
      name: "Cemetary",
    },
    9: { visible: true, color: "#8fA887", name: "Church" },
    10: {
      visible: true,
      color: "#8fA887",
      border: "3px dotted #000000",
      name: "Cinema",
    },
    11: {
      visible: true,
      color: "#8fA887",
      border: "3px dotted #000000",
      name: "Club",
    },
    12: { visible: true, color: "#653", name: "Factory" },
    13: { visible: true, color: "#8fA887", name: "Firehouse" },
    14: {
      visible: true,
      color: "#163",
      border: "2px solid #9db",
      name: "Fort",
    },
    15: {
      visible: true,
      color: "#FF9999",
      border: "1px solid #FF1493",
      name: "Hospital",
    },
    16: { visible: true, color: "#8fA887", name: "Hotel" },
    17: {
      visible: true,
      color: "#8fA887",
      border: "2px dotted #DDD",
      name: "Junkyard",
    },
    18: { visible: true, color: "#8fA887", name: "Library" },
    19: {
      visible: true,
      color: "#9DB",
      border: "1px solid #163",
      name: "Mall",
    },
    20: { visible: true, color: "#BBCCBB", name: "Mansion" },
    21: { visible: true, color: "#617C58", name: "Monument" },
    22: { visible: true, color: "#8fA887", name: "Museum" },
    23: { visible: true, color: "#9933FF", name: "Necrotech" },
    24: { visible: true, color: "#617C58", name: "Park" },
    25: {
      visible: true,
      color: "#C6C6FF",
      border: "1px solid #00F",
      name: "Police",
    },
    26: { visible: true, color: "#ff7034", name: "Power" },
    27: { visible: true, color: "#8fA887", name: "Railway" },
    28: { visible: true, color: "#8fA887", name: "School" },
    29: {
      visible: true,
      color: "#9DB",
      border: "1px solid #765",
      name: "Stadium",
    },
    30: { visible: true, color: "#617C58", name: "Street" },
    31: { visible: true, color: "#8fA887", name: "Towers" },
    32: { visible: true, color: "#8fA887", name: "Warehouse" },
    33: { visible: true, color: "#617C58", name: "Wasteland" },
    34: { visible: true, color: "#B3A486", name: "Zoo" },
    35: { visible: true, color: "#B3A486", name: "Zoo Enclosure" },
    36: {
      visible: true,
      color: "#163",
      border: "4px dotted #9db",
      name: "Gatehouse",
    },

    // Zoo buildings
    37: {
      visible: true,
      color: "#A3D9FF",
      border: "2px dotted #DDD",
      name: "The Aquarium",
      icon: "🦈",
    },
    38: {
      visible: true,
      color: "#D1BFA3",
      border: "2px dotted #DDD",
      name: "The Bear Pit",
      icon: "🐻",
    },
    39: {
      visible: true,
      color: "#C0C0C0",
      border: "2px dotted #DDD",
      name: "The Elephant House",
      icon: "🐘",
    },
    40: {
      visible: true,
      color: "#FFF5B3",
      border: "2px dotted #DDD",
      name: "The Giraffe House",
      icon: "🦒",
    },
    41: {
      visible: true,
      color: "#FFE0B3",
      border: "2px dotted #DDD",
      name: "The Lion Enclosure",
      icon: "🦁",
    },
    42: {
      visible: true,
      color: "#C3E6A3",
      border: "2px dotted #DDD",
      name: "The Reptile House",
      icon: "🐊",
    },

    // Fort Creedy
    43: {
      visible: true,
      color: "#818589",
      border: "4px dotted #000",
      name: "Fort Creedy Armoury",
      icon: "",
    },
    44: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Barracks",
      icon: "",
    },
    45: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Exercise Yard",
      icon: "",
    },
    46: {
      visible: true,
      color: "#818589",
      name: "Fort Creedy Gatehouse",
      icon: "🛂",
    },
    47: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Infirmary",
      icon: "🇨🇭",
    },
    48: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Storehouse",
      icon: "📦",
    },
    49: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Training Ground",
      icon: "",
    },
    50: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Creedy Vehicle Depot",
      icon: "🧰",
    },

    // Fort Perryn
    51: {
      visible: true,
      color: "#818589",
      border: "4px dotted #000",
      name: "Fort Perryn Armoury",
      icon: "",
    },
    52: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Barracks",
      icon: "",
    },
    53: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Exercise Yard",
      icon: "",
    },
    54: {
      visible: true,
      color: "#818589",
      name: "Fort Perryn Gatehouse",
      icon: "🛂",
    },
    55: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Infirmary",
      icon: "🇨🇭",
    },
    56: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Storehouse",
      icon: "📦",
    },
    57: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Training Ground",
      icon: "",
    },
    58: {
      visible: true,
      color: "#818589",
      border: "3px solid #525252",
      name: "Fort Perryn Vehicle Depot",
      icon: "🧰",
    },
  };

  // ------------------------------------------------
  // BUILDING DATABASE
  // ------------------------------------------------

  function generateMaltonGrid() {
    const B = [];
    for (let y = 0; y < 100; y++) B[y] = [];
    // ------------------------------------------------
    // Dakerstown
    // ------------------------------------------------
    B[0][0] = [30, "Bird Boulevard", "Bird_Boulevard_%28Dakerstown%29"];
    B[1][0] = [5, "Norgan Building", "The_Norgan_Building"];
    B[2][0] = [3, "Sinkins Auto Repair", "Sinkins_Auto_Repair"];
    B[3][0] = [5, "Emberson Building", "The_Emberson_Building"];
    B[4][0] = [11, "Club Magee", "Club_Magee"];
    B[5][0] = [25, "Wale Walk Police Dept", "Wale_Walk_Police_Department"];
    B[6][0] = [32, "Warehouse", "Warehouse_0%2C6"];
    B[7][0] = [30, "Hogue Street", "Hogue_Street_%28Dakerstown%29"];
    B[8][0] = [
      9,
      "St Matthias's Church",
      "St._Matthias%27s_Church_%28Dakerstown%29",
    ];
    B[9][0] = [
      25,
      "Stobbart Walk Police Dept",
      "Stobbart_Walk_Police_Department",
    ];
    B[0][1] = [
      25,
      "Palprey Road Police Dept",
      "Palprey_Road_Police_Department",
    ];
    B[1][1] = [30, "Patridge Grove", "Patridge_Grove_%28Dakerstown%29"];
    B[2][1] = [30, "Scorse Plaza", "Scorse_Plaza"];
    B[3][1] = [5, "Dibbin Building", "The_Dibbin_Building"];
    B[4][1] = [30, "Wilmott Row", "Wilmott_Row_%28Dakerstown%29"];
    B[5][1] = [30, "Buckinham Lane", "Buckinham_Lane"];
    B[6][1] = [16, "Gristwood Hotel", "The_Gristwood_Hotel"];
    B[7][1] = [17, "Junkyard", "Junkyard_1%2C7"];
    B[8][1] = [3, "Jeffries Auto Repair", "Jeffries_Auto_Repair"];
    B[9][1] = [3, "Freeth Auto Repair", "Freeth_Auto_Repair"];
    B[0][2] = [
      9,
      "St Danilo's Church",
      "St._Danilo%27s_Church_%28Dakerstown%29",
    ];
    B[1][2] = [11, "Club Ogburn", "Club_Ogburn"];
    B[2][2] = [30, "Voules Walk", "Voules_Walk"];
    B[3][2] = [33, "Wasteland", "Wasteland_2%2C3"];
    B[4][2] = [30, "Turpin Crescent", "Turpin_Crescent_%28Dakerstown%29"];
    B[5][2] = [32, "Warehouse", "Warehouse_2%2C5"];
    B[6][2] = [
      25,
      "Swearse Lane Police Dept",
      "Swearse_Lane_Police_Department",
    ];
    B[7][2] = [
      13,
      "Lomas Boulevard Fire Station",
      "Lomas_Boulevard_Fire_Station",
    ];
    B[8][2] = [24, "Britton Park", "Britton_Park"];
    B[9][2] = [5, "Crespin Building", "The_Crespin_Building"];
    B[0][3] = [8, "Cemetery", "Cemetery_3%2C0"];
    B[1][3] = [30, "Gatley Drive", "Gatley_Drive"];
    B[2][3] = [28, "Pavey Place School", "Pavey_Place_School"];
    B[3][3] = [
      13,
      "Dovey Boulevard Fire Station",
      "Dovey_Boulevard_Fire_Station",
    ];
    B[4][3] = [2, "Tobit Arms", "The_Tobit_Arms"];
    B[5][3] = [
      15,
      "St Bartholomew's Hospital",
      "St._Bartholomew%27s_Hospital_%28Dakerstown%29",
    ];
    B[6][3] = [12, "Factory", "Factory_3%2C6"];
    B[7][3] = [30, "Woodborne Crescent", "Woodborne_Crescent"];
    B[8][3] = [33, "Wasteland", "Wasteland_3%2C8"];
    B[9][3] = [30, "Tyack Row", "Tyack_Row"];
    B[0][4] = [6, "Carpark", "Carpark_4%2C0"];
    B[1][4] = [30, "Seamour Crescent", "Seamour_Crescent"];
    B[2][4] = [18, "Cranton Library", "Cranton_Library"];
    B[3][4] = [32, "Warehouse", "Warehouse_4%2C3"];
    B[4][4] = [16, "Doyne Hotel", "The_Doyne_Hotel"];
    B[5][4] = [5, "Buttle Building", "The_Buttle_Building_%28Dakerstown%29"];
    B[6][4] = [30, "Owsley Alley", "Owsley_Alley"];
    B[7][4] = [33, "Wasteland", "Wasteland_4%2C7"];
    B[8][4] = [5, "Beal Building", "The_Beal_Building"];
    B[9][4] = [31, "Chadwick Towers", "Chadwick_Towers"];
    B[0][5] = [18, "Hewett Library", "Hewett_Library"];
    B[1][5] = [30, "Merivale Crescent", "Merivale_Crescent"];
    B[2][5] = [30, "Glastonbury Alley", "Glastonbury_Alley"];
    B[3][5] = [30, "Owens Walk", "Owens_Walk"];
    B[4][5] = [17, "Junkyard", "Junkyard_5%2C4"];
    B[5][5] = [30, "Montacute Place", "Montacute_Place"];
    B[6][5] = [30, "Petvin Place", "Petvin_Place"];
    B[7][5] = [30, "Tossell Walk", "Tossell_Walk"];
    B[8][5] = [16, "Chitty Hotel", "The_Chitty_Hotel"];
    B[9][5] = [30, "Atkinson Square", "Atkinson_Square"];
    B[0][6] = [30, "Geldart Square", "Geldart_Square"];
    B[1][6] = [15, "St Ansgar's Hospital", "St._Ansgar%27s_Hospital"];
    B[2][6] = [30, "Ditcher Lane", "Ditcher_Lane"];
    B[3][6] = [4, "Tomkins Bank", "Tomkins_Bank"];
    B[4][6] = [4, "Bissley Bank", "Bissley_Bank"];
    B[5][6] = [22, "Oakes Museum", "The_Oakes_Museum"];
    B[6][6] = [32, "Warehouse", "Warehouse_6%2C6"];
    B[7][6] = [17, "Junkyard", "Junkyard_6%2C7"];
    B[8][6] = [24, "Leeworthy Park", "Leeworthy_Park"];
    B[9][6] = [30, "Hazeldine Square", "Hazeldine_Square"];
    B[0][7] = [
      27,
      "Hardwick Row Railway Station",
      "Hardwick_Row_Railway_Station",
    ];
    B[1][7] = [32, "Warehouse", "Warehouse_7%2C1"];
    B[2][7] = [31, "Heward Towers", "Heward_Towers"];
    B[3][7] = [10, "McDougall Cinema", "McDougall_Cinema"];
    B[4][7] = [30, "Turnock Place", "Turnock_Place"];
    B[5][7] = [30, "Andow Square", "Andow_Square"];
    B[6][7] = [6, "Carpark", "Carpark_7%2C6"];
    B[7][7] = [18, "Tolly Library", "Tolly_Library"];
    B[8][7] = [23, "Pask Building", "The_Pask_Building"];
    B[9][7] = [21, "Troakes Monument", "The_Troakes_Monument"];
    B[0][8] = [2, "Bullimore Arms", "The_Bullimore_Arms"];
    B[1][8] = [32, "Warehouse", "Warehouse_8%2C1"];
    B[2][8] = [30, "Bedford Street", "Bedford_Street"];
    B[3][8] = [5, "Yelling Building", "The_Yelling_Building"];
    B[4][8] = [18, "Hopes Library", "Hopes_Library"];
    B[5][8] = [33, "Wasteland", "Wasteland_8%2C5"];
    B[6][8] = [30, "Woolsett Avenue", "Woolsett_Avenue"];
    B[7][8] = [30, "Ledger Avenue", "Ledger_Avenue"];
    B[8][8] = [30, "Calderwood Plaza", "Calderwood_Plaza"];
    B[9][8] = [
      27,
      "Snook Alley Railway Station",
      "Snook_Alley_Railway_Station",
    ];
    B[0][9] = [18, "Bourdillon Library", "Bourdillon_Library"];
    B[1][9] = [3, "Cuthbert Auto Repair", "Cuthbert_Auto_Repair"];
    B[2][9] = [2, "Boucher Arms", "The_Boucher_Arms"];
    B[3][9] = [2, "Hodgkins Arms", "The_Hodgkins_Arms"];
    B[4][9] = [30, "Alderson Street", "Alderson_Street"];
    B[5][9] = [27, "Imber Road Railway Station", "Imber_Road_Railway_Station"];
    B[6][9] = [30, "Rodges Grove", "Rodges_Grove"];
    B[7][9] = [5, "Blackman Building", "The_Blackman_Building"];
    B[8][9] = [30, "Meleady Plaza", "Meleady_Plaza"];
    B[9][9] = [30, "Whitesides Row", "Whitesides_Row"];

    // ------------------------------------------------
    // Roywood
    // ------------------------------------------------
    B[0][10] = [31, "Dickason Towers", "Dickason_Towers"];
    B[1][10] = [33, "Wasteland", "Wasteland_10%2C1"];
    B[2][10] = [2, "Haley Arms", "The_Haley_Arms"];
    B[3][10] = [
      25,
      "Sillence Walk Police Dept",
      "Sillence_Walk_Police_Department",
    ];
    B[4][10] = [30, "Stowell Road", "Stowell_Road"];
    B[5][10] = [11, "Club Normandare", "Club_Normandare_%28Jensentown%29"];
    B[6][10] = [31, "Wells Towers", "Wells_Towers"];
    B[7][10] = [30, "Freake Avenue", "Freake_Avenue"];
    B[8][10] = [30, "Gargery Crescent", "Gargery_Crescent"];
    B[9][10] = [22, "Perrott Museum", "The_Perrott_Museum"];
    B[0][11] = [24, "Sindercombe Park", "Sindercombe_Park"];
    B[1][11] = [30, "Firth Square", "Firth_Square"];
    B[2][11] = [18, "Hardyman Library", "Hardyman_Library"];
    B[3][11] = [30, "Freake Grove", "Freake_Grove"];
    B[4][11] = [12, "Factory", "Factory_11%2C4"];
    B[5][11] = [11, "Club Gayler", "Club_Gayler"];
    B[6][11] = [5, "Oxenbury Building", "The_Oxenbury_Building"];
    B[7][11] = [27, "Batton Row Railway Station", "Batton_Row_Railway_Station"];
    B[8][11] = [5, "Huish Building", "The_Huish_Building"];
    B[9][11] = [33, "Wasteland", "Wasteland_11%2C9"];
    B[0][12] = [5, "Akehurst Building", "The_Akehurst_Building"];
    B[1][12] = [30, "Dike Avenue", "Dike_Avenue"];
    B[2][12] = [12, "Factory", "Factory_12%2C2"];
    B[3][12] = [18, "Putt Library", "Putt_Library"];
    B[4][12] = [2, "Govier Arms", "The_Govier_Arms"];
    B[5][12] = [30, "Philp Drive", "Philp_Drive"];
    B[6][12] = [18, "Courage Library", "Courage_Library"];
    B[7][12] = [30, "Board Walk", "Board_Walk"];
    B[8][12] = [33, "Wasteland", "Wasteland_12%2C8"];
    B[9][12] = [33, "Wasteland", "Wasteland_12%2C9"];
    B[0][13] = [12, "Factory", "Factory_13%2C0"];
    B[1][13] = [32, "Warehouse", "Warehouse_13%2C1"];
    B[2][13] = [5, "Phillipps Building", "The_Phillipps_Building"];
    B[3][13] = [30, "Rhodes Grove", "Rhodes_Grove"];
    B[4][13] = [30, "Delacombe Street", "Delacombe_Street"];
    B[5][13] = [30, "Alven Boulevard", "Alven_Boulevard"];
    B[6][13] = [22, "Borland Museum", "The_Borland_Museum"];
    B[7][13] = [28, "Smallwood Crescent School", "Smallwood_Crescent_School"];
    B[8][13] = [5, "Duane Building", "The_Duane_Building"];
    B[9][13] = [30, "Retallick Walk", "Retallick_Walk"];
    B[0][14] = [23, "Selley Building", "The_Selley_Building_%28Jensentown%29"];
    B[1][14] = [18, "Haw Library", "Haw_Library"];
    B[2][14] = [
      27,
      "Dawney Grove Railway Station",
      "Dawney_Grove_Railway_Station",
    ];
    B[3][14] = [30, "Trafford Way", "Trafford_Way"];
    B[4][14] = [33, "Wasteland", "Wasteland_14%2C4"];
    B[5][14] = [30, "Holton Lane", "Holton_Lane"];
    B[6][14] = [17, "Junkyard", "Junkyard_14%2C6"];
    B[7][14] = [5, "MacVicar Building", "The_MacVicar_Building"];
    B[8][14] = [16, "Perren Hotel", "The_Perren_Hotel"];
    B[9][14] = [30, "Sartin Row", "Sartin_Row"];
    B[0][15] = [30, "Spark Crescent", "Spark_Crescent"];
    B[1][15] = [33, "Wasteland", "Wasteland_15%2C1"];
    B[2][15] = [24, "Craig Park", "Craig_Park"];
    B[3][15] = [30, "Gulliver Alley", "Gulliver_Alley"];
    B[4][15] = [30, "Stowell Crescent", "Stowell_Crescent"];
    B[5][15] = [2, "Grime Arms", "The_Grime_Arms"];
    B[6][15] = [30, "Woodroffe Grove", "Woodroffe_Grove_%28Jensentown%29"];
    B[7][15] = [
      9,
      "St Paschal's Church",
      "St._Paschal%27s_Church_%28Jensentown%29",
    ];
    B[8][15] = [8, "Cemetery", "Cemetery_15%2C8"];
    B[9][15] = [10, "Elmund Cinema", "Elmund_Cinema"];
    B[0][16] = [10, "Alaway Cinema", "Alaway_Cinema"];
    B[1][16] = [
      27,
      "Pople Avenue Railway Station",
      "Pople_Avenue_Railway_Station",
    ];
    B[2][16] = [22, "Deanesly Museum", "The_Deanesly_Museum"];
    B[3][16] = [12, "Factory", "Factory_16%2C3"];
    B[4][16] = [17, "Junkyard", "Junkyard_16%2C4"];
    B[5][16] = [30, "Haile Street", "Haile_Street_%28Jensentown%29"];
    B[6][16] = [23, "Shears Building", "The_Shears_Building"];
    B[7][16] = [11, "Club Febrey", "Club_Febrey"];
    B[8][16] = [5, "Shelmerdine Building", "The_Shelmerdine_Building"];
    B[9][16] = [30, "Greenway Place", "Greenway_Place"];
    B[0][17] = [30, "Capel Drive", "Capel_Drive"];
    B[1][17] = [22, "Barclay Museum", "The_Barclay_Museum"];
    B[2][17] = [30, "Maney Drive", "Maney_Drive_%28Jensentown%29"];
    B[3][17] = [28, "Kemble Alley School", "Kemble_Alley_School"];
    B[4][17] = [31, "Cavendish Towers", "Cavendish_Towers"];
    B[5][17] = [12, "Factory", "Factory_17%2C5"];
    B[6][17] = [5, "Grenter Building", "The_Grenter_Building"];
    B[7][17] = [30, "Campbell Road", "Campbell_Road"];
    B[8][17] = [5, "Orman Building", "The_Orman_Building"];
    B[9][17] = [5, "Sibree Building", "The_Sibree_Building"];
    B[0][18] = [5, "Gingell Building", "The_Gingell_Building"];
    B[1][18] = [18, "Peres Library", "Peres_Library"];
    B[2][18] = [
      9,
      "St Vladimir's Church",
      "St._Vladimir%27s_Church_%28Jensentown%29",
    ];
    B[3][18] = [8, "Cemetery", "Cemetery_18%2C3"];
    B[4][18] = [17, "Junkyard", "Junkyard_18%2C4"];
    B[5][18] = [33, "Wasteland", "Wasteland_18%2C5"];
    B[6][18] = [30, "Riggs Plaza", "Riggs_Plaza"];
    B[7][18] = [30, "Shilling Place", "Shilling_Place_18%2C7"];
    B[8][18] = [5, "Ready Building", "The_Ready_Building"];
    B[9][18] = [
      15,
      "St Humphrey's Hospital",
      "St._Humphrey%27s_Hospital_%28Jensentown%29",
    ];
    B[0][19] = [30, "Hobhouse Drive", "Hobhouse_Drive"];
    B[1][19] = [30, "Shilling Place", "Shilling_Place_19%2C1"];
    B[2][19] = [24, "Hambridge Park", "Hambridge_Park"];
    B[3][19] = [30, "Kening Square", "Kening_Square"];
    B[4][19] = [30, "Kilburn Drive", "Kilburn_Drive"];
    B[5][19] = [32, "Warehouse", "Warehouse_19%2C5"];
    B[6][19] = [28, "Copless Lane School", "Copless_Lane_School"];
    B[7][19] = [16, "Crang Hotel", "The_Crang_Hotel"];
    B[8][19] = [30, "Hogue Street", "Hogue_Street_%28Jensentown%29"];
    B[9][19] = [
      5,
      "Devonshire Building",
      "The_Devonshire_Building_%28Jensentown%29",
    ];

    // ------------------------------------------------
    // Peddlesden Village
    // ------------------------------------------------
    B[0][20] = [30, "Burchill Alley", "Burchill_Alley"];
    B[1][20] = [3, "Duggan Auto Repair", "Duggan_Auto_Repair"];
    B[2][20] = [30, "Ethelwyn Plaza", "Ethelwyn_Plaza"];
    B[3][20] = [23, "Balchin Building", "The_Balchin_Building"];
    B[4][20] = [32, "Warehouse", "Warehouse_20%2C4"];
    B[5][20] = [5, "Hellear Building", "The_Hellear_Building"];
    B[6][20] = [30, "Pittey Way", "Pittey_Way"];
    B[7][20] = [
      9,
      "St Marcellin's Church",
      "St._Marcellin%27s_Church_%28Quarlesbank%29",
    ];
    B[8][20] = [33, "Wasteland", "Wasteland_20%2C8"];
    B[9][20] = [10, "Tuckwood Cinema", "Tuckwood_Cinema"];
    B[0][21] = [20, "Pitman Mansion", "Pitman_Mansion"];
    B[1][21] = [20, "Pitman Mansion", "Pitman_Mansion"];
    B[2][21] = [30, "Winters Place", "Winters_Place"];
    B[3][21] = [30, "Farmer Boulevard", "Farmer_Boulevard"];
    B[4][21] = [
      27,
      "Holloms Boulevard Railway Station",
      "Holloms_Boulevard_Railway_Station",
    ];
    B[5][21] = [33, "Wasteland", "Wasteland_21%2C5"];
    B[6][21] = [10, "Mounter Cinema", "Mounter_Cinema"];
    B[7][21] = [11, "Club Beauchamp", "Club_Beauchamp"];
    B[8][21] = [8, "Cemetery", "Cemetery_21%2C8"];
    B[9][21] = [21, "Whitehouse Monument", "The_Whitehouse_Monument"];
    B[0][22] = [20, "Pitman Mansion", "Pitman_Mansion"];
    B[1][22] = [20, "Pitman Mansion", "Pitman_Mansion"];
    B[2][22] = [30, "Stiby Boulevard", "Stiby_Boulevard"];
    B[3][22] = [3, "Ponder Auto Repair", "Ponder_Auto_Repair"];
    B[4][22] = [6, "Carpark", "Carpark_22%2C4"];
    B[5][22] = [33, "Wasteland", "Wasteland_22%2C5"];
    B[6][22] = [28, "Hedges Avenue School", "Hedges_Avenue_School"];
    B[7][22] = [3, "Marshfield Auto Repair", "Marshfield_Auto_Repair"];
    B[8][22] = [30, "Rapps Alley", "Rapps_Alley"];
    B[9][22] = [
      13,
      "Maddocks Drive Fire Station",
      "Maddocks_Drive_Fire_Station",
    ];
    B[0][23] = [30, "Sibree Plaza", "Sibree_Plaza_%28Quarlesbank%29"];
    B[1][23] = [32, "Warehouse", "Warehouse_23%2C1"];
    B[2][23] = [30, "Moudry Grove", "Moudry_Grove"];
    B[3][23] = [23, "Milnerr Building", "The_Milnerr_Building"];
    B[4][23] = [10, "Cleal Cinema", "Cleal_Cinema"];
    B[5][23] = [30, "Roche Plaza", "Roche_Plaza"];
    B[6][23] = [31, "Bridger Towers", "Bridger_Towers"];
    B[7][23] = [30, "Hellear Alley", "Hellear_Alley_%28Quarlesbank%29"];
    B[8][23] = [22, "Coymer Museum", "The_Coymer_Museum"];
    B[9][23] = [6, "Carpark", "Carpark_23%2C9"];
    B[0][24] = [22, "Bearnard Museum", "The_Bearnard_Museum"];
    B[1][24] = [10, "Chitty Cinema", "Chitty_Cinema"];
    B[2][24] = [9, "St Alberic's Church", "St._Alberic%27s_Church"];
    B[3][24] = [11, "Club Furnell", "Club_Furnell"];
    B[4][24] = [30, "Mare Way", "Mare_Way"];
    B[5][24] = [21, "Boait Monument", "The_Boait_Monument"];
    B[6][24] = [16, "Gunningham Motel", "The_Gunningham_Motel"];
    B[7][24] = [22, "Cator Museum", "The_Cator_Museum"];
    B[8][24] = [16, "Rason Hotel", "The_Rason_Hotel"];
    B[9][24] = [30, "Verrell Crescent", "Verrell_Crescent_%28Quarlesbank%29"];
    B[0][25] = [30, "Pottenger Plaza", "Pottenger_Plaza"];
    B[1][25] = [5, "Murley Building", "The_Murley_Building"];
    B[2][25] = [8, "Cemetery", "Cemetery_25%2C2"];
    B[3][25] = [5, "Elson Building", "The_Elson_Building"];
    B[4][25] = [3, "Weaver Auto Repair", "Weaver_Auto_Repair"];
    B[5][25] = [30, "Heward Square", "Heward_Square_%28Quarlesbank%29"];
    B[6][25] = [30, "Gurden Drive", "Gurden_Drive"];
    B[7][25] = [17, "Junkyard", "Junkyard_25%2C7"];
    B[8][25] = [30, "Whalen Drive", "Whalen_Drive"];
    B[9][25] = [19, "Calvert Mall", "Calvert_Mall"];
    B[0][26] = [
      27,
      "Halse Place Railway Station",
      "Halse_Place_Railway_Station",
    ];
    B[1][26] = [30, "Eastmont Street", "Eastmont_Street"];
    B[2][26] = [
      25,
      "Augarde Street Police Dept",
      "Augarde_Street_Police_Department",
    ];
    B[3][26] = [31, "Summers Towers", "Summers_Towers"];
    B[4][26] = [30, "Gulledge Walk", "Gulledge_Walk"];
    B[5][26] = [9, "St Alcuin's Church", "St._Alcuin%27s_Church"];
    B[6][26] = [3, "Sowth Auto Repair", "Sowth_Auto_Repair"];
    B[7][26] = [30, "Prankard Road", "Prankard_Road"];
    B[8][26] = [30, "Springford Drive", "Springford_Drive"];
    B[9][26] = [19, "Calvert Mall", "Calvert_Mall"];
    B[0][27] = [5, "Buckenham Building", "The_Buckenham_Building"];
    B[1][27] = [23, "Evett Building", "The_Evett_Building"];
    B[2][27] = [30, "Gully Walk", "Gully_Walk"];
    B[3][27] = [
      13,
      "Kembry Boulevard Fire Station",
      "Kembry_Boulevard_Fire_Station",
    ];
    B[4][27] = [16, "Willmott Motel", "The_Willmott_Motel"];
    B[5][27] = [8, "Cemetery", "Cemetery_27%2C5"];
    B[6][27] = [
      15,
      "St Benedict's Hospital",
      "St._Benedict%27s_Hospital_%28Quarlesbank%29",
    ];
    B[7][27] = [
      9,
      "St Cunigunde's Church",
      "St._Cunigunde%27s_Church_%28Quarlesbank%29",
    ];
    B[8][27] = [30, "Penney Way", "Penney_Way"];
    B[9][27] = [30, "Anstruther Road", "Anstruther_Road"];
    B[0][28] = [33, "Wasteland", "Wasteland_28%2C0"];
    B[1][28] = [5, "Yea Building", "The_Yea_Building"];
    B[2][28] = [28, "Stambury Plaza School", "Stambury_Plaza_School"];
    B[3][28] = [5, "Bendall Building", "The_Bendall_Building"];
    B[4][28] = [10, "Cornford Cinema", "Cornford_Cinema"];
    B[5][28] = [33, "Wasteland", "Wasteland_28%2C5"];
    B[6][28] = [31, "Foy Towers", "Foy_Towers"];
    B[7][28] = [
      25,
      "Emerson Plaza Police Dept",
      "Emerson_Plaza_Police_Department",
    ];
    B[8][28] = [30, "Ramsdale Lane", "Ramsdale_Lane"];
    B[9][28] = [12, "Factory", "Factory_28%2C9"];
    B[0][29] = [31, "Baber Towers", "Baber_Towers"];
    B[1][29] = [
      23,
      "Haslock Building",
      "The_Haslock_Building_%28Quarlesbank%29",
    ];
    B[2][29] = [30, "Pulling Road", "Pulling_Road"];
    B[3][29] = [5, "Norcliffe Building", "The_Norcliffe_Building"];
    B[4][29] = [32, "Warehouse", "Warehouse_29%2C4"];
    B[5][29] = [17, "Junkyard", "Junkyard_29%2C5"];
    B[6][29] = [3, "Toomer Auto Repair", "Toomer_Auto_Repair"];
    B[7][29] = [
      3,
      "Chilcott Auto Repair",
      "Chilcott_Auto_Repair_%28Quarlesbank%29",
    ];
    B[8][29] = [30, "Rowley Road", "Rowley_Road"];
    B[9][29] = [18, "Dowell Library", "Dowell_Library"];

    // ------------------------------------------------
    // Dunell Hills
    // ------------------------------------------------
    B[0][30] = [10, "Exell Cinema", "Exell_Cinema"];
    B[1][30] = [
      13,
      "Yeatman Boulevard Fire Station",
      "Yeatman_Boulevard_Fire_Station",
    ];
    B[2][30] = [30, "Jacquet Way", "Jacquet_Way"];
    B[3][30] = [30, "Estlin Square", "Estlin_Square"];
    B[4][30] = [33, "Wasteland", "Wasteland_30%2C4"];
    B[5][30] = [22, "Lax Museum", "The_Lax_Museum"];
    B[6][30] = [2, "Humpfries Arms", "The_Humpfries_Arms_%28West_Boundwood%29"];
    B[7][30] = [30, "Purnell Avenue", "Purnell_Avenue"];
    B[8][30] = [
      25,
      "Ivyleafe Row Police Dept",
      "Ivyleafe_Row_Police_Department",
    ];
    B[9][30] = [15, "Nikolai General Hospital", "Nikolai_General_Hospital"];
    B[0][31] = [30, "Wilkes Boulevard", "Wilkes_Boulevard"];
    B[1][31] = [10, "Cribb Cinema", "Cribb_Cinema"];
    B[2][31] = [21, "Lombard Monument", "The_Lombard_Monument"];
    B[3][31] = [21, "Dalgliesh Monument", "The_Dalgliesh_Monument"];
    B[4][31] = [30, "Liminton Plaza", "Liminton_Plaza_%28West_Boundwood%29"];
    B[5][31] = [13, "Cowen Road Fire Station", "Cowen_Road_Fire_Station"];
    B[6][31] = [33, "Wasteland", "Wasteland_31%2C6"];
    B[7][31] = [22, "Cowie Museum", "The_Cowie_Museum"];
    B[8][31] = [3, "Bessant Auto Repair", "Bessant_Auto_Repair"];
    B[9][31] = [30, "Boulting Avenue", "Boulting_Avenue"];
    B[0][32] = [30, "Leaves Avenue", "Leaves_Avenue"];
    B[1][32] = [11, "Club Gaze", "Club_Gaze"];
    B[2][32] = [11, "Club Hannam", "Club_Hannam"];
    B[3][32] = [30, "Crost Avenue", "Crost_Avenue"];
    B[4][32] = [5, "Badman Building", "The_Badman_Building"];
    B[5][32] = [
      9,
      "St Ethelbert's Church",
      "St._Ethelbert%27s_Church_%28West_Boundwood%29",
    ];
    B[6][32] = [30, "Wilsdon Row", "Wilsdon_Row"];
    B[7][32] = [30, "Whelton Row", "Whelton_Row"];
    B[8][32] = [11, "Club Backholer", "Club_Backholer"];
    B[9][32] = [28, "Durston Walk School", "Durston_Walk_School"];
    B[0][33] = [30, "Dalley Drive", "Dalley_Drive"];
    B[1][33] = [30, "Seaward Road", "Seaward_Road"];
    B[2][33] = [5, "Sandy Building", "The_Sandy_Building"];
    B[3][33] = [
      25,
      "Dorothey Plaza Police Dept",
      "Dorothey_Plaza_Police_Department",
    ];
    B[4][33] = [
      15,
      "Neot General Hospital",
      "Neot_General_Hospital_%28West_Boundwood%29",
    ];
    B[5][33] = [2, "Pearl Arms", "The_Pearl_Arms"];
    B[6][33] = [3, "Bowdage Auto Repair", "Bowdage_Auto_Repair"];
    B[7][33] = [5, "Brandon Building", "The_Brandon_Building"];
    B[8][33] = [5, "Brundrit Building", "The_Brundrit_Building"];
    B[9][33] = [5, "Haskett Building", "The_Haskett_Building"];
    B[0][34] = [25, "Train Row Police Dept", "Train_Row_Police_Department"];
    B[1][34] = [24, "Guttridge Park", "Guttridge_Park"];
    B[2][34] = [5, "Every Building", "The_Every_Building"];
    B[3][34] = [9, "St Andrew's Church", "St._Andrew%27s_Church"];
    B[4][34] = [30, "Bowerman Way", "Bowerman_Way"];
    B[5][34] = [22, "Overton Museum", "The_Overton_Museum"];
    B[6][34] = [13, "Lowther Lane Fire Station", "Lowther_Lane_Fire_Station"];
    B[7][34] = [28, "Coate Boulevard School", "Coate_Boulevard_School"];
    B[8][34] = [30, "Cooling Avenue", "Cooling_Avenue"];
    B[9][34] = [18, "Eaglesfield Library", "Eaglesfield_Library"];
    B[0][35] = [16, "Purt Motel", "The_Purt_Motel"];
    B[1][35] = [6, "Carpark", "Carpark_35%2C1"];
    B[2][35] = [22, "Fowle Museum", "The_Fowle_Museum"];
    B[3][35] = [8, "Cemetery", "Cemetery_35%2C3"];
    B[4][35] = [6, "Carpark", "Carpark_35%2C4"];
    B[5][35] = [30, "Ashcroft Way", "Ashcroft_Way"];
    B[6][35] = [5, "Lapley Building", "The_Lapley_Building"];
    B[7][35] = [17, "Junkyard", "Junkyard_35%2C7"];
    B[8][35] = [30, "Blandy Avenue", "Blandy_Avenue"];
    B[9][35] = [30, "Self Avenue", "Self_Avenue"];
    B[0][36] = [11, "Club Lenton", "Club_Lenton"];
    B[1][36] = [24, "Lavor Park", "Lavor_Park"];
    B[2][36] = [30, "Godfry Street", "Godfry_Street"];
    B[3][36] = [11, "Club Cranfield", "Club_Cranfield"];
    B[4][36] = [4, "Game Bank", "Game_Bank"];
    B[5][36] = [30, "Shire Crescent", "Shire_Crescent"];
    B[6][36] = [30, "Caffin Street", "Caffin_Street"];
    B[7][36] = [15, "St Columba's Hospital", "St._Columba%27s_Hospital"];
    B[8][36] = [30, "Lyne Road", "Lyne_Road"];
    B[9][36] = [
      5,
      "Goodridge Building",
      "The_Goodridge_Building_%28West_Boundwood%29",
    ];
    B[0][37] = [3, "New Auto Repair", "New_Auto_Repair"];
    B[1][37] = [30, "Pyncombes Plaza", "Pyncombes_Plaza"];
    B[2][37] = [24, "Clement Park", "Clement_Park"];
    B[3][37] = [30, "Maskell Plaza", "Maskell_Plaza"];
    B[4][37] = [12, "Factory", "Factory_37%2C4"];
    B[5][37] = [28, "Bozon Road School", "Bozon_Road_School"];
    B[6][37] = [22, "Edgar Museum", "The_Edgar_Museum"];
    B[7][37] = [9, "St Wulfstan's Church", "St._Wulfstan%27s_Church"];
    B[8][37] = [30, "Reaston Plaza", "Reaston_Plaza"];
    B[9][37] = [21, "Longman Monument", "The_Longman_Monument"];
    B[0][38] = [31, "Madill Towers", "Madill_Towers"];
    B[1][38] = [30, "Gapper Street", "Gapper_Street"];
    B[2][38] = [30, "Coole Avenue", "Coole_Avenue"];
    B[3][38] = [
      21,
      "Pepperell Monument",
      "The_Pepperell_Monument_%28West_Boundwood%29",
    ];
    B[4][38] = [22, "Read Museum", "The_Read_Museum"];
    B[5][38] = [
      5,
      "Pridham Building",
      "The_Pridham_Building_%28West_Boundwood%29",
    ];
    B[6][38] = [
      9,
      "St Francis's Church",
      "St._Francis%27s_Church_%28West_Boundwood%29",
    ];
    B[7][38] = [8, "Cemetery", "Cemetery_38%2C7"];
    B[8][38] = [10, "Bromwich Cinema", "Bromwich_Cinema"];
    B[9][38] = [30, "Dolling Road", "Dolling_Road"];
    B[0][39] = [
      9,
      "St Marcellin's Church",
      "St._Marcellin%27s_Church_%28West_Boundwood%29",
    ];
    B[1][39] = [30, "Tigwell Street", "Tigwell_Street"];
    B[2][39] = [5, "Hamlin Building", "The_Hamlin_Building"];
    B[3][39] = [22, "Fowles Museum", "The_Fowles_Museum"];
    B[4][39] = [30, "Hartleys Lane", "Hartleys_Lane"];
    B[5][39] = [24, "Woolf Park", "Woolf_Park"];
    B[6][39] = [17, "Junkyard", "Junkyard_39%2C6"];
    B[7][39] = [10, "Wickstead Cinema", "Wickstead_Cinema"];
    B[8][39] = [30, "Abot Drive", "Abot_Drive"];
    B[9][39] = [33, "Wasteland", "Wasteland_39%2C9"];

    // ------------------------------------------------
    // Owsleybank
    // ------------------------------------------------
    B[0][40] = [33, "Wasteland", "Wasteland_40%2C0"];
    B[1][40] = [5, "Spankling Building", "The_Spankling_Building"];
    B[2][40] = [17, "Junkyard", "Junkyard_40%2C2"];
    B[3][40] = [6, "Carpark", "Carpark_40%2C3"];
    B[4][40] = [4, "Gimblett Bank", "Gimblett_Bank"];
    B[5][40] = [16, "Flynn Motel", "The_Flynn_Motel"];
    B[6][40] = [
      15,
      "Anastasius General Hospital",
      "Anastasius_General_Hospital",
    ];
    B[7][40] = [5, "Porcher Building", "The_Porcher_Building"];
    B[8][40] = [30, "Huddleston Avenue", "Huddleston_Avenue"];
    B[9][40] = [18, "Latcham Library", "Latcham_Library"];
    B[0][41] = [25, "Carner Way Police Dept", "Carner_Way_Police_Department"];
    B[1][41] = [
      25,
      "Mahoney Plaza Police Dept",
      "Mahoney_Plaza_Police_Department",
    ];
    B[2][41] = [10, "Wescombe Cinema", "Wescombe_Cinema"];
    B[3][41] = [
      5,
      "Brazey Building",
      "The_Brazey_Building_%28East_Boundwood%29",
    ];
    B[4][41] = [4, "Yeriod Bank", "Yeriod_Bank"];
    B[5][41] = [30, "Havenhand Boulevard", "Havenhand_Boulevard"];
    B[6][41] = [3, "Vimpany Auto Repair", "Vimpany_Auto_Repair"];
    B[7][41] = [2, "Stapellton Arms", "The_Stapellton_Arms"];
    B[8][41] = [6, "Carpark", "Carpark_41%2C8"];
    B[9][41] = [30, "Anning Avenue", "Anning_Avenue"];
    B[0][42] = [6, "Carpark", "Carpark_42%2C0"];
    B[1][42] = [
      27,
      "Codman Alley Railway Station",
      "Codman_Alley_Railway_Station",
    ];
    B[2][42] = [30, "Hateley Avenue", "Hateley_Avenue"];
    B[3][42] = [24, "Baynton Park", "Baynton_Park"];
    B[4][42] = [32, "Warehouse", "Warehouse_42%2C4"];
    B[5][42] = [
      15,
      "St Jude's Hospital",
      "St._Jude%27s_Hospital_%28East_Boundwood%29",
    ];
    B[6][42] = [9, "St Anthony's Church", "St._Anthony%27s_Church"];
    B[7][42] = [21, "Lynn Monument", "The_Lynn_Monument"];
    B[8][42] = [30, "Braddon Way", "Braddon_Way"];
    B[9][42] = [18, "Nation Library", "Nation_Library"];
    B[0][43] = [4, "Nursey Bank", "Nursey_Bank"];
    B[1][43] = [21, "Genge Monument", "The_Genge_Monument"];
    B[2][43] = [16, "Herridge Hotel", "The_Herridge_Hotel"];
    B[3][43] = [21, "Hocking Monument", "The_Hocking_Monument"];
    B[4][43] = [
      25,
      "Challenger Crescent Police Dept",
      "Challenger_Crescent_Police_Department",
    ];
    B[5][43] = [32, "Warehouse", "Warehouse_43%2C5"];
    B[6][43] = [8, "Cemetery", "Cemetery_43%2C6"];
    B[7][43] = [30, "Donovan Square", "Donovan_Square"];
    B[8][43] = [3, "Cassell Auto Repair", "Cassell_Auto_Repair"];
    B[9][43] = [19, "Bale Mall", "Bale_Mall"];
    B[0][44] = [
      13,
      "Wolsey Crescent Fire Station",
      "Wolsey_Crescent_Fire_Station",
    ];
    B[1][44] = [16, "Gilmore Motel", "The_Gilmore_Motel"];
    B[2][44] = [5, "Eastwood Building", "The_Eastwood_Building"];
    B[3][44] = [
      13,
      "Cookesley Walk Fire Station",
      "Cookesley_Walk_Fire_Station",
    ];
    B[4][44] = [30, "Chitty Walk", "Chitty_Walk"];
    B[5][44] = [30, "Colsworthy Street", "Colsworthy_Street"];
    B[6][44] = [5, "Digby Building", "The_Digby_Building"];
    B[7][44] = [30, "Dawes Walk", "Dawes_Walk"];
    B[8][44] = [30, "Knyps Drive", "Knyps_Drive"];
    B[9][44] = [19, "Bale Mall", "Bale_Mall"];
    B[0][45] = [
      15,
      "St Alfred's Hospital",
      "St._Alfred%27s_Hospital_%28East_Boundwood%29",
    ];
    B[1][45] = [30, "Schonlau Walk", "Schonlau_Walk"];
    B[2][45] = [17, "Junkyard", "Junkyard_45%2C2"];
    B[3][45] = [18, "Plummer Library", "Plummer_Library"];
    B[4][45] = [21, "Pegrum Monument", "The_Pegrum_Monument"];
    B[5][45] = [
      15,
      "Alphege General Hospital",
      "Alphege_General_Hospital_%28East_Boundwood%29",
    ];
    B[6][45] = [2, "Southworth Arms", "The_Southworth_Arms"];
    B[7][45] = [30, "Poulet Grove", "Poulet_Grove_%28East_Boundwood%29"];
    B[8][45] = [30, "Bayley Street", "Bayley_Street"];
    B[9][45] = [
      15,
      "St Matthew's Hospital",
      "St._Matthew%27s_Hospital_%28East_Boundwood%29",
    ];
    B[0][46] = [30, "Ivyleafe Way", "Ivyleafe_Way"];
    B[1][46] = [17, "Junkyard", "Junkyard_46%2C1"];
    B[2][46] = [5, "Scarman Building", "The_Scarman_Building"];
    B[3][46] = [10, "Rago Cinema", "Rago_Cinema"];
    B[4][46] = [32, "Warehouse", "Warehouse_46%2C4"];
    B[5][46] = [16, "Havill Motel", "The_Havill_Motel"];
    B[6][46] = [21, "Mays Monument", "The_Mays_Monument"];
    B[7][46] = [30, "Packham Alley", "Packham_Alley"];
    B[8][46] = [33, "Wasteland", "Wasteland_46%2C8"];
    B[9][46] = [30, "Barton Lane", "Barton_Lane"];
    B[0][47] = [33, "Wasteland", "Wasteland_47%2C0"];
    B[1][47] = [17, "Junkyard", "Junkyard_47%2C1"];
    B[2][47] = [27, "Meade Walk Railway Station", "Meade_Walk_Railway_Station"];
    B[3][47] = [30, "Trott Plaza", "Trott_Plaza"];
    B[4][47] = [5, "Channing Building", "The_Channing_Building"];
    B[5][47] = [18, "Weary Library", "Weary_Library"];
    B[6][47] = [33, "Wasteland", "Wasteland_47%2C6"];
    B[7][47] = [12, "Factory", "Factory_47%2C7"];
    B[8][47] = [30, "Ambrose Lane", "Ambrose_Lane"];
    B[9][47] = [5, "Loveless Building", "The_Loveless_Building"];
    B[0][48] = [17, "Junkyard", "Junkyard_48%2C0"];
    B[1][48] = [11, "Club Hefferin", "Club_Hefferin"];
    B[2][48] = [28, "Whalen Place School", "Whalen_Place_School"];
    B[3][48] = [28, "Kemys Way School", "Kemys_Way_School"];
    B[4][48] = [33, "Wasteland", "Wasteland_48%2C4"];
    B[5][48] = [30, "Sparey Plaza", "Sparey_Plaza"];
    B[6][48] = [30, "Silwood Row", "Silwood_Row"];
    B[7][48] = [23, "Sheppard Building", "The_Sheppard_Building"];
    B[8][48] = [10, "Beedall Cinema", "Beedall_Cinema"];
    B[9][48] = [9, "St Philip's Church", "St._Philip%27s_Church"];
    B[0][49] = [32, "Warehouse", "Warehouse_49%2C0"];
    B[1][49] = [30, "Merson Street", "Merson_Street"];
    B[2][49] = [17, "Junkyard", "Junkyard_49%2C2"];
    B[3][49] = [33, "Wasteland", "Wasteland_49%2C3"];
    B[4][49] = [30, "Troake Road", "Troake_Road_%28East_Boundwood%29"];
    B[5][49] = [30, "Ireland Drive", "Ireland_Drive"];
    B[6][49] = [30, "Tidcombe Plaza", "Tidcombe_Plaza"];
    B[7][49] = [17, "Junkyard", "Junkyard_49%2C7"];
    B[8][49] = [20, "Southall Mansion", "Southall_Mansion"];
    B[9][49] = [20, "Southall Mansion", "Southall_Mansion"];

    // ------------------------------------------------
    // Grigg Heights
    // ------------------------------------------------
    B[0][50] = [33, "Wasteland", "Wasteland_50%2C0"];
    B[1][50] = [30, "Barrat Lane", "Barrat_Lane"];
    B[2][50] = [24, "Lockwood Park", "Lockwood_Park"];
    B[3][50] = [11, "Club Bennetts", "Club_Bennetts_%28Lamport_Hills%29"];
    B[4][50] = [30, "Nutt Avenue", "Nutt_Avenue"];
    B[5][50] = [33, "Wasteland", "Wasteland_50%2C5"];
    B[6][50] = [16, "Parsons Hotel", "The_Parsons_Hotel"];
    B[7][50] = [5, "Leary Building", "The_Leary_Building"];
    B[8][50] = [20, "Southall Mansion", "Southall_Mansion"];
    B[9][50] = [20, "Southall Mansion", "Southall_Mansion"];
    B[0][51] = [12, "Factory", "Factory_51%2C0"];
    B[1][51] = [30, "Chadwick Lane", "Chadwick_Lane"];
    B[2][51] = [11, "Club Bussicott", "Club_Bussicott"];
    B[3][51] = [5, "Lethbridge Building", "The_Lethbridge_Building"];
    B[4][51] = [12, "Factory", "Factory_51%2C4"];
    B[5][51] = [
      9,
      "St Barnabas's Church",
      "St._Barnabas%27s_Church_%28Lamport_Hills%29",
    ];
    B[6][51] = [30, "Spare Grove", "Spare_Grove"];
    B[7][51] = [
      15,
      "Martha General Hospital",
      "Martha_General_Hospital_%28Lamport_Hills%29",
    ];
    B[8][51] = [25, "Rolls Road Police Dept", "Rolls_Road_Police_Department"];
    B[9][51] = [32, "Warehouse", "Warehouse_51%2C9"];
    B[0][52] = [5, "Sheehan Building", "The_Sheehan_Building"];
    B[1][52] = [33, "Wasteland", "Wasteland_52%2C1"];
    B[2][52] = [30, "Whittle Row", "Whittle_Row"];
    B[3][52] = [3, "Hooke Auto Repair", "Hooke_Auto_Repair"];
    B[4][52] = [
      15,
      "Adalbert General Hospital",
      "Adalbert_General_Hospital_%28Lamport_Hills%29",
    ];
    B[5][52] = [21, "McLean Monument", "The_McLean_Monument"];
    B[6][52] = [31, "Montgomery Towers", "Montgomery_Towers"];
    B[7][52] = [2, "Smith Arms", "The_Smith_Arms"];
    B[8][52] = [30, "Whitin Drive", "Whitin_Drive"];
    B[9][52] = [30, "Hammet Way", "Hammet_Way"];
    B[0][53] = [12, "Factory", "Factory_53%2C0"];
    B[1][53] = [
      27,
      "Broad Boulevard Railway Station",
      "Broad_Boulevard_Railway_Station",
    ];
    B[2][53] = [2, "Corless Arms", "The_Corless_Arms"];
    B[3][53] = [17, "Junkyard", "Junkyard_53%2C3"];
    B[4][53] = [30, "Bulleid Square", "Bulleid_Square_%28Lamport_Hills%29"];
    B[5][53] = [30, "Costen Way", "Costen_Way"];
    B[6][53] = [31, "Liddiard Towers", "Liddiard_Towers"];
    B[7][53] = [6, "Carpark", "Carpark_53%2C7"];
    B[8][53] = [9, "St Henry's Church", "St._Henry%27s_Church"];
    B[9][53] = [8, "Cemetery", "Cemetery_53%2C9"];
    B[0][54] = [17, "Junkyard", "Junkyard_54%2C0"];
    B[1][54] = [30, "Swearse Road", "Swearse_Road"];
    B[2][54] = [30, "Luckraft Avenue", "Luckraft_Avenue"];
    B[3][54] = [
      9,
      "St Maximillian's Church",
      "St._Maximillian%27s_Church_%28Lamport_Hills%29",
    ];
    B[4][54] = [
      30,
      "Gillycuddy Boulevard",
      "Gillycuddy_Boulevard_%28Lamport_Hills%29",
    ];
    B[5][54] = [4, "Steeds Bank", "Steeds_Bank"];
    B[6][54] = [2, "Hollwey Arms", "The_Hollwey_Arms"];
    B[7][54] = [33, "Wasteland", "Wasteland_54%2C7"];
    B[8][54] = [21, "Classey Monument", "The_Classey_Monument"];
    B[9][54] = [30, "Hiscock Alley", "Hiscock_Alley"];
    B[0][55] = [30, "Carr Place", "Carr_Place"];
    B[1][55] = [6, "Carpark", "Carpark_55%2C1"];
    B[2][55] = [30, "Clarkson Lane", "Clarkson_Lane"];
    B[3][55] = [30, "Trickey Lane", "Trickey_Lane"];
    B[4][55] = [5, "Braddick Building", "The_Braddick_Building"];
    B[5][55] = [30, "Muxlow Lane", "Muxlow_Lane"];
    B[6][55] = [16, "Rothwell Hotel", "The_Rothwell_Hotel"];
    B[7][55] = [32, "Warehouse", "Warehouse_55%2C7"];
    B[8][55] = [18, "Gully Library", "Gully_Library"];
    B[9][55] = [17, "Junkyard", "Junkyard_55%2C9"];
    B[0][56] = [30, "Maber Avenue", "Maber_Avenue"];
    B[1][56] = [10, "Adlam Cinema", "Adlam_Cinema"];
    B[2][56] = [30, "Dennett Lane", "Dennett_Lane"];
    B[3][56] = [28, "Frankham Avenue School", "Frankham_Avenue_School"];
    B[4][56] = [30, "Courage Avenue", "Courage_Avenue"];
    B[5][56] = [30, "Henniker Road", "Henniker_Road"];
    B[6][56] = [22, "Wheadon Museum", "The_Wheadon_Museum"];
    B[7][56] = [2, "Sidney Arms", "The_Sidney_Arms"];
    B[8][56] = [30, "Clothier Lane", "Clothier_Lane_%28Lamport_Hills%29"];
    B[9][56] = [2, "Terrill Arms", "The_Terrill_Arms"];
    B[0][57] = [30, "Tolman Lane", "Tolman_Lane"];
    B[1][57] = [
      25,
      "Fenwyk Plaza Police Dept",
      "Fenwyk_Plaza_Police_Department",
    ];
    B[2][57] = [
      27,
      "Latter Walk Railway Station",
      "Latter_Walk_Railway_Station",
    ];
    B[3][57] = [17, "Junkyard", "Junkyard_57%2C3"];
    B[4][57] = [32, "Warehouse", "Warehouse_57%2C4"];
    B[5][57] = [30, "Bollans Walk", "Bollans_Walk"];
    B[6][57] = [3, "Counsell Auto Repair", "Counsell_Auto_Repair"];
    B[7][57] = [
      25,
      "Grimstead Boulevard Police Dept",
      "Grimstead_Boulevard_Police_Department",
    ];
    B[8][57] = [3, "Tozer Auto Repair", "Tozer_Auto_Repair"];
    B[9][57] = [18, "Sambone Library", "Sambone_Library"];
    B[0][58] = [6, "Carpark", "Carpark_58%2C0"];
    B[1][58] = [2, "Bareham Arms", "The_Bareham_Arms"];
    B[2][58] = [30, "Hamlin Way", "Hamlin_Way"];
    B[3][58] = [30, "Hoskins Place", "Hoskins_Place"];
    B[4][58] = [33, "Wasteland", "Wasteland_58%2C4"];
    B[5][58] = [
      25,
      "Gainard Place Police Dept",
      "Gainard_Place_Police_Department",
    ];
    B[6][58] = [2, "Deller Arms", "The_Deller_Arms"];
    B[7][58] = [16, "Little Motel", "The_Little_Motel"];
    B[8][58] = [23, "Lambley Building", "The_Lambley_Building"];
    B[9][58] = [11, "Club Sheapperd", "Club_Sheapperd"];
    B[0][59] = [30, "Hird Grove", "Hird_Grove"];
    B[1][59] = [
      27,
      "Stranks Walk Railway Station",
      "Stranks_Walk_Railway_Station",
    ];
    B[2][59] = [30, "Duckworth Drive", "Duckworth_Drive"];
    B[3][59] = [30, "Sindercombe Grove", "Sindercombe_Grove"];
    B[4][59] = [33, "Wasteland", "Wasteland_59%2C4"];
    B[5][59] = [21, "Chafy Monument", "The_Chafy_Monument"];
    B[6][59] = [30, "Stoodely Street", "Stoodely_Street"];
    B[7][59] = [6, "Carpark", "Carpark_59%2C7"];
    B[8][59] = [16, "Godwin Motel", "The_Godwin_Motel"];
    B[9][59] = [30, "Church Square", "Church_Square"];

    // ------------------------------------------------
    // Crooketon
    // ------------------------------------------------
    B[0][60] = [17, "Junkyard", "Junkyard_60%2C0"];
    B[1][60] = [5, "Thompson Building", "The_Thompson_Building"];
    B[2][60] = [30, "Dann Drive", "Dann_Drive"];
    B[3][60] = [5, "Roadnight Building", "The_Roadnight_Building"];
    B[4][60] = [3, "Willy Auto Repair", "Willy_Auto_Repair"];
    B[5][60] = [30, "Vince Lane", "Vince_Lane"];
    B[6][60] = [29, "Rodges Stadium", "Rodges_Stadium"];
    B[7][60] = [29, "Rodges Stadium", "Rodges_Stadium"];
    B[8][60] = [24, "Frognal Park", "Frognal_Park"];
    B[9][60] = [
      21,
      "Norgate Monument",
      "The_Norgate_Monument_%28Chancelwood%29",
    ];
    B[0][61] = [
      5,
      "Mallows Building",
      "The_Mallows_Building_%28Chancelwood%29",
    ];
    B[1][61] = [30, "Peppe Alley", "Peppe_Alley"];
    B[2][61] = [28, "Gamlen Square School", "Gamlen_Square_School"];
    B[3][61] = [30, "Atkinson Walk", "Atkinson_Walk"];
    B[4][61] = [28, "Tame Way School", "Tame_Way_School"];
    B[5][61] = [30, "Hanna Drive", "Hanna_Drive"];
    B[6][61] = [29, "Rodges Stadium", "Rodges_Stadium"];
    B[7][61] = [29, "Rodges Stadium", "Rodges_Stadium"];
    B[8][61] = [30, "Oatley Street", "Oatley_Street"];
    B[9][61] = [32, "Warehouse", "Warehouse_61%2C9"];
    B[0][62] = [30, "Geyskens Alley", "Geyskens_Alley"];
    B[1][62] = [30, "Samuel Boulevard", "Samuel_Boulevard"];
    B[2][62] = [32, "Warehouse", "Warehouse_62%2C2"];
    B[3][62] = [30, "Blom Crescent", "Blom_Crescent"];
    B[4][62] = [30, "Bentley Street", "Bentley_Street"];
    B[5][62] = [30, "Rickett Plaza", "Rickett_Plaza"];
    B[6][62] = [21, "Henshaw Monument", "The_Henshaw_Monument"];
    B[7][62] = [30, "Melbourne Way", "Melbourne_Way"];
    B[8][62] = [30, "Parrott Plaza", "Parrott_Plaza"];
    B[9][62] = [2, "Crooker Arms", "The_Crooker_Arms"];
    B[0][63] = [12, "Factory", "Factory_63%2C0"];
    B[1][63] = [5, "Gaffney Building", "The_Gaffney_Building"];
    B[2][63] = [30, "Alven Crescent", "Alven_Crescent"];
    B[3][63] = [30, "Younge Lane", "Younge_Lane"];
    B[4][63] = [30, "Heywood Walk", "Heywood_Walk"];
    B[5][63] = [30, "Briant Lane", "Briant_Lane"];
    B[6][63] = [28, "Kempe Way School", "Kempe_Way_School"];
    B[7][63] = [17, "Junkyard", "Junkyard_63%2C7"];
    B[8][63] = [23, "Harenc Building", "The_Harenc_Building"];
    B[9][63] = [30, "Millward Street", "Millward_Street"];
    B[0][64] = [30, "Gillow Drive", "Gillow_Drive_%28Chancelwood%29"];
    B[1][64] = [31, "Cutler Towers", "Cutler_Towers"];
    B[2][64] = [24, "Colles Park", "Colles_Park"];
    B[3][64] = [30, "Reeve Alley", "Reeve_Alley"];
    B[4][64] = [10, "Ford Cinema", "Ford_Cinema"];
    B[5][64] = [24, "Hathway Park", "Hathway_Park"];
    B[6][64] = [30, "Sweetapple Boulevard", "Sweetapple_Boulevard"];
    B[7][64] = [17, "Junkyard", "Junkyard_64%2C7"];
    B[8][64] = [21, "Bythesea Monument", "The_Bythesea_Monument"];
    B[9][64] = [
      9,
      "St Timothy's Church",
      "St._Timothy%27s_Church_%28Chancelwood%29",
    ];
    B[0][65] = [6, "Carpark", "Carpark_65%2C0"];
    B[1][65] = [5, "Dobin Building", "The_Dobin_Building"];
    B[2][65] = [6, "Carpark", "Carpark_65%2C2"];
    B[3][65] = [33, "Wasteland", "Wasteland_65%2C3"];
    B[4][65] = [10, "Bagehot Cinema", "Bagehot_Cinema"];
    B[5][65] = [30, "Woodard Square", "Woodard_Square"];
    B[6][65] = [33, "Wasteland", "Wasteland_65%2C6"];
    B[7][65] = [33, "Wasteland", "Wasteland_65%2C7"];
    B[8][65] = [16, "Cheatle Motel", "The_Cheatle_Motel"];
    B[9][65] = [5, "Wester Building", "The_Wester_Building"];
    B[0][66] = [16, "Harry Motel", "The_Harry_Motel"];
    B[1][66] = [30, "Sommerfield Grove", "Sommerfield_Grove"];
    B[2][66] = [10, "Cembrowicz Cinema", "Cembrowicz_Cinema"];
    B[3][66] = [18, "Ruse Library", "Ruse_Library"];
    B[4][66] = [30, "Jelly Alley", "Jelly_Alley"];
    B[5][66] = [
      15,
      "St Louis's Hospital",
      "St._Louis%27s_Hospital_%28Chancelwood%29",
    ];
    B[6][66] = [
      27,
      "Gapper Place Railway Station",
      "Gapper_Place_Railway_Station",
    ];
    B[7][66] = [28, "Bealey Boulevard School", "Bealey_Boulevard_School"];
    B[8][66] = [16, "Bucknall Motel", "The_Bucknall_Motel"];
    B[9][66] = [30, "Hibberd Avenue", "Hibberd_Avenue"];
    B[0][67] = [30, "Foan Drive", "Foan_Drive"];
    B[1][67] = [24, "Coutts Park", "Coutts_Park"];
    B[2][67] = [30, "Pattle Way", "Pattle_Way"];
    B[3][67] = [30, "Webley Crescent", "Webley_Crescent"];
    B[4][67] = [20, "Curton Mansion", "Curton_Mansion"];
    B[5][67] = [20, "Curton Mansion", "Curton_Mansion"];
    B[6][67] = [6, "Carpark", "Carpark_67%2C6"];
    B[7][67] = [13, "Cradock Row Fire Station", "Cradock_Row_Fire_Station"];
    B[8][67] = [30, "Roger Plaza", "Roger_Plaza"];
    B[9][67] = [15, "Dunstan General Hospital", "Dunstan_General_Hospital"];
    B[0][68] = [16, "Syred Motel", "The_Syred_Motel"];
    B[1][68] = [30, "Crees Avenue", "Crees_Avenue"];
    B[2][68] = [18, "Smeeth Library", "Smeeth_Library"];
    B[3][68] = [30, "Helliar Place", "Helliar_Place"];
    B[4][68] = [20, "Curton Mansion", "Curton_Mansion"];
    B[5][68] = [20, "Curton Mansion", "Curton_Mansion"];
    B[6][68] = [16, "Firminger Hotel", "The_Firminger_Hotel"];
    B[7][68] = [11, "Club Budd", "Club_Budd"];
    B[8][68] = [17, "Junkyard", "Junkyard_68%2C8"];
    B[9][68] = [6, "Carpark", "Carpark_68%2C9"];
    B[0][69] = [
      13,
      "Prickett Street Fire Station",
      "Prickett_Street_Fire_Station",
    ];
    B[1][69] = [30, "Leighton Way", "Leighton_Way_%28Chancelwood%29"];
    B[2][69] = [18, "Gotobed Library", "Gotobed_Library"];
    B[3][69] = [5, "Clack Building", "The_Clack_Building"];
    B[4][69] = [10, "Hingley Cinema", "Hingley_Cinema"];
    B[5][69] = [
      23,
      "Haslock Building",
      "The_Haslock_Building_%28Chancelwood%29",
    ];
    B[6][69] = [5, "Surtees Building", "The_Surtees_Building"];
    B[7][69] = [33, "Wasteland", "Wasteland_69%2C7"];
    B[8][69] = [30, "Boobyer Walk", "Boobyer_Walk"];
    B[9][69] = [30, "Haskett Alley", "Haskett_Alley"];

    // ------------------------------------------------
    // Nixbank
    // ------------------------------------------------
    B[0][70] = [21, "Blount Monument", "The_Blount_Monument"];
    B[1][70] = [17, "Junkyard", "Junkyard_70%2C1"];
    B[2][70] = [30, "Purchase Road", "Purchase_Road"];
    B[3][70] = [5, "Nickells Building", "The_Nickells_Building"];
    B[4][70] = [30, "Buckenham Road", "Buckenham_Road"];
    B[5][70] = [18, "Mee Library", "Mee_Library"];
    B[6][70] = [32, "Warehouse", "Warehouse_70%2C6"];
    B[7][70] = [30, "Dudoc Street", "Dudoc_Street"];
    B[8][70] = [24, "Dauncey Park", "Dauncey_Park"];
    B[9][70] = [21, "Carslake Monument", "The_Carslake_Monument"];
    B[0][71] = [30, "Murrell Avenue", "Murrell_Avenue"];
    B[1][71] = [10, "Shuffery Cinema", "Shuffery_Cinema"];
    B[2][71] = [30, "Elphick Walk", "Elphick_Walk_%28Earletown%29"];
    B[3][71] = [30, "Kellett Row", "Kellett_Row"];
    B[4][71] = [18, "Coathupe Library", "Coathupe_Library"];
    B[5][71] = [16, "Adney Hotel", "The_Adney_Hotel"];
    B[6][71] = [22, "Gage Museum", "The_Gage_Museum"];
    B[7][71] = [11, "Club Swabey", "Club_Swabey_%28Earletown%29"];
    B[8][71] = [6, "Carpark", "Carpark_71%2C8"];
    B[9][71] = [32, "Warehouse", "Warehouse_71%2C9"];
    B[0][72] = [2, "Waltham Arms", "The_Waltham_Arms"];
    B[1][72] = [3, "Lynewraye Auto Repair", "Lynewraye_Auto_Repair"];
    B[2][72] = [5, "Hockin Building", "The_Hockin_Building"];
    B[3][72] = [12, "Factory", "Factory_72%2C3"];
    B[4][72] = [12, "Factory", "Factory_72%2C4"];
    B[5][72] = [5, "Finlay Building", "The_Finlay_Building"];
    B[6][72] = [
      15,
      "Etheldreda General Hospital",
      "Etheldreda_General_Hospital_%28Earletown%29",
    ];
    B[7][72] = [30, "Boord Place", "Boord_Place"];
    B[8][72] = [
      13,
      "Horrigan Street Fire Station",
      "Horrigan_Street_Fire_Station",
    ];
    B[9][72] = [30, "Clinker Drive", "Clinker_Drive"];
    B[0][73] = [
      27,
      "Bruce Boulevard Railway Station",
      "Bruce_Boulevard_Railway_Station",
    ];
    B[1][73] = [5, "Mooney Building", "The_Mooney_Building"];
    B[2][73] = [18, "Perry Library", "Perry_Library"];
    B[3][73] = [15, "Clare General Hospital", "Clare_General_Hospital"];
    B[4][73] = [30, "Box Plaza", "Box_Plaza"];
    B[5][73] = [9, "St Telesphorus's Church", "St._Telesphorus%27s_Church"];
    B[6][73] = [12, "Factory", "Factory_73%2C6"];
    B[7][73] = [30, "Sweet Grove", "Sweet_Grove"];
    B[8][73] = [30, "Combe Lane", "Combe_Lane_%28Earletown%29"];
    B[9][73] = [
      13,
      "Swansborough Road Fire Station",
      "Swansborough_Road_Fire_Station",
    ];
    B[0][74] = [4, "Simpkins Bank", "Simpkins_Bank"];
    B[1][74] = [17, "Junkyard", "Junkyard_74%2C1"];
    B[2][74] = [12, "Factory", "Factory_74%2C2"];
    B[3][74] = [30, "Blandy Lane", "Blandy_Lane"];
    B[4][74] = [5, "Flowar Building", "The_Flowar_Building_%28Earletown%29"];
    B[5][74] = [9, "St Telesphorus's Church", "St._Telesphorus%27s_Church"];
    B[6][74] = [21, "Chandler Monument", "The_Chandler_Monument"];
    B[7][74] = [30, "Doveton Alley", "Doveton_Alley"];
    B[8][74] = [12, "Factory", "Factory_74%2C8"];
    B[9][74] = [16, "Eddington Motel", "The_Eddington_Motel"];
    B[0][75] = [30, "Tipper Road", "Tipper_Road"];
    B[1][75] = [30, "Izzard Walk", "Izzard_Walk"];
    B[2][75] = [13, "Stoy Avenue Fire Station", "Stoy_Avenue_Fire_Station"];
    B[3][75] = [2, "Acourt Arms", "The_Acourt_Arms"];
    B[4][75] = [30, "Battell Walk", "Battell_Walk"];
    B[5][75] = [28, "Goodwyn Avenue School", "Goodwyn_Avenue_School"];
    B[6][75] = [30, "Comins Street", "Comins_Street"];
    B[7][75] = [4, "Attewill Bank", "Attewill_Bank"];
    B[8][75] = [30, "Westmacott Row", "Westmacott_Row"];
    B[9][75] = [24, "Martlew Park", "Martlew_Park"];
    B[0][76] = [33, "Wasteland", "Wasteland_76%2C0"];
    B[1][76] = [30, "Doig Avenue", "Doig_Avenue"];
    B[2][76] = [16, "Kilpatrick Motel", "The_Kilpatrick_Motel"];
    B[3][76] = [30, "Lancey Row", "Lancey_Row"];
    B[4][76] = [12, "Factory", "Factory_76%2C4"];
    B[5][76] = [31, "Meecham Towers", "Meecham_Towers"];
    B[6][76] = [
      13,
      "Shufflebotham Boulevard Fire Station",
      "Shufflebotham_Boulevard_Fire_Station",
    ];
    B[7][76] = [22, "Greswell Museum", "The_Greswell_Museum"];
    B[8][76] = [27, "Royal Way Railway Station", "Royal_Way_Railway_Station"];
    B[9][76] = [5, "Hemore Building", "The_Hemore_Building"];
    B[0][77] = [4, "Yea Bank", "Yea_Bank"];
    B[1][77] = [30, "McCandy Avenue", "McCandy_Avenue"];
    B[2][77] = [33, "Wasteland", "Wasteland_77%2C2"];
    B[3][77] = [5, "Bruce Building", "The_Bruce_Building"];
    B[4][77] = [10, "Gaisford Cinema", "Gaisford_Cinema"];
    B[5][77] = [30, "Devonshire Square", "Devonshire_Square_%28Earletown%29"];
    B[6][77] = [5, "Eldredge Building", "The_Eldredge_Building"];
    B[7][77] = [
      3,
      "Pullinger Auto Repair",
      "Pullinger_Auto_Repair_%28Earletown%29",
    ];
    B[8][77] = [30, "Franks Avenue", "Franks_Avenue"];
    B[9][77] = [33, "Wasteland", "Wasteland_77%2C9"];
    B[0][78] = [30, "Finn Alley", "Finn_Alley"];
    B[1][78] = [30, "Fooks Alley", "Fooks_Alley"];
    B[2][78] = [
      27,
      "Stammers Drive Railway Station",
      "Stammers_Drive_Railway_Station",
    ];
    B[3][78] = [33, "Wasteland", "Wasteland_78%2C3"];
    B[4][78] = [30, "Sivewright Boulevard", "Sivewright_Boulevard"];
    B[5][78] = [18, "Sheapperd Library", "Sheapperd_Library"];
    B[6][78] = [28, "Weeks Crescent School", "Weeks_Crescent_School"];
    B[7][78] = [30, "Seton Road", "Seton_Road"];
    B[8][78] = [15, "St Adrian's Hospital", "St._Adrian%27s_Hospital"];
    B[9][78] = [30, "Orlando Square", "Orlando_Square"];
    B[0][79] = [10, "Cooke Cinema", "Cooke_Cinema"];
    B[1][79] = [31, "Angus Towers", "Angus_Towers"];
    B[2][79] = [16, "Molton Hotel", "The_Molton_Hotel"];
    B[3][79] = [30, "Dymock Alley", "Dymock_Alley"];
    B[4][79] = [11, "Club Webley", "Club_Webley"];
    B[5][79] = [23, "Wortley Building", "The_Wortley_Building"];
    B[6][79] = [30, "Ames Plaza", "Ames_Plaza"];
    B[7][79] = [5, "Coomer Building", "The_Coomer_Building"];
    B[8][79] = [30, "Bean Square", "Bean_Square"];
    B[9][79] = [30, "Tossell Lane", "Tossell_Lane"];

    // ------------------------------------------------
    // Foulkes Village
    // ------------------------------------------------
    B[0][80] = [
      15,
      "St Alfred's Hospital",
      "St._Alfred%27s_Hospital_%28Rhodenbank%29",
    ];
    B[1][80] = [30, "Underhill Square", "Underhill_Square"];
    B[2][80] = [30, "Cowgall Avenue", "Cowgall_Avenue"];
    B[3][80] = [10, "Darbey Cinema", "Darbey_Cinema"];
    B[4][80] = [31, "Thorp Towers", "Thorp_Towers"];
    B[5][80] = [30, "Wilmut Crescent", "Wilmut_Crescent"];
    B[6][80] = [15, "St Helier's Hospital", "St._Helier%27s_Hospital"];
    B[7][80] = [30, "Amatt Boulevard", "Amatt_Boulevard"];
    B[8][80] = [22, "Edridge Museum", "The_Edridge_Museum"];
    B[9][80] = [30, "Attewill Way", "Attewill_Way"];
    B[0][81] = [17, "Junkyard", "Junkyard_81%2C0"];
    B[1][81] = [18, "Moberly Library", "Moberly_Library"];
    B[2][81] = [31, "Lahey Towers", "Lahey_Towers"];
    B[3][81] = [
      25,
      "Hindmarsh Row Police Dept",
      "Hindmarsh_Row_Police_Department",
    ];
    B[4][81] = [5, "Bizzell Building", "The_Bizzell_Building"];
    B[5][81] = [
      15,
      "St Alban's Hospital",
      "St._Alban%27s_Hospital_%28Rhodenbank%29",
    ];
    B[6][81] = [5, "Uglow Building", "The_Uglow_Building"];
    B[7][81] = [11, "Club Hagan", "Club_Hagan"];
    B[8][81] = [6, "Carpark", "Carpark_81%2C8"];
    B[9][81] = [5, "Robotier Building", "The_Robotier_Building"];
    B[0][82] = [5, "Elcomb Building", "The_Elcomb_Building_%28Rhodenbank%29"];
    B[1][82] = [5, "Otero Building", "The_Otero_Building"];
    B[2][82] = [
      13,
      "Meetcham Drive Fire Station",
      "Meetcham_Drive_Fire_Station",
    ];
    B[3][82] = [30, "Standfast Plaza", "Standfast_Plaza"];
    B[4][82] = [30, "Pask Walk", "Pask_Walk"];
    B[5][82] = [24, "Milne Park", "Milne_Park"];
    B[6][82] = [21, "Upshall Monument", "The_Upshall_Monument"];
    B[7][82] = [33, "Wasteland", "Wasteland_82%2C7"];
    B[8][82] = [10, "Woodland Cinema", "Woodland_Cinema"];
    B[9][82] = [16, "Fletcher Motel", "The_Fletcher_Motel"];
    B[0][83] = [11, "Club Meatyard", "Club_Meatyard"];
    B[1][83] = [22, "Higgdon Museum", "The_Higgdon_Museum"];
    B[2][83] = [33, "Wasteland", "Wasteland_83%2C2"];
    B[3][83] = [17, "Junkyard", "Junkyard_83%2C3"];
    B[4][83] = [33, "Wasteland", "Wasteland_83%2C4"];
    B[5][83] = [
      23,
      "Devonshire Building",
      "The_Devonshire_Building_%28Rhodenbank%29",
    ];
    B[6][83] = [5, "Parks Building", "The_Parks_Building"];
    B[7][83] = [30, "Wickett Place", "Wickett_Place"];
    B[8][83] = [11, "Club Knyps", "Club_Knyps"];
    B[9][83] = [33, "Wasteland", "Wasteland_83%2C9"];
    B[0][84] = [30, "Mor Road", "Mor_Road"];
    B[1][84] = [17, "Junkyard", "Junkyard_84%2C1"];
    B[2][84] = [30, "Devenish Avenue", "Devenish_Avenue"];
    B[3][84] = [
      25,
      "Billinghurst Place Police Dept",
      "Billinghurst_Place_Police_Department",
    ];
    B[4][84] = [17, "Junkyard", "Junkyard_84%2C4"];
    B[5][84] = [6, "Carpark", "Carpark_84%2C5"];
    B[6][84] = [30, "Lindell Grove", "Lindell_Grove"];
    B[7][84] = [12, "Factory", "Factory_84%2C7"];
    B[8][84] = [30, "Woodman Grove", "Woodman_Grove"];
    B[9][84] = [10, "Pownall Cinema", "Pownall_Cinema"];
    B[0][85] = [30, "Luffman Grove", "Luffman_Grove"];
    B[1][85] = [25, "Cull Avenue Police Dept", "Cull_Avenue_Police_Department"];
    B[2][85] = [30, "Sawtell Road", "Sawtell_Road"];
    B[3][85] = [9, "St Matheos's Church", "St._Matheos%27s_Church"];
    B[4][85] = [30, "Lockwood Walk", "Lockwood_Walk"];
    B[5][85] = [21, "Guiday Monument", "The_Guiday_Monument"];
    B[6][85] = [5, "Anstruther Building", "The_Anstruther_Building"];
    B[7][85] = [18, "Tompsett Library", "Tompsett_Library"];
    B[8][85] = [11, "Club Greene", "Club_Greene"];
    B[9][85] = [30, "Doswell Lane", "Doswell_Lane_%28Rhodenbank%29"];
    B[0][86] = [11, "Club Farrel", "Club_Farrel"];
    B[1][86] = [24, "Tikanoff Park", "Tikanoff_Park"];
    B[2][86] = [28, "Tinkler Plaza School", "Tinkler_Plaza_School"];
    B[3][86] = [22, "Brain Museum", "The_Brain_Museum"];
    B[4][86] = [33, "Wasteland", "Wasteland_86%2C4"];
    B[5][86] = [12, "Factory", "Factory_86%2C5"];
    B[6][86] = [2, "Ablett Arms", "The_Ablett_Arms"];
    B[7][86] = [30, "Spirrell Street", "Spirrell_Street"];
    B[8][86] = [12, "Factory", "Factory_86%2C8"];
    B[9][86] = [30, "Nichols Drive", "Nichols_Drive"];
    B[0][87] = [9, "St Dunstan's Church", "St._Dunstan%27s_Church"];
    B[1][87] = [31, "Mallard Towers", "Mallard_Towers"];
    B[2][87] = [21, "Floyd Monument", "The_Floyd_Monument"];
    B[3][87] = [5, "Garard Building", "The_Garard_Building"];
    B[4][87] = [
      27,
      "Salter Grove Railway Station",
      "Salter_Grove_Railway_Station",
    ];
    B[5][87] = [
      15,
      "St Mark's Hospital",
      "St._Mark%27s_Hospital_%28Rhodenbank%29",
    ];
    B[6][87] = [30, "Sealy Grove", "Sealy_Grove"];
    B[7][87] = [24, "Craske Park", "Craske_Park"];
    B[8][87] = [21, "Rendell Monument", "The_Rendell_Monument"];
    B[9][87] = [
      27,
      "Clipper Grove Railway Station",
      "Clipper_Grove_Railway_Station",
    ];
    B[0][88] = [24, "Nash Park", "Nash_Park"];
    B[1][88] = [8, "Cemetery", "Cemetery_88%2C1"];
    B[2][88] = [12, "Factory", "Factory_88%2C2"];
    B[3][88] = [30, "Bargery Square", "Bargery_Square_%28Rhodenbank%29"];
    B[4][88] = [30, "Orome Avenue", "Orome_Avenue"];
    B[5][88] = [12, "Factory", "Factory_88%2C5"];
    B[6][88] = [21, "Cabble Monument", "The_Cabble_Monument_%28Rhodenbank%29"];
    B[7][88] = [30, "Fitzgerald Lane", "Fitzgerald_Lane"];
    B[8][88] = [15, "Marcellus General Hospital", "Marcellus_General_Hospital"];
    B[9][88] = [3, "Nulty Auto Repair", "Nulty_Auto_Repair"];
    B[0][89] = [30, "Barlow Avenue", "Barlow_Avenue"];
    B[1][89] = [17, "Junkyard", "Junkyard_89%2C1"];
    B[2][89] = [30, "Attrell Avenue", "Attrell_Avenue_%28Rhodenbank%29"];
    B[3][89] = [23, "Wallbutton Building", "The_Wallbutton_Building"];
    B[4][89] = [23, "Carlyle Building", "The_Carlyle_Building"];
    B[5][89] = [13, "Gable Walk Fire Station", "Gable_Walk_Fire_Station"];
    B[6][89] = [23, "Starr Building", "The_Starr_Building"];
    B[7][89] = [22, "Spenser Museum", "The_Spenser_Museum"];
    B[8][89] = [12, "Factory", "Factory_89%2C8"];
    B[9][89] = [30, "Brittan Walk", "Brittan_Walk"];

    // ------------------------------------------------
    // New Arkham
    // ------------------------------------------------
    B[0][90] = [11, "Club Mold", "Club_Mold"];
    B[1][90] = [18, "Howell Library", "Howell_Library"];
    B[2][90] = [30, "Purt Avenue", "Purt_Avenue"];
    B[3][90] = [4, "Townsend Bank", "Townsend_Bank"];
    B[4][90] = [33, "Wasteland", "Wasteland_90%2C4"];
    B[5][90] = [11, "Club Cocker", "Club_Cocker"];
    B[6][90] = [22, "Nurley Museum", "The_Nurley_Museum"];
    B[7][90] = [18, "Fleming Library", "Fleming_Library"];
    B[8][90] = [11, "Club Dowell", "Club_Dowell"];
    B[9][90] = [11, "Club Garrett", "Club_Garrett"];
    B[0][91] = [33, "Wasteland", "Wasteland_91%2C0"];
    B[1][91] = [31, "Andow Towers", "Andow_Towers"];
    B[2][91] = [23, "Bridgman Building", "The_Bridgman_Building"];
    B[3][91] = [31, "Waddington Towers", "Waddington_Towers"];
    B[4][91] = [22, "Pepperell Museum", "The_Pepperell_Museum"];
    B[5][91] = [27, "Gibb Plaza Railway Station", "Gibb_Plaza_Railway_Station"];
    B[6][91] = [12, "Factory", "Factory_91%2C6"];
    B[7][91] = [6, "Carpark", "Carpark_91%2C7"];
    B[8][91] = [30, "Ray Alley", "Ray_Alley_%28Dulston%29"];
    B[9][91] = [30, "Hoskyns Alley", "Hoskyns_Alley"];
    B[0][92] = [12, "Factory", "Factory_92%2C0"];
    B[1][92] = [30, "Lovel Way", "Lovel_Way"];
    B[2][92] = [30, "Muncey Street", "Muncey_Street"];
    B[3][92] = [32, "Warehouse", "Warehouse_92%2C3"];
    B[4][92] = [30, "Duport Avenue", "Duport_Avenue"];
    B[5][92] = [23, "Whitlock Building", "The_Whitlock_Building"];
    B[6][92] = [30, "Bruorton Drive", "Bruorton_Drive"];
    B[7][92] = [19, "Treweeke Mall", "Treweeke_Mall"];
    B[8][92] = [19, "Treweeke Mall", "Treweeke_Mall"];
    B[9][92] = [22, "Masters Museum", "The_Masters_Museum"];
    B[0][93] = [25, "Oake Walk Police Dept", "Oake_Walk_Police_Department"];
    B[1][93] = [5, "Perryn Building", "The_Perryn_Building_%28Dulston%29"];
    B[2][93] = [30, "Beach Walk", "Beach_Walk"];
    B[3][93] = [15, "St Anacletus's Hospital", "St._Anacletus%27s_Hospital"];
    B[4][93] = [30, "Silley Plaza", "Silley_Plaza"];
    B[5][93] = [24, "MacKlin Park", "MacKlin_Park"];
    B[6][93] = [
      27,
      "Heddington Walk Railway Station",
      "Heddington_Walk_Railway_Station",
    ];
    B[7][93] = [19, "Treweeke Mall", "Treweeke_Mall"];
    B[8][93] = [19, "Treweeke Mall", "Treweeke_Mall"];
    B[9][93] = [
      25,
      "Pegrum Place Police Dept",
      "Pegrum_Place_Police_Department",
    ];
    B[0][94] = [5, "Naisbitt Building", "The_Naisbitt_Building"];
    B[1][94] = [30, "Cullen Way", "Cullen_Way_%28Dulston%29"];
    B[2][94] = [5, "Turvill Building", "The_Turvill_Building"];
    B[3][94] = [33, "Wasteland", "Wasteland_94%2C3"];
    B[4][94] = [31, "Parrott Towers", "Parrott_Towers"];
    B[5][94] = [2, "Gouger Arms", "The_Gouger_Arms"];
    B[6][94] = [30, "Thornhill Alley", "Thornhill_Alley"];
    B[7][94] = [30, "Thresh Row", "Thresh_Row"];
    B[8][94] = [30, "Pirrie Place", "Pirrie_Place"];
    B[9][94] = [
      27,
      "Muirhead Avenue Railway Station",
      "Muirhead_Avenue_Railway_Station",
    ];
    B[0][95] = [
      25,
      "Clewett Alley Police Dept",
      "Clewett_Alley_Police_Department",
    ];
    B[1][95] = [32, "Warehouse", "Warehouse_95%2C1"];
    B[2][95] = [
      13,
      "Weston Crescent Fire Station",
      "Weston_Crescent_Fire_Station",
    ];
    B[3][95] = [31, "Downe Towers", "Downe_Towers"];
    B[4][95] = [16, "Speak Motel", "The_Speak_Motel_%28Dulston%29"];
    B[5][95] = [30, "Noblett Drive", "Noblett_Drive"];
    B[6][95] = [30, "Bullor Avenue", "Bullor_Avenue"];
    B[7][95] = [30, "Spencer Row", "Spencer_Row"];
    B[8][95] = [30, "Tovey Place", "Tovey_Place"];
    B[9][95] = [18, "Caffin Library", "Caffin_Library"];
    B[0][96] = [25, "Spicer Row Police Dept", "Spicer_Row_Police_Department"];
    B[1][96] = [30, "Bellot Street", "Bellot_Street"];
    B[2][96] = [
      15,
      "Anne General Hospital",
      "Anne_General_Hospital_%28Dulston%29",
    ];
    B[3][96] = [6, "Carpark", "Carpark_96%2C3"];
    B[4][96] = [22, "Holdway Museum", "The_Holdway_Museum"];
    B[5][96] = [30, "Woodborn Avenue", "Woodborn_Avenue"];
    B[6][96] = [30, "Marsh Avenue", "Marsh_Avenue_%28Dulston%29"];
    B[7][96] = [6, "Carpark", "Carpark_96%2C7"];
    B[8][96] = [2, "Slade Arms", "The_Slade_Arms"];
    B[9][96] = [16, "Dycer Hotel", "The_Dycer_Hotel"];
    B[0][97] = [23, "Beale Building", "The_Beale_Building"];
    B[1][97] = [30, "Mogridge Drive", "Mogridge_Drive"];
    B[2][97] = [2, "Much Arms", "The_Much_Arms"];
    B[3][97] = [12, "Factory", "Factory_97%2C3"];
    B[4][97] = [
      25,
      "Midelton Crescent Police Dept",
      "Midelton_Crescent_Police_Department",
    ];
    B[5][97] = [33, "Wasteland", "Wasteland_97%2C5"];
    B[6][97] = [4, "Oatley Bank", "Oatley_Bank"];
    B[7][97] = [17, "Junkyard", "Junkyard_97%2C7"];
    B[8][97] = [30, "Hagger Way", "Hagger_Way_%28Dulston%29"];
    B[9][97] = [30, "Maud Walk", "Maud_Walk"];
    B[0][98] = [30, "Leeson Alley", "Leeson_Alley"];
    B[1][98] = [30, "Hamerton Road", "Hamerton_Road"];
    B[2][98] = [9, "St Barbara's Church", "St._Barbara%27s_Church"];
    B[3][98] = [3, "Nott Auto Repair", "Nott_Auto_Repair"];
    B[4][98] = [30, "Clerck Walk", "Clerck_Walk"];
    B[5][98] = [30, "Newnam Avenue", "Newnam_Avenue"];
    B[6][98] = [30, "Rayfield Lane", "Rayfield_Lane"];
    B[7][98] = [30, "Hinge Drive", "Hinge_Drive"];
    B[8][98] = [15, "Blaise General Hospital", "Blaise_General_Hospital"];
    B[9][98] = [31, "Roadnight Towers", "Roadnight_Towers"];
    B[0][99] = [10, "Troubridge Cinema", "Troubridge_Cinema"];
    B[1][99] = [23, "Trood Building", "The_Trood_Building"];
    B[2][99] = [8, "Cemetery", "Cemetery_99%2C2"];
    B[3][99] = [33, "Wasteland", "Wasteland_99%2C3"];
    B[4][99] = [30, "Byers Walk", "Byers_Walk"];
    B[5][99] = [33, "Wasteland", "Wasteland_99%2C5"];
    B[6][99] = [5, "Gatehouse Building", "The_Gatehouse_Building"];
    B[7][99] = [5, "Pilton Building", "The_Pilton_Building"];
    B[8][99] = [24, "McNally Park", "McNally_Park"];
    B[9][99] = [
      13,
      "Stembridge Crescent Fire Station",
      "Stembridge_Crescent_Fire_Station",
    ];

    // ------------------------------------------------
    // Jensentown
    // ------------------------------------------------
    B[10][0] = [6, "Carpark", "Carpark_0%2C10"];
    B[11][0] = [30, "Membry Grove", "Membry_Grove"];
    B[12][0] = [28, "Henslow Street School", "Henslow_Street_School"];
    B[13][0] = [6, "Carpark", "Carpark_0%2C13"];
    B[14][0] = [30, "Burke Place", "Burke_Place_%28Roywood%29"];
    B[15][0] = [13, "Walrond Place Fire Station", "Walrond_Place_Fire_Station"];
    B[16][0] = [12, "Factory", "Factory_0%2C16"];
    B[17][0] = [
      9,
      "St Cyprian's Church",
      "St._Cyprian%27s_Church_%28Roywood%29",
    ];
    B[18][0] = [2, "Grace Arms", "The_Grace_Arms"];
    B[19][0] = [28, "Flew Lane School", "Flew_Lane_School"];
    B[10][1] = [32, "Warehouse", "Warehouse_1%2C10"];
    B[11][1] = [
      27,
      "Bodilly Alley Railway Station",
      "Bodilly_Alley_Railway_Station",
    ];
    B[12][1] = [30, "Warley Alley", "Warley_Alley"];
    B[13][1] = [24, "Ladd Park", "Ladd_Park"];
    B[14][1] = [5, "Donaldson Building", "The_Donaldson_Building"];
    B[15][1] = [12, "Factory", "Factory_1%2C15"];
    B[16][1] = [17, "Junkyard", "Junkyard_1%2C16"];
    B[17][1] = [9, "St Mary's Church", "St._Mary%27s_Church_%28Roywood%29"];
    B[18][1] = [30, "Buffery Street", "Buffery_Street"];
    B[19][1] = [17, "Junkyard", "Junkyard_1%2C19"];
    B[10][2] = [30, "Jelly Avenue", "Jelly_Avenue"];
    B[11][2] = [28, "Smythe Alley School", "Smythe_Alley_School"];
    B[12][2] = [30, "Beard Place", "Beard_Place"];
    B[13][2] = [5, "Hoddinott Building", "The_Hoddinott_Building"];
    B[14][2] = [30, "Minall Lane", "Minall_Lane"];
    B[15][2] = [
      27,
      "Grist Crescent Railway Station",
      "Grist_Crescent_Railway_Station",
    ];
    B[16][2] = [30, "Withy Walk", "Withy_Walk"];
    B[17][2] = [10, "Wyatt Cinema", "Wyatt_Cinema"];
    B[18][2] = [33, "Wasteland", "Wasteland_2%2C18"];
    B[19][2] = [4, "Wyche Bank", "Wyche_Bank"];
    B[10][3] = [12, "Factory", "Factory_3%2C10"];
    B[11][3] = [33, "Wasteland", "Wasteland_3%2C11"];
    B[12][3] = [32, "Warehouse", "Warehouse_3%2C12"];
    B[13][3] = [5, "Pollard Building", "The_Pollard_Building"];
    B[14][3] = [16, "Ashcroft Hotel", "The_Ashcroft_Hotel"];
    B[15][3] = [23, "Gilesi Building", "The_Gilesi_Building"];
    B[16][3] = [30, "Row Drive", "Row_Drive"];
    B[17][3] = [6, "Carpark", "Carpark_3%2C17"];
    B[18][3] = [5, "Pinfield Building", "The_Pinfield_Building"];
    B[19][3] = [22, "Vellacott Museum", "The_Vellacott_Museum"];
    B[10][4] = [30, "Newport Alley", "Newport_Alley_%28Roywood%29"];
    B[11][4] = [30, "Gillow Drive", "Gillow_Drive_%28Roywood%29"];
    B[12][4] = [28, "Gazzard Avenue School", "Gazzard_Avenue_School"];
    B[13][4] = [30, "Maddaford Square", "Maddaford_Square_%28Roywood%29"];
    B[14][4] = [31, "Garson Towers", "Garson_Towers"];
    B[15][4] = [30, "Hecks Street", "Hecks_Street_%28Roywood%29"];
    B[16][4] = [30, "Cleeves Way", "Cleeves_Way"];
    B[17][4] = [15, "Monica General Hospital", "Monica_General_Hospital"];
    B[18][4] = [30, "Weakley Square", "Weakley_Square_%28Roywood%29"];
    B[19][4] = [15, "St Dismas's Hospital", "St._Dismas%27s_Hospital"];
    B[10][5] = [10, "Kilpatrick Cinema", "Kilpatrick_Cinema"];
    B[11][5] = [4, "Meacham Bank", "Meacham_Bank"];
    B[12][5] = [23, "Frauley Building", "The_Frauley_Building"];
    B[13][5] = [5, "Millett Building", "The_Millett_Building"];
    B[14][5] = [22, "Martland Museum", "The_Martland_Museum"];
    B[15][5] = [3, "Esgar Auto Repair", "Esgar_Auto_Repair"];
    B[16][5] = [5, "Gatley Building", "The_Gatley_Building"];
    B[17][5] = [6, "Carpark", "Carpark_5%2C17"];
    B[18][5] = [22, "Carslake Museum", "The_Carslake_Museum"];
    B[19][5] = [30, "Owers Way", "Owers_Way"];
    B[10][6] = [30, "Sowth Road", "Sowth_Road"];
    B[11][6] = [5, "Carse Building", "The_Carse_Building"];
    B[12][6] = [11, "Club Whitelock", "Club_Whitelock"];
    B[13][6] = [24, "Havercroft Park", "Havercroft_Park"];
    B[14][6] = [4, "Botreux Bank", "Botreux_Bank"];
    B[15][6] = [17, "Junkyard", "Junkyard_6%2C15"];
    B[16][6] = [17, "Junkyard", "Junkyard_6%2C16"];
    B[17][6] = [
      25,
      "Gerrard Place Police Dept",
      "Gerrard_Place_Police_Department",
    ];
    B[18][6] = [16, "Willia Hotel", "The_Willia_Hotel"];
    B[19][6] = [18, "Hemburrow Library", "Hemburrow_Library"];
    B[10][7] = [30, "Nositer Crescent", "Nositer_Crescent"];
    B[11][7] = [31, "Murtaugh Towers", "Murtaugh_Towers"];
    B[12][7] = [30, "Milard Lane", "Milard_Lane_%28Roywood%29"];
    B[13][7] = [21, "Stretchbury Monument", "The_Stretchbury_Monument"];
    B[14][7] = [30, "Limberye Walk", "Limberye_Walk"];
    B[15][7] = [30, "Ratcliffe Street", "Ratcliffe_Street"];
    B[16][7] = [
      13,
      "Melbourne Square Fire Station",
      "Melbourne_Square_Fire_Station",
    ];
    B[17][7] = [16, "Speak Motel", "The_Speak_Motel_%28Roywood%29"];
    B[18][7] = [6, "Carpark", "Carpark_7%2C18"];
    B[19][7] = [16, "Dudoc Hotel", "The_Dudoc_Hotel_%28Roywood%29"];
    B[10][8] = [23, "Pilling Building", "The_Pilling_Building"];
    B[11][8] = [30, "Lowndes Square", "Lowndes_Square"];
    B[12][8] = [27, "Date Row Railway Station", "Date_Row_Railway_Station"];
    B[13][8] = [5, "Wadden Building", "The_Wadden_Building"];
    B[14][8] = [11, "Club Tarring", "Club_Tarring"];
    B[15][8] = [21, "Whitlock Monument", "The_Whitlock_Monument"];
    B[16][8] = [4, "Cosway Bank", "Cosway_Bank"];
    B[17][8] = [4, "Meaden Bank", "Meaden_Bank"];
    B[18][8] = [33, "Wasteland", "Wasteland_8%2C18"];
    B[19][8] = [32, "Warehouse", "Warehouse_8%2C19"];
    B[10][9] = [30, "Applegate Alley", "Applegate_Alley_%28Roywood%29"];
    B[11][9] = [11, "Club Santler", "Club_Santler"];
    B[12][9] = [32, "Warehouse", "Warehouse_9%2C12"];
    B[13][9] = [5, "Claines Building", "The_Claines_Building"];
    B[14][9] = [17, "Junkyard", "Junkyard_9%2C14"];
    B[15][9] = [30, "Hackwell Drive", "Hackwell_Drive"];
    B[16][9] = [23, "Purt Building", "The_Purt_Building"];
    B[17][9] = [15, "St Linus's Hospital", "St._Linus%27s_Hospital"];
    B[18][9] = [33, "Wasteland", "Wasteland_9%2C18"];
    B[19][9] = [5, "Cavendish Building", "The_Cavendish_Building"];

    // ------------------------------------------------
    // Judgewood
    // ------------------------------------------------
    B[10][10] = [6, "Carpark", "Carpark_10%2C10"];
    B[11][10] = [32, "Warehouse", "Warehouse_10%2C11"];
    B[12][10] = [
      27,
      "Hewlett Boulevard Railway Station",
      "Hewlett_Boulevard_Railway_Station",
    ];
    B[13][10] = [31, "Dancey Towers", "Dancey_Towers"];
    B[14][10] = [
      27,
      "Mules Walk Railway Station",
      "Mules_Walk_Railway_Station",
    ];
    B[15][10] = [22, "Perriam Museum", "The_Perriam_Museum_%28Judgewood%29"];
    B[16][10] = [30, "Galvin Plaza", "Galvin_Plaza"];
    B[17][10] = [24, "Inder Park", "Inder_Park"];
    B[18][10] = [21, "Conybeare Monument", "The_Conybeare_Monument"];
    B[19][10] = [30, "Jesse Place", "Jesse_Place"];
    B[10][11] = [33, "Wasteland", "Wasteland_11%2C10"];
    B[11][11] = [31, "Howard Towers", "Howard_Towers"];
    B[12][11] = [
      9,
      "St Arnold's Church",
      "St._Arnold%27s_Church_%28Judgewood%29",
    ];
    B[13][11] = [8, "Cemetery", "Cemetery_11%2C13"];
    B[14][11] = [21, "Drewer Monument", "The_Drewer_Monument"];
    B[15][11] = [30, "Scievell Place", "Scievell_Place"];
    B[16][11] = [32, "Warehouse", "Warehouse_11%2C16"];
    B[17][11] = [30, "Corrie Square", "Corrie_Square"];
    B[18][11] = [5, "Billows Building", "The_Billows_Building"];
    B[19][11] = [5, "Osbaldeston Building", "The_Osbaldeston_Building"];
    B[10][12] = [12, "Factory", "Factory_12%2C10"];
    B[11][12] = [30, "Nugent Walk", "Nugent_Walk"];
    B[12][12] = [24, "Hollard Park", "Hollard_Park"];
    B[13][12] = [30, "Loaring Grove", "Loaring_Grove"];
    B[14][12] = [
      13,
      "Higgin Square Fire Station",
      "Higgin_Square_Fire_Station",
    ];
    B[15][12] = [2, "Farnol Arms", "The_Farnol_Arms"];
    B[16][12] = [32, "Warehouse", "Warehouse_12%2C16"];
    B[17][12] = [30, "Hurford Alley", "Hurford_Alley"];
    B[18][12] = [
      5,
      "Halliday Building",
      "The_Halliday_Building_%28Judgewood%29",
    ];
    B[19][12] = [28, "Horn Drive School", "Horn_Drive_School"];
    B[10][13] = [30, "Pippen Grove", "Pippen_Grove"];
    B[11][13] = [30, "Meecham Plaza", "Meecham_Plaza"];
    B[12][13] = [33, "Wasteland", "Wasteland_13%2C12"];
    B[13][13] = [30, "Alaway Row", "Alaway_Row_%28Judgewood%29"];
    B[14][13] = [5, "MacCarthy Building", "The_MacCarthy_Building"];
    B[15][13] = [18, "Maney Library", "Maney_Library"];
    B[16][13] = [30, "Bampfield Road", "Bampfield_Road"];
    B[17][13] = [30, "Hyde Walk", "Hyde_Walk"];
    B[18][13] = [30, "Joliffe Way", "Joliffe_Way"];
    B[19][13] = [30, "Thom Grove", "Thom_Grove"];
    B[10][14] = [21, "Methuen Monument", "The_Methuen_Monument"];
    B[11][14] = [23, "Perceval Building", "The_Perceval_Building"];
    B[12][14] = [16, "Bubwith Hotel", "The_Bubwith_Hotel"];
    B[13][14] = [2, "Boylin Arms", "The_Boylin_Arms"];
    B[14][14] = [2, "Organ Arms", "The_Organ_Arms"];
    B[15][14] = [30, "Flynn Road", "Flynn_Road"];
    B[16][14] = [30, "Griffen Way", "Griffen_Way"];
    B[17][14] = [
      27,
      "Garwood Road Railway Station",
      "Garwood_Road_Railway_Station",
    ];
    B[18][14] = [33, "Wasteland", "Wasteland_14%2C18"];
    B[19][14] = [23, "Peet Building", "The_Peet_Building"];
    B[10][15] = [30, "Wilmott Row", "Wilmott_Row_%28Judgewood%29"];
    B[11][15] = [18, "Colglough Library", "Colglough_Library"];
    B[12][15] = [
      25,
      "Brentnall Grove Police Dept",
      "Brentnall_Grove_Police_Department",
    ];
    B[13][15] = [30, "Shervord Place", "Shervord_Place_%28Judgewood%29"];
    B[14][15] = [
      15,
      "St Wilfrid's Hospital",
      "St._Wilfrid%27s_Hospital_%28Judgewood%29",
    ];
    B[15][15] = [33, "Wasteland", "Wasteland_15%2C15"];
    B[16][15] = [
      9,
      "St Josephine's Church",
      "St._Josephine%27s_Church_%28Judgewood%29",
    ];
    B[17][15] = [21, "Hamlen Monument", "The_Hamlen_Monument"];
    B[18][15] = [33, "Wasteland", "Wasteland_15%2C18"];
    B[19][15] = [9, "St Basil's Church", "St._Basil%27s_Church"];
    B[10][16] = [
      9,
      "St Joachim's Church",
      "St._Joachim%27s_Church_%28Judgewood%29",
    ];
    B[11][16] = [8, "Cemetery", "Cemetery_16%2C11"];
    B[12][16] = [22, "Hebdon Museum", "The_Hebdon_Museum"];
    B[13][16] = [30, "Budgen Lane", "Budgen_Lane"];
    B[14][16] = [
      27,
      "Cridge Alley Railway Station",
      "Cridge_Alley_Railway_Station",
    ];
    B[15][16] = [33, "Wasteland", "Wasteland_16%2C15"];
    B[16][16] = [
      28,
      "Veresmith Boulevard School",
      "Veresmith_Boulevard_School",
    ];
    B[17][16] = [18, "McDonnell Library", "McDonnell_Library"];
    B[18][16] = [30, "Parrott Alley", "Parrott_Alley"];
    B[19][16] = [32, "Warehouse", "Warehouse_16%2C19"];
    B[10][17] = [17, "Junkyard", "Junkyard_17%2C10"];
    B[11][17] = [17, "Junkyard", "Junkyard_17%2C11"];
    B[12][17] = [30, "Busby Walk", "Busby_Walk"];
    B[13][17] = [22, "Ive Museum", "The_Ive_Museum"];
    B[14][17] = [4, "Burcham Bank", "Burcham_Bank"];
    B[15][17] = [30, "Bargery Square", "Bargery_Square_%28Judgewood%29"];
    B[16][17] = [23, "Ludlow Building", "The_Ludlow_Building"];
    B[17][17] = [
      15,
      "Edmund General Hospital",
      "Edmund_General_Hospital_%28Judgewood%29",
    ];
    B[18][17] = [30, "Park Way", "Park_Way"];
    B[19][17] = [21, "Westover Monument", "The_Westover_Monument"];
    B[10][18] = [30, "Brodribb Way", "Brodribb_Way"];
    B[11][18] = [
      27,
      "Ormrod Avenue Railway Station",
      "Ormrod_Avenue_Railway_Station",
    ];
    B[12][18] = [
      15,
      "Maria General Hospital",
      "Maria_General_Hospital_%28Judgewood%29",
    ];
    B[13][18] = [30, "Bickersteth Row", "Bickersteth_Row"];
    B[14][18] = [33, "Wasteland", "Wasteland_18%2C14"];
    B[15][18] = [5, "Critchell Building", "The_Critchell_Building"];
    B[16][18] = [5, "Gibbens Building", "The_Gibbens_Building"];
    B[17][18] = [30, "Herne Plaza", "Herne_Plaza"];
    B[18][18] = [2, "Cuss Arms", "The_Cuss_Arms"];
    B[19][18] = [30, "Bennett Way", "Bennett_Way_%28Judgewood%29"];
    B[10][19] = [6, "Carpark", "Carpark_19%2C10"];
    B[11][19] = [21, "Walbridge Monument", "The_Walbridge_Monument"];
    B[12][19] = [30, "Boggis Avenue", "Boggis_Avenue_%28Judgewood%29"];
    B[13][19] = [5, "Furneaux Building", "The_Furneaux_Building"];
    B[14][19] = [21, "Partington Monument", "The_Partington_Monument"];
    B[15][19] = [30, "MacDonald Way", "MacDonald_Way"];
    B[16][19] = [30, "Hiscock Walk", "Hiscock_Walk"];
    B[17][19] = [30, "Walmsley Lane", "Walmsley_Lane_%28Judgewood%29"];
    B[18][19] = [
      27,
      "Fennessy Road Railway Station",
      "Fennessy_Road_Railway_Station",
    ];
    B[19][19] = [30, "Tripick Lane", "Tripick_Lane"];

    // ------------------------------------------------
    // Chudleyton
    // ------------------------------------------------
    B[10][20] = [30, "Lean Drive", "Lean_Drive"];
    B[11][20] = [17, "Junkyard", "Junkyard_20%2C11"];
    B[12][20] = [13, "Eatwell Walk Fire Station", "Eatwell_Walk_Fire_Station"];
    B[13][20] = [33, "Wasteland", "Wasteland_20%2C13"];
    B[14][20] = [17, "Junkyard", "Junkyard_20%2C14"];
    B[15][20] = [11, "Club Pears", "Club_Pears"];
    B[16][20] = [30, "Egleton Walk", "Egleton_Walk"];
    B[17][20] = [30, "Crawshaw Road", "Crawshaw_Road"];
    B[18][20] = [30, "Barstow Walk", "Barstow_Walk"];
    B[19][20] = [5, "Whish Building", "The_Whish_Building_%28Gatcombeton%29"];
    B[10][21] = [30, "Syms Road", "Syms_Road"];
    B[11][21] = [30, "Dunster Lane", "Dunster_Lane"];
    B[12][21] = [30, "Hillard Walk", "Hillard_Walk"];
    B[13][21] = [30, "Israel Walk", "Israel_Walk"];
    B[14][21] = [30, "Terrill Lane", "Terrill_Lane"];
    B[15][21] = [30, "Conybear Road", "Conybear_Road_%28Gatcombeton%29"];
    B[16][21] = [30, "Bignal Lane", "Bignal_Lane_%28Gatcombeton%29"];
    B[17][21] = [10, "Alder Cinema", "Alder_Cinema"];
    B[18][21] = [30, "Douglas Lane", "Douglas_Lane"];
    B[19][21] = [24, "Sayce Park", "Sayce_Park"];
    B[10][22] = [30, "Eyres Way", "Eyres_Way"];
    B[11][22] = [
      27,
      "Sawtell Walk Railway Station",
      "Sawtell_Walk_Railway_Station",
    ];
    B[12][22] = [30, "Luch Road", "Luch_Road"];
    B[13][22] = [30, "Maundrill Grove", "Maundrill_Grove"];
    B[14][22] = [30, "Dolbridge Street", "Dolbridge_Street_%28Gatcombeton%29"];
    B[15][22] = [5, "Pounsett Building", "The_Pounsett_Building"];
    B[16][22] = [30, "Dover Way", "Dover_Way"];
    B[17][22] = [32, "Warehouse", "Warehouse_22%2C17"];
    B[18][22] = [30, "Edgar Alley", "Edgar_Alley"];
    B[19][22] = [18, "Chudleigh Library", "Chudleigh_Library"];
    B[10][23] = [30, "Huckman Alley", "Huckman_Alley"];
    B[11][23] = [15, "St Cyprian's Hospital", "St._Cyprian%27s_Hospital"];
    B[12][23] = [6, "Carpark", "Carpark_23%2C12"];
    B[13][23] = [30, "Scobell Crescent", "Scobell_Crescent"];
    B[14][23] = [30, "Dorman Way", "Dorman_Way"];
    B[15][23] = [30, "Elin Way", "Elin_Way"];
    B[16][23] = [17, "Junkyard", "Junkyard_23%2C16"];
    B[17][23] = [28, "Marriott Place School", "Marriott_Place_School"];
    B[18][23] = [4, "Plummer Bank", "Plummer_Bank"];
    B[19][23] = [2, "Allford Arms", "The_Allford_Arms"];
    B[10][24] = [
      27,
      "McEvoy Drive Railway Station",
      "McEvoy_Drive_Railway_Station",
    ];
    B[11][24] = [30, "Fyfe Drive", "Fyfe_Drive"];
    B[12][24] = [30, "Grenter Square", "Grenter_Square"];
    B[13][24] = [
      25,
      "Lamport Walk Police Dept",
      "Lamport_Walk_Police_Department",
    ];
    B[14][24] = [30, "Pinchin Plaza", "Pinchin_Plaza"];
    B[15][24] = [30, "Pulsford Road", "Pulsford_Road"];
    B[16][24] = [
      9,
      "St Maximillian's Church",
      "St._Maximillian%27s_Church_%28Gatcombeton%29",
    ];
    B[17][24] = [
      27,
      "Mahagan Square Railway Station",
      "Mahagan_Square_Railway_Station",
    ];
    B[18][24] = [5, "Simons Building", "The_Simons_Building"];
    B[19][24] = [33, "Wasteland", "Wasteland_24%2C19"];
    B[10][25] = [19, "Calvert Mall", "Calvert_Mall"];
    B[11][25] = [22, "Challes Museum", "The_Challes_Museum"];
    B[12][25] = [6, "Carpark", "Carpark_25%2C12"];
    B[13][25] = [30, "Trebble Lane", "Trebble_Lane"];
    B[14][25] = [6, "Carpark", "Carpark_25%2C14"];
    B[15][25] = [6, "Carpark", "Carpark_25%2C15"];
    B[16][25] = [30, "Monk Walk", "Monk_Walk"];
    B[17][25] = [30, "Gates Avenue", "Gates_Avenue"];
    B[18][25] = [30, "Smethurst Walk", "Smethurst_Walk"];
    B[19][25] = [24, "Bates Park", "Bates_Park"];
    B[10][26] = [19, "Calvert Mall", "Calvert_Mall"];
    B[11][26] = [30, "Hains Street", "Hains_Street"];
    B[12][26] = [6, "Carpark", "Carpark_26%2C12"];
    B[13][26] = [10, "Don Cinema", "Don_Cinema"];
    B[14][26] = [24, "Flower Park", "Flower_Park"];
    B[15][26] = [15, "St Godric's Hospital", "St._Godric%27s_Hospital"];
    B[16][26] = [30, "Sly Way", "Sly_Way"];
    B[17][26] = [30, "Lightfoot Alley", "Lightfoot_Alley"];
    B[18][26] = [3, "Spirrell Auto Repair", "Spirrell_Auto_Repair"];
    B[19][26] = [3, "Blanford Auto Repair", "Blanford_Auto_Repair"];
    B[10][27] = [11, "Club Wadman", "Club_Wadman_%28Gatcombeton%29"];
    B[11][27] = [30, "Clinton Way", "Clinton_Way"];
    B[12][27] = [17, "Junkyard", "Junkyard_27%2C12"];
    B[13][27] = [30, "Woolacott Street", "Woolacott_Street"];
    B[14][27] = [32, "Warehouse", "Warehouse_27%2C14"];
    B[15][27] = [30, "Rankin Road", "Rankin_Road"];
    B[16][27] = [30, "Scard Grove", "Scard_Grove"];
    B[17][27] = [
      15,
      "St Matthew's Hospital",
      "St._Matthew%27s_Hospital_%28Gatcombeton%29",
    ];
    B[18][27] = [
      27,
      "Pedel Avenue Railway Station",
      "Pedel_Avenue_Railway_Station",
    ];
    B[19][27] = [18, "Glass Library", "Glass_Library"];
    B[10][28] = [11, "Club Henley", "Club_Henley"];
    B[11][28] = [21, "Clack Monument", "The_Clack_Monument"];
    B[12][28] = [30, "Hagger Way", "Hagger_Way_%28Gatcombeton%29"];
    B[13][28] = [30, "Tillard Street", "Tillard_Street"];
    B[14][28] = [17, "Junkyard", "Junkyard_28%2C14"];
    B[15][28] = [17, "Junkyard", "Junkyard_28%2C15"];
    B[16][28] = [30, "Smyth Boulevard", "Smyth_Boulevard"];
    B[17][28] = [24, "Blabey Park", "Blabey_Park"];
    B[18][28] = [30, "Spekington Drive", "Spekington_Drive"];
    B[19][28] = [
      9,
      "St John's Church",
      "St._John%27s_Church_%28Gatcombeton%29",
    ];
    B[10][29] = [15, "Theodore General Hospital", "Theodore_General_Hospital"];
    B[11][29] = [33, "Wasteland", "Wasteland_29%2C11"];
    B[12][29] = [22, "Gulledge Museum", "The_Gulledge_Museum"];
    B[13][29] = [
      9,
      "St Silverius's Church",
      "St._Silverius%27s_Church_%28Gatcombeton%29",
    ];
    B[14][29] = [
      25,
      "Boorman Way Police Dept",
      "Boorman_Way_Police_Department",
    ];
    B[15][29] = [11, "Club Hallson", "Club_Hallson"];
    B[16][29] = [33, "Wasteland", "Wasteland_29%2C16"];
    B[17][29] = [30, "Brocklesby Boulevard", "Brocklesby_Boulevard"];
    B[18][29] = [10, "Warrne Cinema", "Warrne_Cinema"];
    B[19][29] = [33, "Wasteland", "Wasteland_29%2C19"];

    // ------------------------------------------------
    // West Becktown
    // ------------------------------------------------
    B[10][30] = [24, "Milard Park", "Milard_Park"];
    B[11][30] = [31, "Aplin Towers", "Aplin_Towers"];
    B[12][30] = [12, "Factory", "Factory_30%2C12"];
    B[13][30] = [33, "Wasteland", "Wasteland_30%2C13"];
    B[14][30] = [18, "Hain Library", "Hain_Library"];
    B[15][30] = [22, "Talbot Museum", "The_Talbot_Museum"];
    B[16][30] = [4, "Garmston Bank", "Garmston_Bank"];
    B[17][30] = [2, "McDonnell Arms", "The_McDonnell_Arms"];
    B[18][30] = [23, "Frappell Building", "The_Frappell_Building"];
    B[19][30] = [30, "Mounter Avenue", "Mounter_Avenue"];
    B[10][31] = [12, "Factory", "Factory_31%2C10"];
    B[11][31] = [30, "Barton Avenue", "Barton_Avenue"];
    B[12][31] = [
      27,
      "Newis Drive Railway Station",
      "Newis_Drive_Railway_Station",
    ];
    B[13][31] = [31, "Applin Towers", "Applin_Towers"];
    B[14][31] = [33, "Wasteland", "Wasteland_31%2C14"];
    B[15][31] = [12, "Factory", "Factory_31%2C15"];
    B[16][31] = [16, "Keats Hotel", "The_Keats_Hotel"];
    B[17][31] = [
      27,
      "Wooman Avenue Railway Station",
      "Wooman_Avenue_Railway_Station",
    ];
    B[18][31] = [30, "Riden Avenue", "Riden_Avenue"];
    B[19][31] = [9, "St Marcellus's Church", "St._Marcellus%27s_Church"];
    B[10][32] = [24, "Chadwick Park", "Chadwick_Park"];
    B[11][32] = [
      27,
      "Reginaldus Square Railway Station",
      "Reginaldus_Square_Railway_Station",
    ];
    B[12][32] = [
      25,
      "Merchant Crescent Police Dept",
      "Merchant_Crescent_Police_Department",
    ];
    B[13][32] = [17, "Junkyard", "Junkyard_32%2C13"];
    B[14][32] = [30, "Upsdale Plaza", "Upsdale_Plaza"];
    B[15][32] = [22, "Legg Museum", "The_Legg_Museum"];
    B[16][32] = [5, "Cope Building", "The_Cope_Building_%28Shuttlebank%29"];
    B[17][32] = [33, "Wasteland", "Wasteland_32%2C17"];
    B[18][32] = [
      27,
      "Underwood Street Railway Station",
      "Underwood_Street_Railway_Station",
    ];
    B[19][32] = [24, "Fishwick Park", "Fishwick_Park"];
    B[10][33] = [10, "Holly Cinema", "Holly_Cinema"];
    B[11][33] = [30, "Fooks Lane", "Fooks_Lane"];
    B[12][33] = [30, "Dalzell Square", "Dalzell_Square"];
    B[13][33] = [24, "Fedden Park", "Fedden_Park"];
    B[14][33] = [30, "Banton Lane", "Banton_Lane"];
    B[15][33] = [23, "Marfell Building", "The_Marfell_Building"];
    B[16][33] = [
      25,
      "Besly Avenue Police Dept",
      "Besly_Avenue_Police_Department",
    ];
    B[17][33] = [30, "Boddy Place", "Boddy_Place"];
    B[18][33] = [30, "Catton Square", "Catton_Square"];
    B[19][33] = [31, "Obern Towers", "Obern_Towers_%28Shuttlebank%29"];
    B[10][34] = [16, "Cholmondeley Hotel", "The_Cholmondeley_Hotel"];
    B[11][34] = [30, "Vagg Road", "Vagg_Road"];
    B[12][34] = [11, "Club Cust", "Club_Cust"];
    B[13][34] = [30, "Gready Street", "Gready_Street"];
    B[14][34] = [30, "Killinger Walk", "Killinger_Walk_%28Shuttlebank%29"];
    B[15][34] = [30, "Look Road", "Look_Road"];
    B[16][34] = [15, "Fabian General Hospital", "Fabian_General_Hospital"];
    B[17][34] = [11, "Club Brookeman", "Club_Brookeman"];
    B[18][34] = [30, "Caudwell Road", "Caudwell_Road"];
    B[19][34] = [30, "Tennear Lane", "Tennear_Lane_%28Shuttlebank%29"];
    B[10][35] = [
      30,
      "Merryweather Plaza",
      "Merryweather_Plaza_%28Shuttlebank%29",
    ];
    B[11][35] = [30, "Baillie Square", "Baillie_Square"];
    B[12][35] = [30, "Cobden Way", "Cobden_Way"];
    B[13][35] = [30, "Sampson Lane", "Sampson_Lane"];
    B[14][35] = [22, "Darknell Museum", "The_Darknell_Museum"];
    B[15][35] = [
      27,
      "Bu Crescent Railway Station",
      "Bu_Crescent_Railway_Station",
    ];
    B[16][35] = [5, "Buckrell Building", "The_Buckrell_Building"];
    B[17][35] = [25, "Wild Walk Police Dept", "Wild_Walk_Police_Department"];
    B[18][35] = [30, "Rollason Crescent", "Rollason_Crescent"];
    B[19][35] = [
      27,
      "Ayliffe Row Railway Station",
      "Ayliffe_Row_Railway_Station",
    ];
    B[10][36] = [
      25,
      "Lock Boulevard Police Dept",
      "Lock_Boulevard_Police_Department",
    ];
    B[11][36] = [30, "Vivian Walk", "Vivian_Walk"];
    B[12][36] = [
      9,
      "St Piran's Church",
      "St._Piran%27s_Church_%28Shuttlebank%29",
    ];
    B[13][36] = [8, "Cemetery", "Cemetery_36%2C13"];
    B[14][36] = [30, "Thair Place", "Thair_Place"];
    B[15][36] = [12, "Factory", "Factory_36%2C15"];
    B[16][36] = [
      25,
      "William Avenue Police Dept",
      "William_Avenue_Police_Department",
    ];
    B[17][36] = [30, "Drake Walk", "Drake_Walk"];
    B[18][36] = [13, "Bubcar Road Fire Station", "Bubcar_Road_Fire_Station"];
    B[19][36] = [30, "Temperley Drive", "Temperley_Drive"];
    B[10][37] = [4, "Borrows Bank", "Borrows_Bank"];
    B[11][37] = [30, "Stringfellow Plaza", "Stringfellow_Plaza"];
    B[12][37] = [
      13,
      "Perrie Square Fire Station",
      "Perrie_Square_Fire_Station",
    ];
    B[13][37] = [11, "Club Roles", "Club_Roles"];
    B[14][37] = [32, "Warehouse", "Warehouse_37%2C14"];
    B[15][37] = [18, "Obern Library", "Obern_Library"];
    B[16][37] = [11, "Club Haber", "Club_Haber"];
    B[17][37] = [30, "Naish Square", "Naish_Square"];
    B[18][37] = [30, "Adler Crescent", "Adler_Crescent"];
    B[19][37] = [5, "Blyth Building", "The_Blyth_Building"];
    B[10][38] = [13, "Berrow Road Fire Station", "Berrow_Road_Fire_Station"];
    B[11][38] = [28, "Dennett Walk School", "Dennett_Walk_School"];
    B[12][38] = [30, "Wheare Boulevard", "Wheare_Boulevard_%28Shuttlebank%29"];
    B[13][38] = [31, "Saywell Towers", "Saywell_Towers"];
    B[14][38] = [30, "Ayliffe Drive", "Ayliffe_Drive"];
    B[15][38] = [25, "Kevern Row Police Dept", "Kevern_Row_Police_Department"];
    B[16][38] = [22, "Stoodely Museum", "The_Stoodely_Museum"];
    B[17][38] = [5, "Pattemore Building", "The_Pattemore_Building"];
    B[18][38] = [23, "Godden Building", "The_Godden_Building"];
    B[19][38] = [31, "Vezard Towers", "Vezard_Towers"];
    B[10][39] = [4, "Norris Bank", "Norris_Bank"];
    B[11][39] = [33, "Wasteland", "Wasteland_39%2C11"];
    B[12][39] = [17, "Junkyard", "Junkyard_39%2C12"];
    B[13][39] = [24, "Morrow Park", "Morrow_Park"];
    B[14][39] = [30, "Poulet Place", "Poulet_Place"];
    B[15][39] = [30, "Budden Street", "Budden_Street"];
    B[16][39] = [17, "Junkyard", "Junkyard_39%2C16"];
    B[17][39] = [30, "MacCarthy Square", "MacCarthy_Square"];
    B[18][39] = [6, "Carpark", "Carpark_39%2C18"];
    B[19][39] = [17, "Junkyard", "Junkyard_39%2C19"];

    // ------------------------------------------------
    // Molebank
    // ------------------------------------------------
    B[10][40] = [22, "Innalls Museum", "The_Innalls_Museum"];
    B[11][40] = [
      9,
      "St Celestine's Church",
      "St._Celestine%27s_Church_%28Yagoton%29",
    ];
    B[12][40] = [8, "Cemetery", "Cemetery_40%2C12"];
    B[13][40] = [30, "Deverell Walk", "Deverell_Walk"];
    B[14][40] = [2, "Hampton Arms", "The_Hampton_Arms"];
    B[15][40] = [31, "Pittey Towers", "Pittey_Towers"];
    B[16][40] = [11, "Club Taviner", "Club_Taviner"];
    B[17][40] = [30, "Fray Alley", "Fray_Alley"];
    B[18][40] = [30, "Goodfellow Boulevard", "Goodfellow_Boulevard"];
    B[19][40] = [21, "Rostron Monument", "The_Rostron_Monument"];
    B[10][41] = [30, "Band Square", "Band_Square"];
    B[11][41] = [11, "Club Botting", "Club_Botting"];
    B[12][41] = [30, "Harkness Street", "Harkness_Street"];
    B[13][41] = [32, "Warehouse", "Warehouse_41%2C13"];
    B[14][41] = [28, "Hambridge Alley School", "Hambridge_Alley_School"];
    B[15][41] = [11, "Club Dallimore", "Club_Dallimore"];
    B[16][41] = [
      15,
      "Catherine General Hospital",
      "Catherine_General_Hospital_%28Yagoton%29",
    ];
    B[17][41] = [21, "Sambone Monument", "The_Sambone_Monument"];
    B[18][41] = [13, "Faber Lane Fire Station", "Faber_Lane_Fire_Station"];
    B[19][41] = [3, "Tyson Auto Repair", "Tyson_Auto_Repair"];
    B[10][42] = [
      9,
      "St Spyridon's Church",
      "St._Spyridon%27s_Church_%28Yagoton%29",
    ];
    B[11][42] = [5, "Surridge Building", "The_Surridge_Building"];
    B[12][42] = [23, "Style Building", "The_Style_Building"];
    B[13][42] = [30, "Birfutt Walk", "Birfutt_Walk"];
    B[14][42] = [30, "Cator Drive", "Cator_Drive_%28Yagoton%29"];
    B[15][42] = [30, "Peterken Grove", "Peterken_Grove"];
    B[16][42] = [30, "Collins Avenue", "Collins_Avenue"];
    B[17][42] = [
      25,
      "Holsgrove Row Police Dept",
      "Holsgrove_Row_Police_Department",
    ];
    B[18][42] = [9, "St Godric's Church", "St._Godric%27s_Church"];
    B[19][42] = [11, "Club Nanning", "Club_Nanning"];
    B[10][43] = [19, "Bale Mall", "Bale_Mall"];
    B[11][43] = [30, "Orders Street", "Orders_Street"];
    B[12][43] = [32, "Warehouse", "Warehouse_43%2C12"];
    B[13][43] = [30, "Wallen Alley", "Wallen_Alley"];
    B[14][43] = [30, "Hume Walk", "Hume_Walk"];
    B[15][43] = [5, "Garnsey Building", "The_Garnsey_Building"];
    B[16][43] = [3, "Pippen Auto Repair", "Pippen_Auto_Repair"];
    B[17][43] = [11, "Club Basson", "Club_Basson"];
    B[18][43] = [8, "Cemetery", "Cemetery_43%2C18"];
    B[19][43] = [5, "Godolphin Building", "The_Godolphin_Building"];
    B[10][44] = [19, "Bale Mall", "Bale_Mall"];
    B[11][44] = [17, "Junkyard", "Junkyard_44%2C11"];
    B[12][44] = [32, "Warehouse", "Warehouse_44%2C12"];
    B[13][44] = [6, "Carpark", "Carpark_44%2C13"];
    B[14][44] = [33, "Wasteland", "Wasteland_44%2C14"];
    B[15][44] = [
      25,
      "Hinks Crescent Police Dept",
      "Hinks_Crescent_Police_Department",
    ];
    B[16][44] = [30, "Littlehales Road", "Littlehales_Road"];
    B[17][44] = [28, "Thresh Grove School", "Thresh_Grove_School"];
    B[18][44] = [32, "Warehouse", "Warehouse_44%2C18"];
    B[19][44] = [10, "Caseley Cinema", "Caseley_Cinema"];
    B[10][45] = [22, "Dawbin Museum", "The_Dawbin_Museum"];
    B[11][45] = [30, "Bolwell Walk", "Bolwell_Walk"];
    B[12][45] = [32, "Warehouse", "Warehouse_45%2C12"];
    B[13][45] = [30, "Shippard Walk", "Shippard_Walk"];
    B[14][45] = [32, "Warehouse", "Warehouse_45%2C14"];
    B[15][45] = [32, "Warehouse", "Warehouse_45%2C15"];
    B[16][45] = [23, "Whatmore Building", "The_Whatmore_Building"];
    B[17][45] = [
      9,
      "St Swithun's Church",
      "St._Swithun%27s_Church_%28Yagoton%29",
    ];
    B[18][45] = [8, "Cemetery", "Cemetery_45%2C18"];
    B[19][45] = [17, "Junkyard", "Junkyard_45%2C19"];
    B[10][46] = [24, "Boyes Park", "Boyes_Park"];
    B[11][46] = [12, "Factory", "Factory_46%2C11"];
    B[12][46] = [30, "Bergman Square", "Bergman_Square_%28Yagoton%29"];
    B[13][46] = [31, "Workman Towers", "Workman_Towers"];
    B[14][46] = [30, "Tazewell Walk", "Tazewell_Walk"];
    B[15][46] = [30, "Goodfellow Way", "Goodfellow_Way"];
    B[16][46] = [5, "Garrett Building", "The_Garrett_Building"];
    B[17][46] = [30, "Beckley Walk", "Beckley_Walk"];
    B[18][46] = [30, "Baillie Walk", "Baillie_Walk"];
    B[19][46] = [30, "Hanlon Square", "Hanlon_Square"];
    B[10][47] = [3, "Ainslie Auto Repair", "Ainslie_Auto_Repair"];
    B[11][47] = [2, "Beckey Arms", "The_Beckey_Arms"];
    B[12][47] = [31, "Willmington Towers", "Willmington_Towers"];
    B[13][47] = [30, "Hockey Way", "Hockey_Way"];
    B[14][47] = [24, "Childs Park", "Childs_Park"];
    B[15][47] = [30, "Garner Row", "Garner_Row"];
    B[16][47] = [10, "Edgerton Cinema", "Edgerton_Cinema"];
    B[17][47] = [30, "Tinkler Street", "Tinkler_Street"];
    B[18][47] = [11, "Club McClean", "Club_McClean"];
    B[19][47] = [2, "Humpfries Arms", "The_Humpfries_Arms_%28Yagoton%29"];
    B[10][48] = [
      27,
      "Dorrington Road Railway Station",
      "Dorrington_Road_Railway_Station",
    ];
    B[11][48] = [
      25,
      "Moorhouse Place Police Dept",
      "Moorhouse_Place_Police_Department",
    ];
    B[12][48] = [30, "Purcell Avenue", "Purcell_Avenue"];
    B[13][48] = [10, "Wilmington Cinema", "Wilmington_Cinema"];
    B[14][48] = [31, "Pantling Towers", "Pantling_Towers"];
    B[15][48] = [32, "Warehouse", "Warehouse_48%2C15"];
    B[16][48] = [21, "Toller Monument", "The_Toller_Monument"];
    B[17][48] = [9, "St Hugh's Church", "St._Hugh%27s_Church"];
    B[18][48] = [30, "Gatchell Alley", "Gatchell_Alley"];
    B[19][48] = [30, "Sliney Row", "Sliney_Row"];
    B[10][49] = [12, "Factory", "Factory_49%2C10"];
    B[11][49] = [16, "Eatwell Hotel", "The_Eatwell_Hotel"];
    B[12][49] = [28, "Milnerr Crescent School", "Milnerr_Crescent_School"];
    B[13][49] = [17, "Junkyard", "Junkyard_49%2C13"];
    B[14][49] = [9, "St Alexander's Church", "St._Alexander%27s_Church"];
    B[15][49] = [30, "Creeber Drive", "Creeber_Drive"];
    B[16][49] = [
      25,
      "Newbould Place Police Dept",
      "Newbould_Place_Police_Department",
    ];
    B[17][49] = [18, "Rounsefell Library", "Rounsefell_Library"];
    B[18][49] = [23, "Serrell Building", "The_Serrell_Building"];
    B[19][49] = [5, "Tincknell Building", "The_Tincknell_Building"];

    // ------------------------------------------------
    // Reganbank
    // ------------------------------------------------
    B[10][50] = [30, "Ames Row", "Ames_Row"];
    B[11][50] = [30, "Vauden Road", "Vauden_Road"];
    B[12][50] = [12, "Factory", "Factory_50%2C12"];
    B[13][50] = [5, "Combs Building", "The_Combs_Building"];
    B[14][50] = [8, "Cemetery", "Cemetery_50%2C14"];
    B[15][50] = [17, "Junkyard", "Junkyard_50%2C15"];
    B[16][50] = [33, "Wasteland", "Wasteland_50%2C16"];
    B[17][50] = [30, "Alaway Place", "Alaway_Place"];
    B[18][50] = [32, "Warehouse", "Warehouse_50%2C18"];
    B[19][50] = [30, "Pester Way", "Pester_Way"];
    B[10][51] = [30, "Helliar Alley", "Helliar_Alley"];
    B[11][51] = [12, "Factory", "Factory_51%2C11"];
    B[12][51] = [17, "Junkyard", "Junkyard_51%2C12"];
    B[13][51] = [30, "Empson Lane", "Empson_Lane"];
    B[14][51] = [12, "Factory", "Factory_51%2C14"];
    B[15][51] = [33, "Wasteland", "Wasteland_51%2C15"];
    B[16][51] = [11, "Club Hinge", "Club_Hinge"];
    B[17][51] = [30, "Noonan Avenue", "Noonan_Avenue"];
    B[18][51] = [31, "Digby Towers", "Digby_Towers"];
    B[19][51] = [30, "Berners Square", "Berners_Square"];
    B[10][52] = [
      27,
      "Elkins Plaza Railway Station",
      "Elkins_Plaza_Railway_Station",
    ];
    B[11][52] = [5, "Bumbrough Building", "The_Bumbrough_Building"];
    B[12][52] = [30, "Nestle Way", "Nestle_Way"];
    B[13][52] = [30, "Walmsley Lane", "Walmsley_Lane_%28Millen_Hills%29"];
    B[14][52] = [12, "Factory", "Factory_52%2C14"];
    B[15][52] = [30, "Mallows Walk", "Mallows_Walk"];
    B[16][52] = [31, "Winsloe Towers", "Winsloe_Towers"];
    B[17][52] = [30, "Cole Avenue", "Cole_Avenue"];
    B[18][52] = [18, "Bodd Library", "Bodd_Library"];
    B[19][52] = [30, "Phillipps Row", "Phillipps_Row"];
    B[10][53] = [22, "Harris Museum", "The_Harris_Museum"];
    B[11][53] = [12, "Factory", "Factory_53%2C11"];
    B[12][53] = [30, "Vines Place", "Vines_Place"];
    B[13][53] = [11, "Club Groom", "Club_Groom"];
    B[14][53] = [32, "Warehouse", "Warehouse_53%2C14"];
    B[15][53] = [30, "Harford Avenue", "Harford_Avenue"];
    B[16][53] = [28, "Ferrington Way School", "Ferrington_Way_School"];
    B[17][53] = [24, "Henslowe Park", "Henslowe_Park_%28Millen_Hills%29"];
    B[18][53] = [30, "Southerwood Square", "Southerwood_Square"];
    B[19][53] = [5, "Hitchcock Building", "The_Hitchcock_Building"];
    B[10][54] = [15, "St Dionysius's Hospital", "St._Dionysius%27s_Hospital"];
    B[11][54] = [
      25,
      "Powlett Road Police Dept",
      "Powlett_Road_Police_Department",
    ];
    B[12][54] = [30, "Ridyard Plaza", "Ridyard_Plaza"];
    B[13][54] = [21, "Holborn Monument", "The_Holborn_Monument"];
    B[14][54] = [16, "Markes Hotel", "The_Markes_Hotel"];
    B[15][54] = [
      25,
      "Retallick Walk Police Dept",
      "Retallick_Walk_Police_Department",
    ];
    B[16][54] = [30, "Hector Square", "Hector_Square"];
    B[17][54] = [30, "Tatchell Way", "Tatchell_Way"];
    B[18][54] = [10, "Garnsey Cinema", "Garnsey_Cinema"];
    B[19][54] = [23, "Hawksley Building", "The_Hawksley_Building"];
    B[10][55] = [12, "Factory", "Factory_55%2C10"];
    B[11][55] = [5, "Rowe Building", "The_Rowe_Building"];
    B[12][55] = [2, "Talbott Arms", "The_Talbott_Arms"];
    B[13][55] = [23, "Saint Building", "The_Saint_Building"];
    B[14][55] = [3, "Restrick Auto Repair", "Restrick_Auto_Repair"];
    B[15][55] = [30, "Burman Street", "Burman_Street"];
    B[16][55] = [31, "Smith Towers", "Smith_Towers"];
    B[17][55] = [23, "Muller Building", "The_Muller_Building"];
    B[18][55] = [30, "Donnan Drive", "Donnan_Drive"];
    B[19][55] = [28, "Prouse Avenue School", "Prouse_Avenue_School"];
    B[10][56] = [5, "Odingsells Building", "The_Odingsells_Building"];
    B[11][56] = [30, "Hoby Walk", "Hoby_Walk"];
    B[12][56] = [2, "Mewburn Arms", "The_Mewburn_Arms"];
    B[13][56] = [11, "Club Spirod", "Club_Spirod"];
    B[14][56] = [
      5,
      "Prangnell Building",
      "The_Prangnell_Building_%28Millen_Hills%29",
    ];
    B[15][56] = [23, "Jeffrey Building", "The_Jeffrey_Building"];
    B[16][56] = [30, "Barford Way", "Barford_Way"];
    B[17][56] = [30, "Hind Grove", "Hind_Grove"];
    B[18][56] = [30, "Bayley Lane", "Bayley_Lane"];
    B[19][56] = [6, "Carpark", "Carpark_56%2C19"];
    B[10][57] = [4, "Bide Bank", "Bide_Bank"];
    B[11][57] = [30, "Faulkner Way", "Faulkner_Way"];
    B[12][57] = [30, "Chicke Walk", "Chicke_Walk"];
    B[13][57] = [16, "Leggatt Hotel", "The_Leggatt_Hotel"];
    B[14][57] = [5, "Arch Building", "The_Arch_Building"];
    B[15][57] = [25, "Doe Avenue Police Dept", "Doe_Avenue_Police_Department"];
    B[16][57] = [9, "St William's Church", "St._William%27s_Church"];
    B[17][57] = [31, "Urben Towers", "Urben_Towers"];
    B[18][57] = [30, "Wilks Road", "Wilks_Road"];
    B[19][57] = [30, "Voules Road", "Voules_Road"];
    B[10][58] = [30, "Dawes Street", "Dawes_Street"];
    B[11][58] = [21, "Stoward Monument", "The_Stoward_Monument"];
    B[12][58] = [4, "Cavendish Bank", "Cavendish_Bank"];
    B[13][58] = [30, "Grenville Street", "Grenville_Street"];
    B[14][58] = [6, "Carpark", "Carpark_58%2C14"];
    B[15][58] = [
      5,
      "Prankerd Building",
      "The_Prankerd_Building_%28Millen_Hills%29",
    ];
    B[16][58] = [30, "Horner Way", "Horner_Way"];
    B[17][58] = [24, "Puckard Park", "Puckard_Park"];
    B[18][58] = [30, "Ingham Avenue", "Ingham_Avenue"];
    B[19][58] = [22, "Teasdale Museum", "The_Teasdale_Museum"];
    B[10][59] = [23, "Lazenbury Building", "The_Lazenbury_Building"];
    B[11][59] = [
      25,
      "Pinchen Road Police Dept",
      "Pinchen_Road_Police_Department",
    ];
    B[12][59] = [30, "Prigg Alley", "Prigg_Alley_%28Millen_Hills%29"];
    B[13][59] = [30, "Carse Street", "Carse_Street"];
    B[14][59] = [30, "Sanderson Plaza", "Sanderson_Plaza"];
    B[15][59] = [10, "Baggs Cinema", "Baggs_Cinema"];
    B[16][59] = [33, "Wasteland", "Wasteland_59%2C16"];
    B[17][59] = [2, "Henning Arms", "The_Henning_Arms"];
    B[18][59] = [30, "Poulet Grove", "Poulet_Grove_%28Millen_Hills%29"];
    B[19][59] = [6, "Carpark", "Carpark_59%2C19"];

    // ------------------------------------------------
    // Mornington
    // ------------------------------------------------
    B[10][60] = [28, "Mander Plaza School", "Mander_Plaza_School"];
    B[11][60] = [30, "Holway Crescent", "Holway_Crescent"];
    B[12][60] = [
      9,
      "St Athanasius's Church",
      "St._Athanasius%27s_Church_%28Raines Hills%29",
    ];
    B[13][60] = [
      9,
      "St Irenaeus's Church",
      "St._Irenaeus%27s_Church_%28Raines Hills%29",
    ];
    B[14][60] = [5, "Cummings Building", "The_Cummings_Building"];
    B[15][60] = [2, "Stollery Arms", "The_Stollery_Arms"];
    B[16][60] = [30, "Higgins Place", "Higgins_Place"];
    B[17][60] = [
      25,
      "Sheehan Lane Police Dept",
      "Sheehan_Lane_Police_Department",
    ];
    B[18][60] = [11, "Club Jeffreys", "Club_Jeffreys"];
    B[19][60] = [3, "Ramsey Auto Repair", "Ramsey_Auto_Repair"];
    B[10][61] = [16, "Hoddinott Motel", "The_Hoddinott_Motel"];
    B[11][61] = [30, "Elwes Drive", "Elwes_Drive"];
    B[12][61] = [30, "Mussabini Square", "Mussabini_Square"];
    B[13][61] = [
      9,
      "St Irenaeus's Church",
      "St._Irenaeus%27s_Church_%28Raines Hills%29",
    ];
    B[14][61] = [30, "Farthing Way", "Farthing_Way"];
    B[15][61] = [12, "Factory", "Factory_61%2C15"];
    B[16][61] = [11, "Club Collyer", "Club_Collyer"];
    B[17][61] = [2, "Pitcher Arms", "The_Pitcher_Arms"];
    B[18][61] = [
      27,
      "Peaty Avenue Railway Station",
      "Peaty_Avenue_Railway_Station",
    ];
    B[19][61] = [30, "Rousell Plaza", "Rousell_Plaza"];
    B[10][62] = [23, "Morgane Building", "The_Morgane_Building"];
    B[11][62] = [15, "St Henry's Hospital", "St._Henry%27s_Hospital"];
    B[12][62] = [23, "Harnett Building", "The_Harnett_Building"];
    B[13][62] = [
      9,
      "St Juan's Church",
      "St._Juan%27s_Church_%28Raines Hills%29",
    ];
    B[14][62] = [11, "Club Markey", "Club_Markey"];
    B[15][62] = [5, "Bertrand Building", "The_Bertrand_Building"];
    B[16][62] = [30, "Willmot Place", "Willmot_Place"];
    B[17][62] = [30, "Fruin Alley", "Fruin_Alley"];
    B[18][62] = [30, "Tabor Plaza", "Tabor_Plaza"];
    B[19][62] = [4, "Norie Bank", "Norie_Bank"];
    B[10][63] = [5, "Toop Building", "The_Toop_Building"];
    B[11][63] = [13, "Skarin Way Fire Station", "Skarin_Way_Fire_Station"];
    B[12][63] = [24, "Bares Park", "Bares_Park"];
    B[13][63] = [5, "Mansbridge Building", "The_Mansbridge_Building"];
    B[14][63] = [5, "Vacher Building", "The_Vacher_Building"];
    B[15][63] = [30, "Minchinton Alley", "Minchinton_Alley"];
    B[16][63] = [4, "Donegan Bank", "Donegan_Bank"];
    B[17][63] = [30, "Wey Row", "Wey_Row_%28Raines_Hills%29"];
    B[18][63] = [30, "Bastard Street", "Bastard_Street"];
    B[19][63] = [5, "Fildes Building", "The_Fildes_Building"];
    B[10][64] = [
      9,
      "St Anastasius's Church",
      "St._Anastasius%27s_Church_%28Raines Hills%29",
    ];
    B[11][64] = [2, "Sawday Arms", "The_Sawday_Arms"];
    B[12][64] = [33, "Wasteland", "Wasteland_64%2C12"];
    B[13][64] = [23, "Goldsworthy Building", "The_Goldsworthy_Building"];
    B[14][64] = [33, "Wasteland", "Wasteland_64%2C14"];
    B[15][64] = [10, "Moncrieffe Cinema", "Moncrieffe_Cinema"];
    B[16][64] = [30, "Pashen Way", "Pashen_Way"];
    B[17][64] = [30, "Sherwen Crescent", "Sherwen_Crescent"];
    B[18][64] = [
      5,
      "Hebditch Building",
      "The_Hebditch_Building_%28Raines_Hills%29",
    ];
    B[19][64] = [4, "Templeton Bank", "Templeton_Bank"];
    B[10][65] = [
      13,
      "Barling Boulevard Fire Station",
      "Barling_Boulevard_Fire_Station",
    ];
    B[11][65] = [21, "Marshall Monument", "The_Marshall_Monument"];
    B[12][65] = [
      9,
      "St Paul's Church",
      "St._Paul%27s_Church_%28Raines Hills%29",
    ];
    B[13][65] = [28, "Headford Way School", "Headford_Way_School"];
    B[14][65] = [22, "Hasell Museum", "The_Hasell_Museum"];
    B[15][65] = [
      9,
      "St Romuald's Church",
      "St._Romuald%27s_Church_%28Raines Hills%29",
    ];
    B[16][65] = [18, "Webb Library", "Webb_Library"];
    B[17][65] = [23, "Halay Building", "The_Halay_Building"];
    B[18][65] = [30, "Tindell Walk", "Tindell_Walk"];
    B[19][65] = [30, "Steed Crescent", "Steed_Crescent"];
    B[10][66] = [30, "Harbin Square", "Harbin_Square"];
    B[11][66] = [31, "Haggard Towers", "Haggard_Towers"];
    B[12][66] = [18, "Southall Library", "Southall_Library"];
    B[13][66] = [8, "Cemetery", "Cemetery_66%2C13"];
    B[14][66] = [12, "Factory", "Factory_66%2C14"];
    B[15][66] = [30, "Dunk Avenue", "Dunk_Avenue"];
    B[16][66] = [23, "Jack Building", "The_Jack_Building"];
    B[17][66] = [22, "Dudridge Museum", "The_Dudridge_Museum"];
    B[18][66] = [
      13,
      "Chibbett Lane Fire Station",
      "Chibbett_Lane_Fire_Station",
    ];
    B[19][66] = [
      27,
      "Meads Walk Railway Station",
      "Meads_Walk_Railway_Station",
    ];
    B[10][67] = [
      25,
      "Orders Crescent Police Dept",
      "Orders_Crescent_Police_Department",
    ];
    B[11][67] = [30, "Dimmock Square", "Dimmock_Square"];
    B[12][67] = [31, "Lovibond Towers", "Lovibond_Towers"];
    B[13][67] = [
      9,
      "St Mary's Church",
      "St._Mary%27s_Church_%28Raines Hills%29",
    ];
    B[14][67] = [30, "Bant Lane", "Bant_Lane"];
    B[15][67] = [5, "Heale Building", "The_Heale_Building"];
    B[16][67] = [30, "Rowlings Row", "Rowlings_Row"];
    B[17][67] = [30, "Freake Walk", "Freake_Walk"];
    B[18][67] = [3, "Brendon Auto Repair", "Brendon_Auto_Repair"];
    B[19][67] = [4, "Potts Bank", "Potts_Bank"];
    B[10][68] = [32, "Warehouse", "Warehouse_68%2C10"];
    B[11][68] = [11, "Club Bellam", "Club_Bellam"];
    B[12][68] = [6, "Carpark", "Carpark_68%2C12"];
    B[13][68] = [30, "Hanson Lane", "Hanson_Lane"];
    B[14][68] = [30, "Dullea Way", "Dullea_Way"];
    B[15][68] = [30, "Rollings Lane", "Rollings_Lane"];
    B[16][68] = [31, "Simper Towers", "Simper_Towers"];
    B[17][68] = [30, "Mees Walk", "Mees_Walk"];
    B[18][68] = [30, "Lyde Drive", "Lyde_Drive"];
    B[19][68] = [28, "Wetherell Row School", "Wetherell_Row_School"];
    B[10][69] = [15, "Abraham General Hospital", "Abraham_General_Hospital"];
    B[11][69] = [
      9,
      "St Paschal's Church",
      "St._Paschal%27s_Church_%28Raines Hills%29",
    ];
    B[12][69] = [
      13,
      "Birt Crescent Fire Station",
      "Birt_Crescent_Fire_Station",
    ];
    B[13][69] = [30, "Morrow Lane", "Morrow_Lane_%28Raines_Hills%29"];
    B[14][69] = [30, "Cambridge Walk", "Cambridge_Walk"];
    B[15][69] = [5, "Pattin Building", "The_Pattin_Building"];
    B[16][69] = [30, "Wootton Square", "Wootton_Square_%28Raines_Hills%29"];
    B[17][69] = [28, "Burch Road School", "Burch_Road_School"];
    B[18][69] = [6, "Carpark", "Carpark_69%2C18"];
    B[19][69] = [33, "Wasteland", "Wasteland_69%2C19"];

    // ------------------------------------------------
    // Wykewood
    // ------------------------------------------------
    B[10][70] = [22, "Peete Museum", "The_Peete_Museum"];
    B[11][70] = [8, "Cemetery", "Cemetery_70%2C11"];
    B[12][70] = [30, "Newbould Place", "Newbould_Place"];
    B[13][70] = [10, "McDonnell Cinema", "McDonnell_Cinema"];
    B[14][70] = [2, "Stewkely Arms", "The_Stewkely_Arms"];
    B[15][70] = [4, "Sharkey Bank", "Sharkey_Bank"];
    B[16][70] = [30, "Farrer Grove", "Farrer_Grove"];
    B[17][70] = [
      25,
      "Breeden Way Police Dept",
      "Breeden_Way_Police_Department",
    ];
    B[18][70] = [30, "Freke Square", "Freke_Square"];
    B[19][70] = [33, "Wasteland", "Wasteland_70%2C19"];
    B[10][71] = [30, "Westley Row", "Westley_Row"];
    B[11][71] = [2, "Spurrier Arms", "The_Spurrier_Arms"];
    B[12][71] = [30, "Tratham Place", "Tratham_Place"];
    B[13][71] = [32, "Warehouse", "Warehouse_71%2C13"];
    B[14][71] = [30, "Dyer Avenue", "Dyer_Avenue"];
    B[15][71] = [
      27,
      "Hardinge Row Railway Station",
      "Hardinge_Row_Railway_Station",
    ];
    B[16][71] = [2, "Trigg Arms", "The_Trigg_Arms"];
    B[17][71] = [4, "Coopey Bank", "Coopey_Bank"];
    B[18][71] = [10, "Balmain Cinema", "Balmain_Cinema"];
    B[19][71] = [11, "Club Riste", "Club_Riste"];
    B[10][72] = [33, "Wasteland", "Wasteland_72%2C10"];
    B[11][72] = [5, "Roynon Building", "The_Roynon_Building"];
    B[12][72] = [
      25,
      "Dungey Alley Police Dept",
      "Dungey_Alley_Police_Department",
    ];
    B[13][72] = [30, "Evelyn Square", "Evelyn_Square"];
    B[14][72] = [30, "Mellish Way", "Mellish_Way"];
    B[15][72] = [12, "Factory", "Factory_72%2C15"];
    B[16][72] = [
      23,
      "Woolven Building",
      "The_Woolven_Building_%28Pashenton%29",
    ];
    B[17][72] = [10, "Montagu Cinema", "Montagu_Cinema"];
    B[18][72] = [32, "Warehouse", "Warehouse_72%2C18"];
    B[19][72] = [30, "Mold Walk", "Mold_Walk"];
    B[10][73] = [32, "Warehouse", "Warehouse_73%2C10"];
    B[11][73] = [32, "Warehouse", "Warehouse_73%2C11"];
    B[12][73] = [33, "Wasteland", "Wasteland_73%2C12"];
    B[13][73] = [4, "Denbee Bank", "Denbee_Bank"];
    B[14][73] = [30, "Pincombe Grove", "Pincombe_Grove_%28Pashenton%29"];
    B[15][73] = [30, "Stringer Street", "Stringer_Street_%28Pashenton%29"];
    B[16][73] = [3, "Blaxall Auto Repair", "Blaxall_Auto_Repair"];
    B[17][73] = [12, "Factory", "Factory_73%2C17"];
    B[18][73] = [
      25,
      "Bagehot Way Police Dept",
      "Bagehot_Way_Police_Department",
    ];
    B[19][73] = [30, "Atthill Street", "Atthill_Street"];
    B[10][74] = [2, "Vickery Arms", "The_Vickery_Arms"];
    B[11][74] = [28, "Whitlock Boulevard School", "Whitlock_Boulevard_School"];
    B[12][74] = [
      27,
      "Sambone Walk Railway Station",
      "Sambone_Walk_Railway_Station",
    ];
    B[13][74] = [22, "Carew Museum", "The_Carew_Museum"];
    B[14][74] = [10, "Helland Cinema", "Helland_Cinema"];
    B[15][74] = [21, "Quinton Monument", "The_Quinton_Monument"];
    B[16][74] = [30, "Obern Plaza", "Obern_Plaza"];
    B[17][74] = [33, "Wasteland", "Wasteland_74%2C17"];
    B[18][74] = [9, "St Michael's Church", "St._Michael%27s_Church"];
    B[19][74] = [30, "Gambling Place", "Gambling_Place"];
    B[10][75] = [30, "Crudge Walk", "Crudge_Walk"];
    B[11][75] = [30, "Mays Way", "Mays_Way_%28Pashenton%29"];
    B[12][75] = [30, "Rodham Grove", "Rodham_Grove"];
    B[13][75] = [30, "Curtice Avenue", "Curtice_Avenue"];
    B[14][75] = [9, "St Mark's Church", "St._Mark%27s_Church_%28Pashenton%29"];
    B[15][75] = [30, "Bidgway Walk", "Bidgway_Walk"];
    B[16][75] = [2, "Peerless Arms", "The_Peerless_Arms"];
    B[17][75] = [33, "Wasteland", "Wasteland_75%2C17"];
    B[18][75] = [30, "Fynn Drive", "Fynn_Drive"];
    B[19][75] = [5, "Putt Building", "The_Putt_Building"];
    B[10][76] = [30, "Fleay Road", "Fleay_Road"];
    B[11][76] = [30, "Lacey Walk", "Lacey_Walk_%28Pashenton%29"];
    B[12][76] = [23, "Lance Building", "The_Lance_Building"];
    B[13][76] = [10, "Perrot Cinema", "Perrot_Cinema"];
    B[14][76] = [9, "St Luke's Church", "St._Luke%27s_Church_%28Pashenton%29"];
    B[15][76] = [33, "Wasteland", "Wasteland_76%2C15"];
    B[16][76] = [28, "Blatcher Lane School", "Blatcher_Lane_School"];
    B[17][76] = [30, "Holwell Avenue", "Holwell_Avenue"];
    B[18][76] = [30, "Ambrose Avenue", "Ambrose_Avenue"];
    B[19][76] = [12, "Factory", "Factory_76%2C19"];
    B[10][77] = [30, "Pask Way", "Pask_Way"];
    B[11][77] = [5, "Griffen Building", "The_Griffen_Building"];
    B[12][77] = [30, "Homer Street", "Homer_Street"];
    B[13][77] = [32, "Warehouse", "Warehouse_77%2C13"];
    B[14][77] = [18, "Mist Library", "Mist_Library"];
    B[15][77] = [30, "Marsh Alley", "Marsh_Alley"];
    B[16][77] = [30, "MacKenzie Place", "MacKenzie_Place"];
    B[17][77] = [30, "Sykes Boulevard", "Sykes_Boulevard"];
    B[18][77] = [30, "Birfutt Square", "Birfutt_Square"];
    B[19][77] = [32, "Warehouse", "Warehouse_77%2C19"];
    B[10][78] = [30, "Preddy Grove", "Preddy_Grove"];
    B[11][78] = [28, "Attrill Boulevard School", "Attrill_Boulevard_School"];
    B[12][78] = [16, "Lyman Motel", "The_Lyman_Motel"];
    B[13][78] = [
      13,
      "Cocker Boulevard Fire Station",
      "Cocker_Boulevard_Fire_Station",
    ];
    B[14][78] = [5, "Dickin Building", "The_Dickin_Building"];
    B[15][78] = [3, "Pillinger Auto Repair", "Pillinger_Auto_Repair"];
    B[16][78] = [5, "Mines Building", "The_Mines_Building"];
    B[17][78] = [24, "Goverd Park", "Goverd_Park"];
    B[18][78] = [5, "Egleton Building", "The_Egleton_Building"];
    B[19][78] = [4, "Walwyn Bank", "Walwyn_Bank"];
    B[10][79] = [22, "Lentill Museum", "The_Lentill_Museum"];
    B[11][79] = [6, "Carpark", "Carpark_79%2C11"];
    B[12][79] = [31, "Maiden Towers", "Maiden_Towers"];
    B[13][79] = [16, "Jacobi Hotel", "The_Jacobi_Hotel"];
    B[14][79] = [21, "Stanley Monument", "The_Stanley_Monument"];
    B[15][79] = [
      15,
      "St Seraphim's Hospital",
      "St._Seraphim%27s_Hospital_%28Pashenton%29",
    ];
    B[16][79] = [30, "Grove Boulevard", "Grove_Boulevard"];
    B[17][79] = [
      25,
      "Rawkins Row Police Dept",
      "Rawkins_Row_Police_Department",
    ];
    B[18][79] = [30, "Uttermare Grove", "Uttermare_Grove"];
    B[19][79] = [10, "Merryweather Cinema", "Merryweather_Cinema"];

    // ------------------------------------------------
    // Ruddlebank
    // ------------------------------------------------
    B[10][80] = [
      27,
      "Phillipps Grove Railway Station",
      "Phillipps_Grove_Railway_Station",
    ];
    B[11][80] = [30, "Bird Lane", "Bird_Lane"];
    B[12][80] = [24, "Horsford Park", "Horsford_Park"];
    B[13][80] = [31, "Sonven Towers", "Sonven_Towers"];
    B[14][80] = [30, "Whitlock Road", "Whitlock_Road"];
    B[15][80] = [
      9,
      "St Romuald's Church",
      "St._Romuald%27s_Church_%28Rolt_Heights%29",
    ];
    B[16][80] = [8, "Cemetery", "Cemetery_80%2C16"];
    B[17][80] = [30, "Salsbury Walk", "Salsbury_Walk"];
    B[18][80] = [
      9,
      "St Arnold's Church",
      "St._Arnold%27s_Church_%28Rolt_Heights%29",
    ];
    B[19][80] = [21, "Gold Monument", "The_Gold_Monument"];
    B[10][81] = [30, "Tennear Lane", "Tennear_Lane_%28Rolt_Heights%29"];
    B[11][81] = [12, "Factory", "Factory_81%2C11"];
    B[12][81] = [
      27,
      "Broadbent Plaza Railway Station",
      "Broadbent_Plaza_Railway_Station",
    ];
    B[13][81] = [30, "Dunsdon Lane", "Dunsdon_Lane"];
    B[14][81] = [30, "Vyse Crescent", "Vyse_Crescent"];
    B[15][81] = [30, "Collis Street", "Collis_Street"];
    B[16][81] = [33, "Wasteland", "Wasteland_81%2C16"];
    B[17][81] = [
      13,
      "Downs Boulevard Fire Station",
      "Downs_Boulevard_Fire_Station",
    ];
    B[18][81] = [8, "Cemetery", "Cemetery_81%2C18"];
    B[19][81] = [16, "Margesson Hotel", "The_Margesson_Hotel"];
    B[10][82] = [4, "Broke Bank", "Broke_Bank"];
    B[11][82] = [4, "Merchant Bank", "Merchant_Bank"];
    B[12][82] = [33, "Wasteland", "Wasteland_82%2C12"];
    B[13][82] = [17, "Junkyard", "Junkyard_82%2C13"];
    B[14][82] = [18, "Hartley Library", "Hartley_Library"];
    B[15][82] = [31, "Goodson Towers", "Goodson_Towers"];
    B[16][82] = [12, "Factory", "Factory_82%2C16"];
    B[17][82] = [
      25,
      "Ayliffe Street Police Dept",
      "Ayliffe_Street_Police_Department",
    ];
    B[18][82] = [30, "Hardy Row", "Hardy_Row"];
    B[19][82] = [12, "Factory", "Factory_82%2C19"];
    B[10][83] = [30, "Goringe Way", "Goringe_Way"];
    B[11][83] = [12, "Factory", "Factory_83%2C11"];
    B[12][83] = [6, "Carpark", "Carpark_83%2C12"];
    B[13][83] = [30, "Brewin Lane", "Brewin_Lane"];
    B[14][83] = [2, "Gummer Arms", "The_Gummer_Arms"];
    B[15][83] = [24, "Banfield Park", "Banfield_Park"];
    B[16][83] = [5, "Lanhdon Building", "The_Lanhdon_Building"];
    B[17][83] = [11, "Club Cosenes", "Club_Cosenes"];
    B[18][83] = [30, "Windle Crescent", "Windle_Crescent"];
    B[19][83] = [
      15,
      "Silverius General Hospital",
      "Silverius_General_Hospital",
    ];
    B[10][84] = [12, "Factory", "Factory_84%2C10"];
    B[11][84] = [24, "Scammell Park", "Scammell_Park"];
    B[12][84] = [18, "Cayley Library", "Cayley_Library"];
    B[13][84] = [30, "Brymer Avenue", "Brymer_Avenue"];
    B[14][84] = [
      27,
      "Kelloway Drive Railway Station",
      "Kelloway_Drive_Railway_Station",
    ];
    B[15][84] = [27, "Roles Way Railway Station", "Roles_Way_Railway_Station"];
    B[16][84] = [33, "Wasteland", "Wasteland_84%2C16"];
    B[17][84] = [18, "Bromilow Library", "Bromilow_Library"];
    B[18][84] = [22, "Riddell Museum", "The_Riddell_Museum"];
    B[19][84] = [10, "Fanning Cinema", "Fanning_Cinema"];
    B[10][85] = [6, "Carpark", "Carpark_85%2C10"];
    B[11][85] = [30, "Kerswill Street", "Kerswill_Street"];
    B[12][85] = [6, "Carpark", "Carpark_85%2C12"];
    B[13][85] = [18, "Baylie Library", "Baylie_Library"];
    B[14][85] = [18, "Bullor Library", "Bullor_Library"];
    B[15][85] = [31, "Mare Towers", "Mare_Towers"];
    B[16][85] = [11, "Club Brien", "Club_Brien"];
    B[17][85] = [28, "Horder Avenue School", "Horder_Avenue_School"];
    B[18][85] = [32, "Warehouse", "Warehouse_85%2C18"];
    B[19][85] = [
      27,
      "Gillman Road Railway Station",
      "Gillman_Road_Railway_Station",
    ];
    B[10][86] = [31, "Wray Towers", "Wray_Towers"];
    B[11][86] = [31, "Risdon Towers", "Risdon_Towers"];
    B[12][86] = [9, "St Anne's Church", "St._Anne%27s_Church"];
    B[13][86] = [33, "Wasteland", "Wasteland_86%2C13"];
    B[14][86] = [30, "Lugg Street", "Lugg_Street"];
    B[15][86] = [11, "Club Tompson", "Club_Tompson"];
    B[16][86] = [21, "Fevin Monument", "The_Fevin_Monument"];
    B[17][86] = [33, "Wasteland", "Wasteland_86%2C17"];
    B[18][86] = [30, "Copeland Alley", "Copeland_Alley"];
    B[19][86] = [5, "Gwinn Building", "The_Gwinn_Building"];
    B[10][87] = [30, "Eaves Drive", "Eaves_Drive"];
    B[11][87] = [30, "Powell Square", "Powell_Square"];
    B[12][87] = [9, "St Peter's Church", "St._Peter%27s_Church"];
    B[13][87] = [8, "Cemetery", "Cemetery_87%2C13"];
    B[14][87] = [2, "Batt Arms", "The_Batt_Arms"];
    B[15][87] = [11, "Club Webbe", "Club_Webbe"];
    B[16][87] = [30, "Rolls Avenue", "Rolls_Avenue"];
    B[17][87] = [6, "Carpark", "Carpark_87%2C17"];
    B[18][87] = [30, "Beele Walk", "Beele_Walk"];
    B[19][87] = [30, "Giverd Street", "Giverd_Street"];
    B[10][88] = [6, "Carpark", "Carpark_88%2C10"];
    B[11][88] = [32, "Warehouse", "Warehouse_88%2C11"];
    B[12][88] = [5, "McMurtrie Building", "The_McMurtrie_Building"];
    B[13][88] = [8, "Cemetery", "Cemetery_88%2C13"];
    B[14][88] = [3, "Lovell Auto Repair", "Lovell_Auto_Repair"];
    B[15][88] = [24, "Land Park", "Land_Park"];
    B[16][88] = [33, "Wasteland", "Wasteland_88%2C16"];
    B[17][88] = [32, "Warehouse", "Warehouse_88%2C17"];
    B[18][88] = [33, "Wasteland", "Wasteland_88%2C18"];
    B[19][88] = [2, "Snooke Arms", "The_Snooke_Arms"];
    B[10][89] = [30, "Dennehy Lane", "Dennehy_Lane"];
    B[11][89] = [30, "Cruickshank Square", "Cruickshank_Square"];
    B[12][89] = [
      25,
      "Younghusband Square Police Dept",
      "Younghusband_Square_Police_Department",
    ];
    B[13][89] = [33, "Wasteland", "Wasteland_89%2C13"];
    B[14][89] = [15, "St Herman's Hospital", "St._Herman%27s_Hospital"];
    B[15][89] = [17, "Junkyard", "Junkyard_89%2C15"];
    B[16][89] = [
      25,
      "Schreiber Drive Police Dept",
      "Schreiber_Drive_Police_Department",
    ];
    B[17][89] = [2, "Burchell Arms", "The_Burchell_Arms"];
    B[18][89] = [18, "Armstead Library", "Armstead_Library"];
    B[19][89] = [30, "Pettey Square", "Pettey_Square"];

    // ------------------------------------------------
    // Old Arkham
    // ------------------------------------------------
    B[10][90] = [30, "Dancey Alley", "Dancey_Alley"];
    B[11][90] = [22, "Backholer Museum", "The_Backholer_Museum"];
    B[12][90] = [28, "Chaffie Lane School", "Chaffie_Lane_School"];
    B[13][90] = [30, "Witherell Crescent", "Witherell_Crescent"];
    B[14][90] = [30, "Kempshaw Street", "Kempshaw_Street"];
    B[15][90] = [15, "St Ninian's Hospital", "St._Ninian%27s_Hospital"];
    B[16][90] = [12, "Factory", "Factory_90%2C16"];
    B[17][90] = [
      27,
      "Kitchingman Street Railway Station",
      "Kitchingman_Street_Railway_Station",
    ];
    B[18][90] = [30, "Morrhall Alley", "Morrhall_Alley"];
    B[19][90] = [
      9,
      "St Josephine's Church",
      "St._Josephine%27s_Church_%28Pescodside%29",
    ];
    B[10][91] = [13, "Brokbury Row Fire Station", "Brokbury_Row_Fire_Station"];
    B[11][91] = [22, "Sunderland Museum", "The_Sunderland_Museum"];
    B[12][91] = [30, "Liminton Plaza", "Liminton_Plaza_%28Pescodside%29"];
    B[13][91] = [5, "Lancastle Building", "The_Lancastle_Building"];
    B[14][91] = [23, "Clewett Building", "The_Clewett_Building"];
    B[15][91] = [24, "Gilles Park", "Gilles_Park"];
    B[16][91] = [30, "Otto Street", "Otto_Street"];
    B[17][91] = [5, "Warner Building", "The_Warner_Building"];
    B[18][91] = [22, "Margetts Museum", "The_Margetts_Museum"];
    B[19][91] = [
      27,
      "Kemble Lane Railway Station",
      "Kemble_Lane_Railway_Station",
    ];
    B[10][92] = [3, "Tanner Auto Repair", "Tanner_Auto_Repair"];
    B[11][92] = [30, "Farmer Walk", "Farmer_Walk"];
    B[12][92] = [24, "Bamford Park", "Bamford_Park"];
    B[13][92] = [30, "Willett Square", "Willett_Square"];
    B[14][92] = [
      27,
      "Youl Avenue Railway Station",
      "Youl_Avenue_Railway_Station",
    ];
    B[15][92] = [13, "Ludwell Lane Fire Station", "Ludwell_Lane_Fire_Station"];
    B[16][92] = [
      13,
      "Headland Street Fire Station",
      "Headland_Street_Fire_Station",
    ];
    B[17][92] = [33, "Wasteland", "Wasteland_92%2C17"];
    B[18][92] = [33, "Wasteland", "Wasteland_92%2C18"];
    B[19][92] = [30, "Kearney Drive", "Kearney_Drive"];
    B[10][93] = [30, "Sirl Plaza", "Sirl_Plaza"];
    B[11][93] = [23, "Waish Building", "The_Waish_Building"];
    B[12][93] = [30, "Batten Drive", "Batten_Drive_%28Pescodside%29"];
    B[13][93] = [5, "Farbrother Building", "The_Farbrother_Building"];
    B[14][93] = [5, "Holt Building", "The_Holt_Building"];
    B[15][93] = [22, "Keats Museum", "The_Keats_Museum"];
    B[16][93] = [11, "Club Hardyman", "Club_Hardyman"];
    B[17][93] = [5, "Love Building", "The_Love_Building"];
    B[18][93] = [
      25,
      "Groser Crescent Police Dept",
      "Groser_Crescent_Police_Department",
    ];
    B[19][93] = [16, "Sinclair Motel", "The_Sinclair_Motel"];
    B[10][94] = [
      9,
      "St Odile's Church",
      "St._Odile%27s_Church_%28Pescodside%29",
    ];
    B[11][94] = [
      27,
      "Spitter Walk Railway Station",
      "Spitter_Walk_Railway_Station",
    ];
    B[12][94] = [11, "Club Godfry", "Club_Godfry"];
    B[13][94] = [32, "Warehouse", "Warehouse_94%2C13"];
    B[14][94] = [30, "Mermagen Street", "Mermagen_Street"];
    B[15][94] = [30, "Wedmore Grove", "Wedmore_Grove"];
    B[16][94] = [18, "Featherstone Library", "Featherstone_Library"];
    B[17][94] = [33, "Wasteland", "Wasteland_94%2C17"];
    B[18][94] = [30, "Rawle Alley", "Rawle_Alley"];
    B[19][94] = [30, "Tredger Place", "Tredger_Place"];
    B[10][95] = [12, "Factory", "Factory_95%2C10"];
    B[11][95] = [13, "Sadley Way Fire Station", "Sadley_Way_Fire_Station"];
    B[12][95] = [30, "Flooks Grove", "Flooks_Grove"];
    B[13][95] = [30, "Medway Street", "Medway_Street"];
    B[14][95] = [13, "Millerd Walk Fire Station", "Millerd_Walk_Fire_Station"];
    B[15][95] = [23, "Inman Building", "The_Inman_Building"];
    B[16][95] = [30, "Toombs Row", "Toombs_Row"];
    B[17][95] = [2, "Rayment Arms", "The_Rayment_Arms"];
    B[18][95] = [32, "Warehouse", "Warehouse_95%2C18"];
    B[19][95] = [17, "Junkyard", "Junkyard_95%2C19"];
    B[10][96] = [30, "Whish Way", "Whish_Way"];
    B[11][96] = [30, "Huddlestone Square", "Huddlestone_Square"];
    B[12][96] = [
      9,
      "St Matthias's Church",
      "St._Matthias%27s_Church_%28Pescodside%29",
    ];
    B[13][96] = [30, "Acott Crescent", "Acott_Crescent"];
    B[14][96] = [31, "Croom Towers", "Croom_Towers_%28Pescodside%29"];
    B[15][96] = [12, "Factory", "Factory_96%2C15"];
    B[16][96] = [30, "Bourder Square", "Bourder_Square"];
    B[17][96] = [30, "Gatehouse Road", "Gatehouse_Road"];
    B[18][96] = [6, "Carpark", "Carpark_96%2C18"];
    B[19][96] = [2, "Mayled Arms", "The_Mayled_Arms"];
    B[10][97] = [
      25,
      "Lentell Walk Police Dept",
      "Lentell_Walk_Police_Department",
    ];
    B[11][97] = [22, "Jewell Museum", "The_Jewell_Museum"];
    B[12][97] = [5, "Squires Building", "The_Squires_Building"];
    B[13][97] = [30, "Lanning Lane", "Lanning_Lane"];
    B[14][97] = [5, "Mapstone Building", "The_Mapstone_Building"];
    B[15][97] = [30, "Sands Road", "Sands_Road"];
    B[16][97] = [24, "Thick Park", "Thick_Park"];
    B[17][97] = [30, "Sellick Lane", "Sellick_Lane"];
    B[18][97] = [30, "Boone Place", "Boone_Place"];
    B[19][97] = [6, "Carpark", "Carpark_97%2C19"];
    B[10][98] = [30, "Leigh Walk", "Leigh_Walk"];
    B[11][98] = [4, "Bearcrofte Bank", "Bearcrofte_Bank"];
    B[12][98] = [31, "Newcombe Towers", "Newcombe_Towers"];
    B[13][98] = [31, "Wyld Towers", "Wyld_Towers"];
    B[14][98] = [
      15,
      "St Bartholomew's Hospital",
      "St._Bartholomew%27s_Hospital_%28Pescodside%29",
    ];
    B[15][98] = [30, "Foulkes Street", "Foulkes_Street"];
    B[16][98] = [2, "Biggs Arms", "The_Biggs_Arms"];
    B[17][98] = [5, "Rowson Building", "The_Rowson_Building"];
    B[18][98] = [28, "Couch Boulevard School", "Couch_Boulevard_School"];
    B[19][98] = [33, "Wasteland", "Wasteland_98%2C19"];
    B[10][99] = [21, "Prior Monument", "The_Prior_Monument"];
    B[11][99] = [22, "Petvin Museum", "The_Petvin_Museum"];
    B[12][99] = [17, "Junkyard", "Junkyard_99%2C12"];
    B[13][99] = [31, "Morliere Towers", "Morliere_Towers"];
    B[14][99] = [30, "Hewitt Way", "Hewitt_Way"];
    B[15][99] = [30, "Greenley Alley", "Greenley_Alley"];
    B[16][99] = [17, "Junkyard", "Junkyard_99%2C16"];
    B[17][99] = [16, "Adkins Motel", "The_Adkins_Motel"];
    B[18][99] = [18, "Caple Library", "Caple_Library"];
    B[19][99] = [30, "Winsor Boulevard", "Winsor_Boulevard"];

    // ------------------------------------------------
    // Quarlesbank
    // ------------------------------------------------
    B[20][0] = [5, "Orr Building", "The_Orr_Building"];
    B[21][0] = [30, "Habgood Avenue", "Habgood_Avenue"];
    B[22][0] = [2, "Baboneau Arms", "The_Baboneau_Arms"];
    B[23][0] = [3, "Fitkin Auto Repair", "Fitkin_Auto_Repair"];
    B[24][0] = [30, "Haberfeild Drive", "Haberfeild_Drive"];
    B[25][0] = [30, "Rawlings Road", "Rawlings_Road"];
    B[26][0] = [30, "Golde Avenue", "Golde_Avenue"];
    B[27][0] = [30, "Lyne Lane", "Lyne_Lane"];
    B[28][0] = [30, "Burnley Square", "Burnley_Square"];
    B[29][0] = [33, "Wasteland", "Wasteland_0%2C29"];
    B[20][1] = [17, "Junkyard", "Junkyard_1%2C20"];
    B[21][1] = [13, "Mattick Walk Fire Station", "Mattick_Walk_Fire_Station"];
    B[22][1] = [30, "Finlay Walk", "Finlay_Walk"];
    B[23][1] = [30, "Rainey Grove", "Rainey_Grove"];
    B[24][1] = [12, "Factory", "Factory_1%2C24"];
    B[25][1] = [30, "Hutson Crescent", "Hutson_Crescent"];
    B[26][1] = [30, "Beale Walk", "Beale_Walk"];
    B[27][1] = [30, "Book Boulevard", "Book_Boulevard"];
    B[28][1] = [11, "Club Verncomb", "Club_Verncomb"];
    B[29][1] = [2, "Broadrick Arms", "The_Broadrick_Arms"];
    B[20][2] = [
      5,
      "Coss Building",
      "The_Coss_Building_%28Peddlesden_Village%29",
    ];
    B[21][2] = [13, "Channell Lane Fire Station", "Channell_Lane_Fire_Station"];
    B[22][2] = [31, "Prouse Towers", "Prouse_Towers"];
    B[23][2] = [30, "Pallaye Plaza", "Pallaye_Plaza"];
    B[24][2] = [30, "Fernie Walk", "Fernie_Walk"];
    B[25][2] = [12, "Factory", "Factory_2%2C25"];
    B[26][2] = [30, "Donagan Alley", "Donagan_Alley"];
    B[27][2] = [30, "Kray Walk", "Kray_Walk"];
    B[28][2] = [21, "Geldeard Monument", "The_Geldeard_Monument"];
    B[29][2] = [
      30,
      "Bergman Square",
      "Bergman_Square_%28Peddlesden_Village%29",
    ];
    B[20][3] = [10, "Alkin Cinema", "Alkin_Cinema"];
    B[21][3] = [30, "Tipton Road", "Tipton_Road"];
    B[22][3] = [30, "Bondfield Road", "Bondfield_Road"];
    B[23][3] = [
      25,
      "Swinnerton Square Police Dept",
      "Swinnerton_Square_Police_Department",
    ];
    B[24][3] = [30, "Vasey Lane", "Vasey_Lane_%28Peddlesden_Village%29"];
    B[25][3] = [
      9,
      "St Humphrey's Church",
      "St._Humphrey%27s_Church_%28Peddlesden_Village%29",
    ];
    B[26][3] = [23, "Bascombe Building", "The_Bascombe_Building"];
    B[27][3] = [30, "Honeyben Drive", "Honeyben_Drive"];
    B[28][3] = [
      5,
      "Bondfield Building",
      "The_Bondfield_Building_%28Peddlesden_Village%29",
    ];
    B[29][3] = [
      13,
      "Crosse Boulevard Fire Station",
      "Crosse_Boulevard_Fire_Station",
    ];
    B[20][4] = [22, "Hockey Museum", "The_Hockey_Museum"];
    B[21][4] = [21, "Stockham Monument", "The_Stockham_Monument"];
    B[22][4] = [5, "Elderfield Building", "The_Elderfield_Building"];
    B[23][4] = [16, "Steel Motel", "The_Steel_Motel"];
    B[24][4] = [31, "Houghton Towers", "Houghton_Towers"];
    B[25][4] = [6, "Carpark", "Carpark_4%2C25"];
    B[26][4] = [30, "Hart Grove", "Hart_Grove"];
    B[27][4] = [30, "Crossley Road", "Crossley_Road"];
    B[28][4] = [
      15,
      "Edmund General Hospital",
      "Edmund_General_Hospital_%28Peddlesden_Village%29",
    ];
    B[29][4] = [30, "Herick Lane", "Herick_Lane"];
    B[20][5] = [30, "Powell Place", "Powell_Place"];
    B[21][5] = [30, "Burchall Way", "Burchall_Way_%28Peddlesden_Village%29"];
    B[22][5] = [30, "Gidley Street", "Gidley_Street"];
    B[23][5] = [2, "Harbord Arms", "The_Harbord_Arms"];
    B[24][5] = [18, "Metcalfe Library", "Metcalfe_Library"];
    B[25][5] = [30, "Sibree Plaza", "Sibree_Plaza_%28Peddlesden_Village%29"];
    B[26][5] = [4, "Tooze Bank", "Tooze_Bank"];
    B[27][5] = [11, "Club Veal", "Club_Veal"];
    B[28][5] = [30, "Haw Alley", "Haw_Alley"];
    B[29][5] = [32, "Warehouse", "Warehouse_5%2C29"];
    B[20][6] = [30, "Tufton Lane", "Tufton_Lane"];
    B[21][6] = [30, "Rush Grove", "Rush_Grove"];
    B[22][6] = [30, "Drave Walk", "Drave_Walk"];
    B[23][6] = [33, "Wasteland", "Wasteland_6%2C23"];
    B[24][6] = [18, "Phipps Library", "Phipps_Library"];
    B[25][6] = [30, "Smethes Crescent", "Smethes_Crescent"];
    B[26][6] = [18, "Nich Library", "Nich_Library"];
    B[27][6] = [10, "Parrott Cinema", "Parrott_Cinema"];
    B[28][6] = [24, "Culmstock Park", "Culmstock_Park"];
    B[29][6] = [3, "Hersant Auto Repair", "Hersant_Auto_Repair"];
    B[20][7] = [31, "Wookey Towers", "Wookey_Towers"];
    B[21][7] = [
      28,
      "Butson Boulevard School",
      "Butson_Boulevard_School_%28Peddlesden_Village%29",
    ];
    B[22][7] = [30, "Herrin Way", "Herrin_Way"];
    B[23][7] = [2, "Avery Arms", "The_Avery_Arms"];
    B[24][7] = [16, "Lenthall Motel", "The_Lenthall_Motel"];
    B[25][7] = [30, "Julian Lane", "Julian_Lane_%28Peddlesden_Village%29"];
    B[26][7] = [30, "Frengrove Walk", "Frengrove_Walk"];
    B[27][7] = [30, "Jaques Drive", "Jaques_Drive"];
    B[28][7] = [
      25,
      "Bunter Street Police Dept",
      "Bunter_Street_Police_Department",
    ];
    B[29][7] = [24, "Softley Park", "Softley_Park"];
    B[20][8] = [
      27,
      "Peitevin Alley Railway Station",
      "Peitevin_Alley_Railway_Station",
    ];
    B[21][8] = [6, "Carpark", "Carpark_8%2C21"];
    B[22][8] = [30, "Jayne Walk", "Jayne_Walk"];
    B[23][8] = [5, "Huxtable Building", "The_Huxtable_Building"];
    B[24][8] = [30, "Chick Street", "Chick_Street_%28Peddlesden_Village%29"];
    B[25][8] = [30, "Dommett Road", "Dommett_Road"];
    B[26][8] = [28, "Messiter Place School", "Messiter_Place_School"];
    B[27][8] = [5, "Wootton Building", "The_Wootton_Building"];
    B[28][8] = [
      13,
      "McCormack Square Fire Station",
      "McCormack_Square_Fire_Station",
    ];
    B[29][8] = [30, "Goodford Avenue", "Goodford_Avenue"];
    B[20][9] = [30, "Red Alley", "Red_Alley"];
    B[21][9] = [24, "Kelher Park", "Kelher_Park_%28Peddlesden_Village%29"];
    B[22][9] = [9, "St Edith's Church", "St._Edith%27s_Church"];
    B[23][9] = [2, "Giblin Arms", "The_Giblin_Arms"];
    B[24][9] = [21, "Brickenden Monument", "The_Brickenden_Monument"];
    B[25][9] = [30, "Beagly Lane", "Beagly_Lane_%28Peddlesden_Village%29"];
    B[26][9] = [5, "Hookins Building", "The_Hookins_Building"];
    B[27][9] = [13, "Demack Row Fire Station", "Demack_Row_Fire_Station"];
    B[28][9] = [28, "Savidge Grove School", "Savidge_Grove_School"];
    B[29][9] = [30, "Lecrus Alley", "Lecrus_Alley"];

    // ------------------------------------------------
    // Gatcombeton
    // ------------------------------------------------
    B[20][10] = [12, "Factory", "Factory_10%2C20"];
    B[21][10] = [30, "Newton Walk", "Newton_Walk"];
    B[22][10] = [5, "Rodges Building", "The_Rodges_Building"];
    B[23][10] = [8, "Cemetery", "Cemetery_10%2C23"];
    B[24][10] = [28, "Coollen Lane School", "Coollen_Lane_School"];
    B[25][10] = [21, "Fiddes Monument", "The_Fiddes_Monument"];
    B[26][10] = [23, "Minshull Building", "The_Minshull_Building"];
    B[27][10] = [21, "Stothert Monument", "The_Stothert_Monument"];
    B[28][10] = [5, "Bristol Building", "The_Bristol_Building"];
    B[29][10] = [30, "Pirrie Way", "Pirrie_Way"];
    B[20][11] = [28, "Petty Place School", "Petty_Place_School"];
    B[21][11] = [10, "Lasbury Cinema", "Lasbury_Cinema"];
    B[22][11] = [30, "Carritt Drive", "Carritt_Drive"];
    B[23][11] = [9, "St Mark's Church", "St._Mark%27s_Church_%28Chudleyton%29"];
    B[24][11] = [3, "Baring Auto Repair", "Baring_Auto_Repair"];
    B[25][11] = [30, "Spalding Walk", "Spalding_Walk"];
    B[26][11] = [32, "Warehouse", "Warehouse_11%2C26"];
    B[27][11] = [10, "Sletery Cinema", "Sletery_Cinema"];
    B[28][11] = [18, "Mant Library", "Mant_Library"];
    B[29][11] = [30, "Hevey Row", "Hevey_Row"];
    B[20][12] = [5, "Purchas Building", "The_Purchas_Building"];
    B[21][12] = [3, "Roadnight Auto Repair", "Roadnight_Auto_Repair"];
    B[22][12] = [
      15,
      "St Luke's Hospital",
      "St._Luke%27s_Hospital_%28Chudleyton%29",
    ];
    B[23][12] = [8, "Cemetery", "Cemetery_12%2C23"];
    B[24][12] = [30, "Ramsey Road", "Ramsey_Road"];
    B[25][12] = [31, "Willshire Towers", "Willshire_Towers"];
    B[26][12] = [10, "Roadnight Cinema", "Roadnight_Cinema"];
    B[27][12] = [
      25,
      "Rodwell Row Police Dept",
      "Rodwell_Row_Police_Department",
    ];
    B[28][12] = [30, "Craven Way", "Craven_Way"];
    B[29][12] = [33, "Wasteland", "Wasteland_12%2C29"];
    B[20][13] = [30, "Pasker Place", "Pasker_Place"];
    B[21][13] = [28, "Lawrance Crescent School", "Lawrance_Crescent_School"];
    B[22][13] = [
      27,
      "Barter Row Railway Station",
      "Barter_Row_Railway_Station",
    ];
    B[23][13] = [22, "Loder Museum", "The_Loder_Museum"];
    B[24][13] = [30, "Downton Square", "Downton_Square"];
    B[25][13] = [23, "Harraway Building", "The_Harraway_Building"];
    B[26][13] = [18, "Reid Library", "Reid_Library"];
    B[27][13] = [30, "Younghusband Square", "Younghusband_Square"];
    B[28][13] = [16, "Ratcliffe Motel", "The_Ratcliffe_Motel"];
    B[29][13] = [2, "Waugh Arms", "The_Waugh_Arms"];
    B[20][14] = [30, "Gamlen Plaza", "Gamlen_Plaza"];
    B[21][14] = [33, "Wasteland", "Wasteland_14%2C21"];
    B[22][14] = [30, "Pottenger Boulevard", "Pottenger_Boulevard"];
    B[23][14] = [18, "Apsey Library", "Apsey_Library"];
    B[24][14] = [11, "Club Hodson", "Club_Hodson"];
    B[25][14] = [17, "Junkyard", "Junkyard_14%2C25"];
    B[26][14] = [21, "Binney Monument", "The_Binney_Monument"];
    B[27][14] = [5, "Donovan Building", "The_Donovan_Building"];
    B[28][14] = [30, "Rome Way", "Rome_Way"];
    B[29][14] = [10, "Rowse Cinema", "Rowse_Cinema"];
    B[20][15] = [12, "Factory", "Factory_15%2C20"];
    B[21][15] = [30, "Regan Plaza", "Regan_Plaza"];
    B[22][15] = [30, "Bulmer Avenue", "Bulmer_Avenue"];
    B[23][15] = [
      25,
      "Kenefie Lane Police Dept",
      "Kenefie_Lane_Police_Department",
    ];
    B[24][15] = [30, "Carpenter Grove", "Carpenter_Grove"];
    B[25][15] = [22, "Hawtrey Museum", "The_Hawtrey_Museum_%28Chudleyton%29"];
    B[26][15] = [30, "Clifden Way", "Clifden_Way"];
    B[27][15] = [13, "Knyfton Row Fire Station", "Knyfton_Row_Fire_Station"];
    B[28][15] = [30, "Doyne Street", "Doyne_Street_%28Chudleyton%29"];
    B[29][15] = [22, "Tiplot Museum", "The_Tiplot_Museum"];
    B[20][16] = [28, "Lockwood Crescent School", "Lockwood_Crescent_School"];
    B[21][16] = [30, "Nettley Drive", "Nettley_Drive"];
    B[22][16] = [30, "Dight Walk", "Dight_Walk"];
    B[23][16] = [15, "Cuthbert General Hospital", "Cuthbert_General_Hospital"];
    B[24][16] = [3, "Tennant Auto Repair", "Tennant_Auto_Repair"];
    B[25][16] = [24, "Ivens Park", "Ivens_Park"];
    B[26][16] = [18, "Howard Library", "Howard_Library"];
    B[27][16] = [30, "Fords Lane", "Fords_Lane"];
    B[28][16] = [21, "Mapledoram Monument", "The_Mapledoram_Monument"];
    B[29][16] = [32, "Warehouse", "Warehouse_16%2C29"];
    B[20][17] = [30, "Rawlins Row", "Rawlins_Row"];
    B[21][17] = [30, "Strachan Lane", "Strachan_Lane"];
    B[22][17] = [6, "Carpark", "Carpark_17%2C22"];
    B[23][17] = [17, "Junkyard", "Junkyard_17%2C23"];
    B[24][17] = [30, "Stringer Street", "Stringer_Street_%28Chudleyton%29"];
    B[25][17] = [5, "Vetch Building", "The_Vetch_Building_%28Chudleyton%29"];
    B[26][17] = [30, "Cother Square", "Cother_Square"];
    B[27][17] = [16, "Glastonbury Motel", "The_Glastonbury_Motel"];
    B[28][17] = [30, "Ogilvie Place", "Ogilvie_Place"];
    B[29][17] = [31, "Bernard Towers", "Bernard_Towers"];
    B[20][18] = [30, "Goudie Drive", "Goudie_Drive"];
    B[21][18] = [
      27,
      "Fowler Crescent Railway Station",
      "Fowler_Crescent_Railway_Station",
    ];
    B[22][18] = [30, "Zuryk Lane", "Zuryk_Lane"];
    B[23][18] = [30, "Shutler Lane", "Shutler_Lane"];
    B[24][18] = [33, "Wasteland", "Wasteland_18%2C24"];
    B[25][18] = [4, "Thristle Bank", "Thristle_Bank"];
    B[26][18] = [6, "Carpark", "Carpark_18%2C26"];
    B[27][18] = [18, "Eden Library", "Eden_Library"];
    B[28][18] = [5, "Tynte Building", "The_Tynte_Building_%28Chudleyton%29"];
    B[29][18] = [21, "Hussey Monument", "The_Hussey_Monument"];
    B[20][19] = [30, "Kington Row", "Kington_Row"];
    B[21][19] = [30, "Golden Row", "Golden_Row"];
    B[22][19] = [
      30,
      "Somerville Boulevard",
      "Somerville_Boulevard_%28Chudleyton%29",
    ];
    B[23][19] = [22, "Bowell Museum", "The_Bowell_Museum_%28Chudleyton%29"];
    B[24][19] = [28, "Custard Lane School", "Custard_Lane_School"];
    B[25][19] = [30, "Fanning Street", "Fanning_Street"];
    B[26][19] = [30, "Silwood Crescent", "Silwood_Crescent"];
    B[27][19] = [19, "Caiger Mall", "Caiger_Mall"];
    B[28][19] = [19, "Caiger Mall", "Caiger_Mall"];
    B[29][19] = [5, "Hearne Building", "The_Hearne_Building"];

    // ------------------------------------------------
    // Darvall Heights
    // ------------------------------------------------
    B[20][20] = [
      25,
      "Halse Crescent Police Dept",
      "Halse_Crescent_Police_Department",
    ];
    B[21][20] = [30, "Altham Row", "Altham_Row"];
    B[22][20] = [30, "Bussell Way", "Bussell_Way_%28Darvall_Heights%29"];
    B[23][20] = [17, "Junkyard", "Junkyard_20%2C23"];
    B[24][20] = [33, "Wasteland", "Wasteland_20%2C24"];
    B[25][20] = [30, "Lorgh Walk", "Lorgh_Walk_%28Darvall_Heights%29"];
    B[26][20] = [32, "Warehouse", "Warehouse_20%2C26"];
    B[27][20] = [19, "Caiger Mall", "Caiger_Mall"];
    B[28][20] = [19, "Caiger Mall", "Caiger_Mall"];
    B[29][20] = [18, "Pagram Library", "Pagram_Library"];
    B[20][21] = [5, "Brodribb Building", "The_Brodribb_Building"];
    B[21][21] = [30, "Yorke Grove", "Yorke_Grove"];
    B[22][21] = [24, "Wenmouth Park", "Wenmouth_Park"];
    B[23][21] = [5, "Farris Building", "The_Farris_Building"];
    B[24][21] = [5, "Papps Building", "The_Papps_Building"];
    B[25][21] = [30, "Hibbert Walk", "Hibbert_Walk"];
    B[26][21] = [30, "Coker Avenue", "Coker_Avenue"];
    B[27][21] = [3, "Holloms Auto Repair", "Holloms_Auto_Repair"];
    B[28][21] = [23, "Latrobe Building", "The_Latrobe_Building"];
    B[29][21] = [30, "Salopia Row", "Salopia_Row"];
    B[20][22] = [30, "Burdock Walk", "Burdock_Walk"];
    B[21][22] = [
      13,
      "Postlethwaite Crescent Fire Station",
      "Postlethwaite_Crescent_Fire_Station",
    ];
    B[22][22] = [30, "Lilly Square", "Lilly_Square"];
    B[23][22] = [27, "Butt Road Railway Station", "Butt_Road_Railway_Station"];
    B[24][22] = [31, "Hallinan Towers", "Hallinan_Towers"];
    B[25][22] = [30, "Pilcher Avenue", "Pilcher_Avenue_%28Darvall_Heights%29"];
    B[26][22] = [30, "Stocker Lane", "Stocker_Lane"];
    B[27][22] = [
      5,
      "Wagner Building",
      "The_Wagner_Building_%28Darvall_Heights%29",
    ];
    B[28][22] = [30, "Cockle Street", "Cockle_Street"];
    B[29][22] = [2, "Blackholler Arms", "The_Blackholler_Arms"];
    B[20][23] = [4, "Howel Bank", "Howel_Bank"];
    B[21][23] = [22, "Cranfield Museum", "The_Cranfield_Museum"];
    B[22][23] = [24, "Piers Park", "Piers_Park"];
    B[23][23] = [30, "Caplen Way", "Caplen_Way"];
    B[24][23] = [17, "Junkyard", "Junkyard_23%2C24"];
    B[25][23] = [5, "Chubb Building", "The_Chubb_Building"];
    B[26][23] = [30, "Tompson Walk", "Tompson_Walk"];
    B[27][23] = [
      9,
      "St Isidore's Church",
      "St._Isidore%27s_Church_%28Darvall_Heights%29",
    ];
    B[28][23] = [31, "Yeandill Towers", "Yeandill_Towers"];
    B[29][23] = [30, "Selwood Crescent", "Selwood_Crescent"];
    B[20][24] = [12, "Factory", "Factory_24%2C20"];
    B[21][24] = [3, "Dandison Auto Repair", "Dandison_Auto_Repair"];
    B[22][24] = [21, "Rugvie Monument", "The_Rugvie_Monument"];
    B[23][24] = [5, "Hallett Building", "The_Hallett_Building"];
    B[24][24] = [30, "Clissold Road", "Clissold_Road"];
    B[25][24] = [24, "Silley Park", "Silley_Park"];
    B[26][24] = [23, "Herman Building", "The_Herman_Building"];
    B[27][24] = [8, "Cemetery", "Cemetery_24%2C27"];
    B[28][24] = [28, "Perram Avenue School", "Perram_Avenue_School"];
    B[29][24] = [30, "Snygge Boulevard", "Snygge_Boulevard"];
    B[20][25] = [
      25,
      "Crossman Grove Police Dept",
      "Crossman_Grove_Police_Department",
    ];
    B[21][25] = [30, "Nurten Avenue", "Nurten_Avenue"];
    B[22][25] = [18, "Lascelles Library", "Lascelles_Library"];
    B[23][25] = [
      15,
      "St Eutychian's Hospital",
      "St._Eutychian%27s_Hospital_%28Darvall_Heights%29",
    ];
    B[24][25] = [24, "Pirrie Park", "Pirrie_Park"];
    B[25][25] = [5, "Nurcombe Building", "The_Nurcombe_Building"];
    B[26][25] = [4, "Priddy Bank", "Priddy_Bank"];
    B[27][25] = [16, "Gadd Motel", "The_Gadd_Motel"];
    B[28][25] = [30, "Mudford Plaza", "Mudford_Plaza"];
    B[29][25] = [3, "Adney Auto Repair", "Adney_Auto_Repair"];
    B[20][26] = [4, "Williames Bank", "Williames_Bank"];
    B[21][26] = [31, "Freeman Towers", "Freeman_Towers"];
    B[22][26] = [30, "Doon Avenue", "Doon_Avenue"];
    B[23][26] = [3, "Wheelhouse Auto Repair", "Wheelhouse_Auto_Repair"];
    B[24][26] = [15, "St Pius's Hospital", "St._Pius%27s_Hospital"];
    B[25][26] = [6, "Carpark", "Carpark_26%2C25"];
    B[26][26] = [31, "Stockham Towers", "Stockham_Towers"];
    B[27][26] = [32, "Warehouse", "Warehouse_26%2C27"];
    B[28][26] = [30, "Sherman Road", "Sherman_Road"];
    B[29][26] = [12, "Factory", "Factory_26%2C29"];
    B[20][27] = [31, "Dustan Towers", "Dustan_Towers"];
    B[21][27] = [5, "Stothert Building", "The_Stothert_Building"];
    B[22][27] = [30, "Teek Road", "Teek_Road_%28Darvall_Heights%29"];
    B[23][27] = [30, "Sherriff Place", "Sherriff_Place"];
    B[24][27] = [30, "Edbrooke Street", "Edbrooke_Street"];
    B[25][27] = [
      15,
      "St Matheos's Hospital",
      "St._Matheos%27s_Hospital_%28Darvall_Heights%29",
    ];
    B[26][27] = [30, "Hebdidgh Road", "Hebdidgh_Road"];
    B[27][27] = [
      27,
      "Nettleton Way Railway Station",
      "Nettleton_Way_Railway_Station",
    ];
    B[28][27] = [30, "Allan Square", "Allan_Square"];
    B[29][27] = [21, "Desmond Monument", "The_Desmond_Monument"];
    B[20][28] = [16, "Goodson Motel", "The_Goodson_Motel"];
    B[21][28] = [
      5,
      "Scaife Building",
      "The_Scaife_Building_%28Darvall_Heights%29",
    ];
    B[22][28] = [30, "Cottingham Plaza", "Cottingham_Plaza"];
    B[23][28] = [5, "Waddington Building", "The_Waddington_Building"];
    B[24][28] = [31, "Lance Towers", "Lance_Towers"];
    B[25][28] = [5, "Rippon Building", "The_Rippon_Building"];
    B[26][28] = [30, "Scallon Crescent", "Scallon_Crescent"];
    B[27][28] = [18, "Cundham Library", "Cundham_Library"];
    B[28][28] = [30, "Keevil Walk", "Keevil_Walk"];
    B[29][28] = [11, "Club Colridge", "Club_Colridge"];
    B[20][29] = [4, "Taylor Bank", "Taylor_Bank"];
    B[21][29] = [13, "Shehan Way Fire Station", "Shehan_Way_Fire_Station"];
    B[22][29] = [5, "Smithfield Building", "The_Smithfield_Building"];
    B[23][29] = [
      25,
      "Tayler Lane Police Dept",
      "Tayler_Lane_Police_Department",
    ];
    B[24][29] = [5, "Bathe Building", "The_Bathe_Building"];
    B[25][29] = [2, "Henslow Arms", "The_Henslow_Arms"];
    B[26][29] = [5, "Davidge Building", "The_Davidge_Building"];
    B[27][29] = [22, "Jillard Museum", "The_Jillard_Museum"];
    B[28][29] = [30, "Bonville Drive", "Bonville_Drive"];
    B[29][29] = [18, "North Library", "North_Library"];

    // ------------------------------------------------
    // East Becktown
    // ------------------------------------------------
    B[20][30] = [4, "Pauley Bank", "Pauley_Bank"];
    B[21][30] = [30, "Roadnight Walk", "Roadnight_Walk"];
    B[22][30] = [23, "Stonnard Building", "The_Stonnard_Building"];
    B[23][30] = [2, "Oakes Arms", "The_Oakes_Arms"];
    B[24][30] = [11, "Club Vagg", "Club_Vagg"];
    B[25][30] = [30, "Hacker Way", "Hacker_Way_%28Eastonwood%29"];
    B[26][30] = [
      15,
      "Felix General Hospital",
      "Felix_General_Hospital_%28Eastonwood%29",
    ];
    B[27][30] = [5, "Corrie Building", "The_Corrie_Building"];
    B[28][30] = [16, "Mart Motel", "The_Mart_Motel"];
    B[29][30] = [4, "Rooke Bank", "Rooke_Bank"];
    B[20][31] = [30, "Shippard Place", "Shippard_Place"];
    B[21][31] = [5, "Pears Building", "The_Pears_Building"];
    B[22][31] = [4, "Yeatman Bank", "Yeatman_Bank"];
    B[23][31] = [30, "Goodhall Avenue", "Goodhall_Avenue"];
    B[24][31] = [6, "Carpark", "Carpark_31%2C24"];
    B[25][31] = [9, "St Antheros's Church", "St._Antheros%27s_Church"];
    B[26][31] = [8, "Cemetery", "Cemetery_31%2C26"];
    B[27][31] = [12, "Factory", "Factory_31%2C27"];
    B[28][31] = [21, "Strang Monument", "The_Strang_Monument"];
    B[29][31] = [30, "Garret Row", "Garret_Row"];
    B[20][32] = [9, "St Chad's Church", "St._Chad%27s_Church"];
    B[21][32] = [30, "Troman Lane", "Troman_Lane"];
    B[22][32] = [4, "Wyles Bank", "Wyles_Bank"];
    B[23][32] = [11, "Club Burningham", "Club_Burningham"];
    B[24][32] = [30, "Darke Walk", "Darke_Walk"];
    B[25][32] = [6, "Carpark", "Carpark_32%2C25"];
    B[26][32] = [12, "Factory", "Factory_32%2C26"];
    B[27][32] = [
      13,
      "Courtney Lane Fire Station",
      "Courtney_Lane_Fire_Station",
    ];
    B[28][32] = [21, "Fysh Monument", "The_Fysh_Monument"];
    B[29][32] = [30, "Popham Place", "Popham_Place"];
    B[20][33] = [8, "Cemetery", "Cemetery_33%2C20"];
    B[21][33] = [
      15,
      "St Simon's Hospital",
      "St._Simon%27s_Hospital_%28Eastonwood%29",
    ];
    B[22][33] = [31, "Coley Towers", "Coley_Towers"];
    B[23][33] = [23, "Tryme Building", "The_Tryme_Building_%28Eastonwood%29"];
    B[24][33] = [13, "Evans Row Fire Station", "Evans_Row_Fire_Station"];
    B[25][33] = [5, "Ellicott Building", "The_Ellicott_Building"];
    B[26][33] = [21, "Sankey Monument", "The_Sankey_Monument"];
    B[27][33] = [
      13,
      "Thickett Plaza Fire Station",
      "Thickett_Plaza_Fire_Station",
    ];
    B[28][33] = [5, "Drayton Building", "The_Drayton_Building"];
    B[29][33] = [30, "Sherwell Place", "Sherwell_Place"];
    B[20][34] = [32, "Warehouse", "Warehouse_34%2C20"];
    B[21][34] = [15, "St Anselm's Hospital", "St._Anselm%27s_Hospital"];
    B[22][34] = [6, "Carpark", "Carpark_34%2C22"];
    B[23][34] = [32, "Warehouse", "Warehouse_34%2C23"];
    B[24][34] = [23, "Nettleton Building", "The_Nettleton_Building"];
    B[25][34] = [5, "Hosken Building", "The_Hosken_Building_%28Eastonwood%29"];
    B[26][34] = [30, "Masey Drive", "Masey_Drive_%28Eastonwood%29"];
    B[27][34] = [30, "Bissell Walk", "Bissell_Walk"];
    B[28][34] = [4, "Back Bank", "Back_Bank"];
    B[29][34] = [30, "Booth Row", "Booth_Row"];
    B[20][35] = [4, "Coplestone Bank", "Coplestone_Bank"];
    B[21][35] = [28, "Brabner Row School", "Brabner_Row_School"];
    B[22][35] = [33, "Wasteland", "Wasteland_35%2C22"];
    B[23][35] = [3, "Elers Auto Repair", "Elers_Auto_Repair"];
    B[24][35] = [
      30,
      "Postlethwaite Drive",
      "Postlethwaite_Drive_%28Eastonwood%29",
    ];
    B[25][35] = [
      25,
      "Pooll Crescent Police Dept",
      "Pooll_Crescent_Police_Department",
    ];
    B[26][35] = [23, "Harold Building", "The_Harold_Building"];
    B[27][35] = [31, "Sleeman Towers", "Sleeman_Towers"];
    B[28][35] = [18, "Stitson Library", "Stitson_Library"];
    B[29][35] = [5, "Mahagan Building", "The_Mahagan_Building"];
    B[20][36] = [2, "Butterell Arms", "The_Butterell_Arms"];
    B[21][36] = [13, "Attrell Road Fire Station", "Attrell_Road_Fire_Station"];
    B[22][36] = [13, "Rutt Square Fire Station", "Rutt_Square_Fire_Station"];
    B[23][36] = [5, "Furlonger Building", "The_Furlonger_Building"];
    B[24][36] = [30, "Hugo Walk", "Hugo_Walk"];
    B[25][36] = [30, "Cottrell Alley", "Cottrell_Alley"];
    B[26][36] = [30, "Matcham Walk", "Matcham_Walk"];
    B[27][36] = [5, "Dalzell Building", "The_Dalzell_Building"];
    B[28][36] = [30, "Pattin Place", "Pattin_Place"];
    B[29][36] = [30, "Besley Lane", "Besley_Lane"];
    B[20][37] = [23, "Coutts Building", "The_Coutts_Building"];
    B[21][37] = [
      27,
      "Norvell Avenue Railway Station",
      "Norvell_Avenue_Railway_Station",
    ];
    B[22][37] = [23, "Cheeke Building", "The_Cheeke_Building_%28Eastonwood%29"];
    B[23][37] = [
      5,
      "Broadfoot Building",
      "The_Broadfoot_Building_%28Eastonwood%29",
    ];
    B[24][37] = [30, "Chidley Drive", "Chidley_Drive"];
    B[25][37] = [16, "Whaits Hotel", "The_Whaits_Hotel"];
    B[26][37] = [12, "Factory", "Factory_37%2C26"];
    B[27][37] = [5, "Surrage Building", "The_Surrage_Building"];
    B[28][37] = [33, "Wasteland", "Wasteland_37%2C28"];
    B[29][37] = [
      15,
      "Patriarch General Hospital",
      "Patriarch_General_Hospital_%28Eastonwood%29",
    ];
    B[20][38] = [18, "Holman Library", "Holman_Library"];
    B[21][38] = [2, "Lewarn Arms", "The_Lewarn_Arms"];
    B[22][38] = [21, "Knyps Monument", "The_Knyps_Monument"];
    B[23][38] = [31, "Symmons Towers", "Symmons_Towers"];
    B[24][38] = [30, "Battersby Road", "Battersby_Road"];
    B[25][38] = [16, "Dukes Hotel", "The_Dukes_Hotel"];
    B[26][38] = [11, "Club Poulter", "Club_Poulter"];
    B[27][38] = [30, "Budmead Way", "Budmead_Way_%28Eastonwood%29"];
    B[28][38] = [5, "Gunson Building", "The_Gunson_Building"];
    B[29][38] = [30, "Warry Road", "Warry_Road"];
    B[20][39] = [6, "Carpark", "Carpark_39%2C20"];
    B[21][39] = [21, "Fortt Monument", "The_Fortt_Monument"];
    B[22][39] = [
      27,
      "Hayes Place Railway Station",
      "Hayes_Place_Railway_Station",
    ];
    B[23][39] = [13, "Luellin Lane Fire Station", "Luellin_Lane_Fire_Station"];
    B[24][39] = [5, "Stoy Building", "The_Stoy_Building"];
    B[25][39] = [33, "Wasteland", "Wasteland_39%2C25"];
    B[26][39] = [
      25,
      "Timewell Drive Police Dept",
      "Timewell_Drive_Police_Department",
    ];
    B[27][39] = [33, "Wasteland", "Wasteland_39%2C27"];
    B[28][39] = [30, "Vasey Lane", "Vasey_Lane_%28Eastonwood%29"];
    B[29][39] = [30, "Hardy Street", "Hardy_Street"];

    // ------------------------------------------------
    // Lukinswood
    // ------------------------------------------------
    B[20][40] = [
      25,
      "Swallow Lane Police Dept",
      "Swallow_Lane_Police_Department",
    ];
    B[21][40] = [12, "Factory", "Factory_40%2C21"];
    B[22][40] = [
      25,
      "Grandon Place Police Dept",
      "Grandon_Place_Police_Department_%28Brooke_Hills%29",
    ];
    B[23][40] = [30, "Heckworthy Drive", "Heckworthy_Drive"];
    B[24][40] = [30, "Botting Square", "Botting_Square"];
    B[25][40] = [22, "Portass Museum", "The_Portass_Museum"];
    B[26][40] = [25, "Twitt Row Police Dept", "Twitt_Row_Police_Department"];
    B[27][40] = [6, "Carpark", "Carpark_40%2C27"];
    B[28][40] = [4, "Chafie Bank", "Chafie_Bank"];
    B[29][40] = [30, "Wakely Alley", "Wakely_Alley"];
    B[20][41] = [25, "Spence Row Police Dept", "Spence_Row_Police_Department"];
    B[21][41] = [22, "Dampier Museum", "The_Dampier_Museum"];
    B[22][41] = [23, "Heathcote Building", "The_Heathcote_Building"];
    B[23][41] = [30, "Osmonton Road", "Osmonton_Road"];
    B[24][41] = [5, "Wormald Building", "The_Wormald_Building"];
    B[25][41] = [5, "Parsley Building", "The_Parsley_Building"];
    B[26][41] = [5, "Chap Building", "The_Chap_Building"];
    B[27][41] = [30, "Blatcher Avenue", "Blatcher_Avenue"];
    B[28][41] = [28, "Redpath Alley School", "Redpath_Alley_School"];
    B[29][41] = [
      9,
      "St Pius's Church",
      "St._Pius%27s_Church_%28Brooke_Hills%29",
    ];
    B[20][42] = [30, "Pattinson Plaza", "Pattinson_Plaza"];
    B[21][42] = [30, "Nicks Grove", "Nicks_Grove"];
    B[22][42] = [22, "Johnston Museum", "The_Johnston_Museum"];
    B[23][42] = [24, "Pudsey Park", "Pudsey_Park"];
    B[24][42] = [5, "Chamberlain Building", "The_Chamberlain_Building"];
    B[25][42] = [30, "McNally Walk", "McNally_Walk"];
    B[26][42] = [25, "Ryley Road Police Dept", "Ryley_Road_Police_Department"];
    B[27][42] = [22, "Griff Museum", "The_Griff_Museum"];
    B[28][42] = [30, "Heaveb Way", "Heaveb_Way"];
    B[29][42] = [30, "Hearne Lane", "Hearne_Lane"];
    B[20][43] = [30, "Olsen Plaza", "Olsen_Plaza"];
    B[21][43] = [30, "Winstone Road", "Winstone_Road"];
    B[22][43] = [33, "Wasteland", "Wasteland_43%2C22"];
    B[23][43] = [17, "Junkyard", "Junkyard_43%2C23"];
    B[24][43] = [30, "Wakeley Grove", "Wakeley_Grove"];
    B[25][43] = [
      27,
      "Shipp Alley Railway Station",
      "Shipp_Alley_Railway_Station",
    ];
    B[26][43] = [33, "Wasteland", "Wasteland_43%2C26"];
    B[27][43] = [15, "St Wulfstan's Hospital", "St._Wulfstan%27s_Hospital"];
    B[28][43] = [6, "Carpark", "Carpark_43%2C28"];
    B[29][43] = [5, "Joce Building", "The_Joce_Building"];
    B[20][44] = [9, "St Ita's Church", "St._Ita%27s_Church"];
    B[21][44] = [5, "Hames Building", "The_Hames_Building"];
    B[22][44] = [10, "Stodgell Cinema", "Stodgell_Cinema"];
    B[23][44] = [32, "Warehouse", "Warehouse_44%2C23"];
    B[24][44] = [30, "Author Avenue", "Author_Avenue_%28Brooke_Hills%29"];
    B[25][44] = [32, "Warehouse", "Warehouse_44%2C25"];
    B[26][44] = [22, "Welsford Museum", "The_Welsford_Museum"];
    B[27][44] = [13, "Cade Place Fire Station", "Cade_Place_Fire_Station"];
    B[28][44] = [10, "Wiles Cinema", "Wiles_Cinema"];
    B[29][44] = [30, "Membery Avenue", "Membery_Avenue"];
    B[20][45] = [8, "Cemetery", "Cemetery_45%2C20"];
    B[21][45] = [30, "Keane Street", "Keane_Street"];
    B[22][45] = [
      23,
      "Hellyer Building",
      "The_Hellyer_Building_%28Brooke_Hills%29",
    ];
    B[23][45] = [6, "Carpark", "Carpark_45%2C23"];
    B[24][45] = [30, "Vigour Walk", "Vigour_Walk"];
    B[25][45] = [6, "Carpark", "Carpark_45%2C25"];
    B[26][45] = [17, "Junkyard", "Junkyard_45%2C26"];
    B[27][45] = [5, "Norvell Building", "The_Norvell_Building"];
    B[28][45] = [30, "Moorman Plaza", "Moorman_Plaza"];
    B[29][45] = [
      30,
      "Stallworthy Square",
      "Stallworthy_Square_%28Brooke_Hills%29",
    ];
    B[20][46] = [30, "McCormack Square", "McCormack_Square"];
    B[21][46] = [24, "Fifoot Park", "Fifoot_Park"];
    B[22][46] = [21, "Ledamun Monument", "The_Ledamun_Monument"];
    B[23][46] = [2, "Crabbe Arms", "The_Crabbe_Arms"];
    B[24][46] = [30, "Davie Walk", "Davie_Walk"];
    B[25][46] = [
      27,
      "Budgett Alley Railway Station",
      "Budgett_Alley_Railway_Station",
    ];
    B[26][46] = [30, "Swaffield Plaza", "Swaffield_Plaza_%28Brooke_Hills%29"];
    B[27][46] = [30, "Holcombe Lane", "Holcombe_Lane"];
    B[28][46] = [9, "St Methodius's Church", "St._Methodius%27s_Church"];
    B[29][46] = [8, "Cemetery", "Cemetery_46%2C29"];
    B[20][47] = [12, "Factory", "Factory_47%2C20"];
    B[21][47] = [30, "Axworthy Way", "Axworthy_Way"];
    B[22][47] = [30, "Blann Avenue", "Blann_Avenue"];
    B[23][47] = [30, "Prickett Road", "Prickett_Road"];
    B[24][47] = [5, "Schalch Building", "The_Schalch_Building"];
    B[25][47] = [30, "Beckley Square", "Beckley_Square"];
    B[26][47] = [30, "Donoran Road", "Donoran_Road"];
    B[27][47] = [
      25,
      "Sheldon Lane Police Dept",
      "Sheldon_Lane_Police_Department",
    ];
    B[28][47] = [
      30,
      "Gillycuddy Boulevard",
      "Gillycuddy_Boulevard_%28Brooke_Hills%29",
    ];
    B[29][47] = [12, "Factory", "Factory_47%2C29"];
    B[20][48] = [30, "Cherington Row", "Cherington_Row"];
    B[21][48] = [30, "Selwood Row", "Selwood_Row"];
    B[22][48] = [13, "Brent Place Fire Station", "Brent_Place_Fire_Station"];
    B[23][48] = [30, "Say Square", "Say_Square"];
    B[24][48] = [
      27,
      "Kitting Walk Railway Station",
      "Kitting_Walk_Railway_Station",
    ];
    B[25][48] = [24, "Connor Park", "Connor_Park"];
    B[26][48] = [16, "Duckworth Motel", "The_Duckworth_Motel"];
    B[27][48] = [30, "Hellear Walk", "Hellear_Walk"];
    B[28][48] = [30, "Perin Alley", "Perin_Alley"];
    B[29][48] = [12, "Factory", "Factory_48%2C29"];
    B[20][49] = [5, "Higdon Building", "The_Higdon_Building"];
    B[21][49] = [33, "Wasteland", "Wasteland_49%2C21"];
    B[22][49] = [30, "Bridle Drive", "Bridle_Drive"];
    B[23][49] = [7, "St Luke's Cathedral", "St._Luke%27s_Cathedral"];
    B[24][49] = [7, "St Luke's Cathedral", "St._Luke%27s_Cathedral"];
    B[25][49] = [
      9,
      "St Arnold's Church",
      "St._Arnold%27s_Church_%28Brooke_Hills%29",
    ];
    B[26][49] = [30, "Pomroy Place", "Pomroy_Place"];
    B[27][49] = [30, "Croxford Road", "Croxford_Road"];
    B[28][49] = [22, "Redwood Museum", "The_Redwood_Museum"];
    B[29][49] = [32, "Warehouse", "Warehouse_49%2C29"];

    // ------------------------------------------------
    // Lerwill Heights
    // ------------------------------------------------
    B[20][50] = [30, "Honeycombe Drive", "Honeycombe_Drive"];
    B[21][50] = [30, "Hatchard Road", "Hatchard_Road"];
    B[22][50] = [16, "Fifield Motel", "The_Fifield_Motel"];
    B[23][50] = [7, "St Luke's Cathedral", "St._Luke%27s_Cathedral"];
    B[24][50] = [7, "St Luke's Cathedral", "St._Luke%27s_Cathedral"];
    B[25][50] = [5, "Mallows Building", "The_Mallows_Building_%28Shearbank%29"];
    B[26][50] = [5, "Derrington Building", "The_Derrington_Building"];
    B[27][50] = [30, "Fritz Lane", "Fritz_Lane"];
    B[28][50] = [3, "Upham Auto Repair", "Upham_Auto_Repair"];
    B[29][50] = [33, "Wasteland", "Wasteland_50%2C29"];
    B[20][51] = [13, "Nurton Walk Fire Station", "Nurton_Walk_Fire_Station"];
    B[21][51] = [30, "Rodford Plaza", "Rodford_Plaza"];
    B[22][51] = [17, "Junkyard", "Junkyard_51%2C22"];
    B[23][51] = [22, "Bridle Museum", "The_Bridle_Museum"];
    B[24][51] = [30, "Slatter Crescent", "Slatter_Crescent"];
    B[25][51] = [30, "Lord Road", "Lord_Road"];
    B[26][51] = [30, "Robey Avenue", "Robey_Avenue"];
    B[27][51] = [16, "Parkinson Hotel", "The_Parkinson_Hotel"];
    B[28][51] = [31, "Manuel Towers", "Manuel_Towers"];
    B[29][51] = [
      15,
      "Josaphat General Hospital",
      "Josaphat_General_Hospital_%28Shearbank%29",
    ];
    B[20][52] = [10, "Chenery Cinema", "Chenery_Cinema_%28Shearbank%29"];
    B[21][52] = [32, "Warehouse", "Warehouse_52%2C21"];
    B[22][52] = [33, "Wasteland", "Wasteland_52%2C22"];
    B[23][52] = [19, "Stickling Mall", "Stickling_Mall"];
    B[24][52] = [19, "Stickling Mall", "Stickling_Mall"];
    B[25][52] = [5, "Dundas Building", "The_Dundas_Building"];
    B[26][52] = [13, "Meaker Lane Fire Station", "Meaker_Lane_Fire_Station"];
    B[27][52] = [21, "Stacey Monument", "The_Stacey_Monument"];
    B[28][52] = [21, "Sartin Monument", "The_Sartin_Monument"];
    B[29][52] = [23, "Turner Building", "The_Turner_Building"];
    B[20][53] = [
      15,
      "Edmund General Hospital",
      "Edmund_General_Hospital_%28Shearbank%29",
    ];
    B[21][53] = [30, "Allder Row", "Allder_Row"];
    B[22][53] = [23, "Whippey Building", "The_Whippey_Building"];
    B[23][53] = [19, "Stickling Mall", "Stickling_Mall"];
    B[24][53] = [19, "Stickling Mall", "Stickling_Mall"];
    B[25][53] = [
      25,
      "Owsley Crescent Police Dept",
      "Owsley_Crescent_Police_Department",
    ];
    B[26][53] = [30, "Chalderwood Way", "Chalderwood_Way"];
    B[27][53] = [
      25,
      "Borrer Street Police Dept",
      "Borrer_Street_Police_Department",
    ];
    B[28][53] = [30, "Sage Avenue", "Sage_Avenue"];
    B[29][53] = [12, "Factory", "Factory_53%2C29"];
    B[20][54] = [30, "Nulty Lane", "Nulty_Lane"];
    B[21][54] = [18, "Ranahan Library", "Ranahan_Library"];
    B[22][54] = [
      9,
      "St Christopher's Church",
      "St._Christopher%27s_Church_%28Shearbank%29",
    ];
    B[23][54] = [33, "Wasteland", "Wasteland_54%2C23"];
    B[24][54] = [24, "Hulme Park", "Hulme_Park"];
    B[25][54] = [30, "MacGilvray Alley", "MacGilvray_Alley"];
    B[26][54] = [33, "Wasteland", "Wasteland_54%2C26"];
    B[27][54] = [3, "Abrahall Auto Repair", "Abrahall_Auto_Repair"];
    B[28][54] = [16, "Eford Motel", "The_Eford_Motel"];
    B[29][54] = [5, "Rush Building", "The_Rush_Building"];
    B[20][55] = [30, "Dunham Way", "Dunham_Way"];
    B[21][55] = [
      25,
      "Farrant Crescent Police Dept",
      "Farrant_Crescent_Police_Department",
    ];
    B[22][55] = [17, "Junkyard", "Junkyard_55%2C22"];
    B[23][55] = [
      25,
      "Lessey Lane Police Dept",
      "Lessey_Lane_Police_Department",
    ];
    B[24][55] = [24, "Deanesly Park", "Deanesly_Park"];
    B[25][55] = [30, "Polden Way", "Polden_Way"];
    B[26][55] = [2, "Thorne Arms", "The_Thorne_Arms"];
    B[27][55] = [30, "Male Way", "Male_Way"];
    B[28][55] = [23, "Nisbet Building", "The_Nisbet_Building"];
    B[29][55] = [16, "Fitkin Hotel", "The_Fitkin_Hotel"];
    B[20][56] = [4, "Holroyd Bank", "Holroyd_Bank"];
    B[21][56] = [12, "Factory", "Factory_56%2C21"];
    B[22][56] = [4, "Borde Bank", "Borde_Bank"];
    B[23][56] = [30, "Bryan Walk", "Bryan_Walk"];
    B[24][56] = [28, "Keedwell Plaza School", "Keedwell_Plaza_School"];
    B[25][56] = [15, "Lazarus General Hospital", "Lazarus_General_Hospital"];
    B[26][56] = [30, "Krinks Boulevard", "Krinks_Boulevard_%28Shearbank%29"];
    B[27][56] = [16, "McMahon Motel", "The_McMahon_Motel"];
    B[28][56] = [
      9,
      "St Athanasius's Church",
      "St._Athanasius%27s_Church_%28Shearbank%29",
    ];
    B[29][56] = [30, "Gajewski Avenue", "Gajewski_Avenue"];
    B[20][57] = [11, "Club Bu", "Club_Bu"];
    B[21][57] = [17, "Junkyard", "Junkyard_57%2C21"];
    B[22][57] = [11, "Club Williames", "Club_Williames"];
    B[23][57] = [30, "Cleall Walk", "Cleall_Walk"];
    B[24][57] = [16, "Soper Motel", "The_Soper_Motel"];
    B[25][57] = [30, "Clewlow Drive", "Clewlow_Drive"];
    B[26][57] = [28, "Denmead Walk School", "Denmead_Walk_School"];
    B[27][57] = [11, "Club Pengelly", "Club_Pengelly"];
    B[28][57] = [30, "Pledger Alley", "Pledger_Alley"];
    B[29][57] = [32, "Warehouse", "Warehouse_57%2C29"];
    B[20][58] = [21, "Sowler Monument", "The_Sowler_Monument"];
    B[21][58] = [30, "Giffard Square", "Giffard_Square"];
    B[22][58] = [30, "Greedy Street", "Greedy_Street"];
    B[23][58] = [6, "Carpark", "Carpark_58%2C23"];
    B[24][58] = [30, "Aslin Crescent", "Aslin_Crescent"];
    B[25][58] = [30, "Belben Lane", "Belben_Lane"];
    B[26][58] = [30, "Gay Avenue", "Gay_Avenue"];
    B[27][58] = [30, "Waddon Crescent", "Waddon_Crescent"];
    B[28][58] = [30, "Bridell Square", "Bridell_Square"];
    B[29][58] = [5, "Pratt Building", "The_Pratt_Building"];
    B[20][59] = [17, "Junkyard", "Junkyard_59%2C20"];
    B[21][59] = [23, "Gabe Building", "The_Gabe_Building"];
    B[22][59] = [30, "Grandfield Walk", "Grandfield_Walk"];
    B[23][59] = [30, "Hambeln Alley", "Hambeln_Alley"];
    B[24][59] = [
      9,
      "St Herman's Church",
      "St._Herman%27s_Church_%28Shearbank%29",
    ];
    B[25][59] = [16, "Newnam Motel", "The_Newnam_Motel"];
    B[26][59] = [12, "Factory", "Factory_59%2C26"];
    B[27][59] = [33, "Wasteland", "Wasteland_59%2C27"];
    B[28][59] = [33, "Wasteland", "Wasteland_59%2C28"];
    B[29][59] = [18, "Leigh Library", "Leigh_Library"];

    // ------------------------------------------------
    // North Blythville
    // ------------------------------------------------
    B[20][60] = [28, "Tope Way School", "Tope_Way_School"];
    B[21][60] = [5, "Bogie Building", "The_Bogie_Building"];
    B[22][60] = [30, "Peppe Street", "Peppe_Street"];
    B[23][60] = [30, "Riddick Plaza", "Riddick_Plaza"];
    B[24][60] = [5, "Sellar Building", "The_Sellar_Building"];
    B[25][60] = [21, "Horner Monument", "The_Horner_Monument"];
    B[26][60] = [30, "Daubeny Road", "Daubeny_Road"];
    B[27][60] = [22, "Organ Museum", "The_Organ_Museum"];
    B[28][60] = [10, "Stretchbury Cinema", "Stretchbury_Cinema"];
    B[29][60] = [11, "Club Dodds", "Club_Dodds"];
    B[20][61] = [21, "Ha Monument", "The_Ha_Monument"];
    B[21][61] = [18, "Belgrave Library", "Belgrave_Library"];
    B[22][61] = [
      25,
      "Solomon Lane Police Dept",
      "Solomon_Lane_Police_Department_%28Huntley_Heights%29",
    ];
    B[23][61] = [23, "Plowright Building", "The_Plowright_Building"];
    B[24][61] = [16, "Ingham Hotel", "The_Ingham_Hotel"];
    B[25][61] = [11, "Club Robson", "Club_Robson"];
    B[26][61] = [5, "Henry Building", "The_Henry_Building"];
    B[27][61] = [30, "Bourne Avenue", "Bourne_Avenue"];
    B[28][61] = [28, "Baxter Boulevard School", "Baxter_Boulevard_School"];
    B[29][61] = [5, "Roode Building", "The_Roode_Building"];
    B[20][62] = [11, "Club Scanlon", "Club_Scanlon"];
    B[21][62] = [5, "Passley Building", "The_Passley_Building"];
    B[22][62] = [13, "Notley Walk Fire Station", "Notley_Walk_Fire_Station"];
    B[23][62] = [22, "Hippisley Museum", "The_Hippisley_Museum"];
    B[24][62] = [11, "Club Aisthorpe", "Club_Aisthorpe"];
    B[25][62] = [22, "Swears Museum", "The_Swears_Museum"];
    B[26][62] = [
      9,
      "St Birinus's Church",
      "St._Birinus%27s_Church_%28Huntley_Heights%29",
    ];
    B[27][62] = [
      27,
      "Springford Avenue Railway Station",
      "Springford_Avenue_Railway_Station",
    ];
    B[28][62] = [6, "Carpark", "Carpark_62%2C28"];
    B[29][62] = [
      25,
      "Kirby Boulevard Police Dept",
      "Kirby_Boulevard_Police_Department",
    ];
    B[20][63] = [30, "Gleed Walk", "Gleed_Walk"];
    B[21][63] = [32, "Warehouse", "Warehouse_63%2C21"];
    B[22][63] = [9, "St Wolfeius's Church", "St._Wolfeius%27s_Church"];
    B[23][63] = [22, "Hanson Museum", "The_Hanson_Museum"];
    B[24][63] = [30, "Monks Avenue", "Monks_Avenue"];
    B[25][63] = [30, "Hutchins Lane", "Hutchins_Lane"];
    B[26][63] = [5, "Tompkins Building", "The_Tompkins_Building"];
    B[27][63] = [30, "Fir Street", "Fir_Street_%28Huntley_Heights%29"];
    B[28][63] = [30, "Robbins Place", "Robbins_Place"];
    B[29][63] = [
      27,
      "Thurlow Drive Railway Station",
      "Thurlow_Drive_Railway_Station",
    ];
    B[20][64] = [30, "Langrishe Street", "Langrishe_Street"];
    B[21][64] = [30, "Tett Road", "Tett_Road"];
    B[22][64] = [21, "Hanna Monument", "The_Hanna_Monument"];
    B[23][64] = [5, "Eadie Building", "The_Eadie_Building"];
    B[24][64] = [28, "Pask Crescent School", "Pask_Crescent_School"];
    B[25][64] = [18, "Labarte Library", "Labarte_Library"];
    B[26][64] = [18, "Humphreys Library", "Humphreys_Library"];
    B[27][64] = [30, "Michell Avenue", "Michell_Avenue"];
    B[28][64] = [30, "Geddes Plaza", "Geddes_Plaza"];
    B[29][64] = [18, "Hammond Library", "Hammond_Library"];
    B[20][65] = [24, "Roft Park", "Roft_Park"];
    B[21][65] = [17, "Junkyard", "Junkyard_65%2C21"];
    B[22][65] = [17, "Junkyard", "Junkyard_65%2C22"];
    B[23][65] = [30, "Benjamin Alley", "Benjamin_Alley"];
    B[24][65] = [5, "Amos Building", "The_Amos_Building"];
    B[25][65] = [30, "Heward Square", "Heward_Square_%28Huntley_Heights%29"];
    B[26][65] = [30, "Rollinson Lane", "Rollinson_Lane"];
    B[27][65] = [4, "Schandua Bank", "Schandua_Bank"];
    B[28][65] = [16, "Spare Motel", "The_Spare_Motel"];
    B[29][65] = [9, "St Elisabeth's Church", "St._Elisabeth%27s_Church"];
    B[20][66] = [12, "Factory", "Factory_66%2C20"];
    B[21][66] = [30, "Morriss Way", "Morriss_Way"];
    B[22][66] = [30, "Haggett Place", "Haggett_Place_%28Huntley_Heights%29"];
    B[23][66] = [2, "Muttlebury Arms", "The_Muttlebury_Arms"];
    B[24][66] = [33, "Wasteland", "Wasteland_66%2C24"];
    B[25][66] = [12, "Factory", "Factory_66%2C25"];
    B[26][66] = [13, "Parry Drive Fire Station", "Parry_Drive_Fire_Station"];
    B[27][66] = [30, "Highton Place", "Highton_Place_%28Huntley_Heights%29"];
    B[28][66] = [30, "Eford Way", "Eford_Way"];
    B[29][66] = [16, "Horder Motel", "The_Horder_Motel_%28Huntley_Heights%29"];
    B[20][67] = [30, "Veryard Crescent", "Veryard_Crescent"];
    B[21][67] = [17, "Junkyard", "Junkyard_67%2C21"];
    B[22][67] = [
      27,
      "Adolphy Row Railway Station",
      "Adolphy_Row_Railway_Station",
    ];
    B[23][67] = [
      5,
      "Scaife Building",
      "The_Scaife_Building_%28Huntley_Heights%29",
    ];
    B[24][67] = [11, "Club Gapper", "Club_Gapper"];
    B[25][67] = [30, "Barnete Street", "Barnete_Street"];
    B[26][67] = [30, "Bohin Avenue", "Bohin_Avenue"];
    B[27][67] = [30, "Woodward Lane", "Woodward_Lane"];
    B[28][67] = [5, "Howlett Building", "The_Howlett_Building"];
    B[29][67] = [5, "Maitland Building", "The_Maitland_Building"];
    B[20][68] = [23, "Vicari Building", "The_Vicari_Building"];
    B[21][68] = [24, "Keen Park", "Keen_Park"];
    B[22][68] = [32, "Warehouse", "Warehouse_68%2C22"];
    B[23][68] = [30, "Tompsett Walk", "Tompsett_Walk_%28Huntley_Heights%29"];
    B[24][68] = [
      9,
      "St Marcus's Church",
      "St._Marcus%27s_Church_%28Huntley_Heights%29",
    ];
    B[25][68] = [8, "Cemetery", "Cemetery_68%2C25"];
    B[26][68] = [11, "Club Lambe", "Club_Lambe"];
    B[27][68] = [5, "Carder Building", "The_Carder_Building"];
    B[28][68] = [
      27,
      "Essell Plaza Railway Station",
      "Essell_Plaza_Railway_Station",
    ];
    B[29][68] = [11, "Club Bucke", "Club_Bucke"];
    B[20][69] = [33, "Wasteland", "Wasteland_69%2C20"];
    B[21][69] = [28, "James Street School", "James_Street_School"];
    B[22][69] = [28, "Greenaway Way School", "Greenaway_Way_School"];
    B[23][69] = [33, "Wasteland", "Wasteland_69%2C23"];
    B[24][69] = [30, "Wolters Square", "Wolters_Square"];
    B[25][69] = [30, "Wallace Grove", "Wallace_Grove"];
    B[26][69] = [33, "Wasteland", "Wasteland_69%2C26"];
    B[27][69] = [30, "Gyllet Drive", "Gyllet_Drive"];
    B[28][69] = [
      9,
      "St Joachim's Church",
      "St._Joachim%27s_Church_%28Huntley_Heights%29",
    ];
    B[29][69] = [2, "Chetwind Arms", "The_Chetwind_Arms"];

    // ------------------------------------------------
    // South Blythville
    // ------------------------------------------------
    B[20][70] = [33, "Wasteland", "Wasteland_70%2C20"];
    B[21][70] = [30, "Grime Walk", "Grime_Walk"];
    B[22][70] = [30, "Timmins Place", "Timmins_Place"];
    B[23][70] = [5, "Gaskell Building", "The_Gaskell_Building"];
    B[24][70] = [11, "Club Routh", "Club_Routh"];
    B[25][70] = [
      15,
      "St Spyridon's Hospital",
      "St._Spyridon%27s_Hospital_%28Santlerville%29",
    ];
    B[26][70] = [30, "Peden Drive", "Peden_Drive"];
    B[27][70] = [
      15,
      "St Matthew's Hospital",
      "St._Matthew%27s_Hospital_%28Santlerville%29",
    ];
    B[28][70] = [30, "Paice Street", "Paice_Street"];
    B[29][70] = [30, "Pincoffs Boulevard", "Pincoffs_Boulevard"];
    B[20][71] = [4, "Elswood Bank", "Elswood_Bank"];
    B[21][71] = [30, "Brearley Way", "Brearley_Way"];
    B[22][71] = [17, "Junkyard", "Junkyard_71%2C22"];
    B[23][71] = [5, "Oxley Building", "The_Oxley_Building_%28Santlerville%29"];
    B[24][71] = [11, "Club Bowerman", "Club_Bowerman"];
    B[25][71] = [30, "Grene Boulevard", "Grene_Boulevard"];
    B[26][71] = [13, "Burrough Row Fire Station", "Burrough_Row_Fire_Station"];
    B[27][71] = [11, "Club Shelley", "Club_Shelley_%28Santlerville%29"];
    B[28][71] = [13, "Dennis Row Fire Station", "Dennis_Row_Fire_Station"];
    B[29][71] = [
      27,
      "Gable Crescent Railway Station",
      "Gable_Crescent_Railway_Station",
    ];
    B[20][72] = [5, "Stower Building", "The_Stower_Building"];
    B[21][72] = [30, "Stallworthy Row", "Stallworthy_Row"];
    B[22][72] = [2, "Knight Arms", "The_Knight_Arms"];
    B[23][72] = [30, "Bythesea Alley", "Bythesea_Alley"];
    B[24][72] = [30, "Jarvie Road", "Jarvie_Road"];
    B[25][72] = [30, "Steel Crescent", "Steel_Crescent"];
    B[26][72] = [
      30,
      "Tewkesbury Square",
      "Tewkesbury_Square_%28Santlerville%29",
    ];
    B[27][72] = [32, "Warehouse", "Warehouse_72%2C27"];
    B[28][72] = [3, "Bowyer Auto Repair", "Bowyer_Auto_Repair"];
    B[29][72] = [30, "Dwelly Alley", "Dwelly_Alley"];
    B[20][73] = [4, "Elgar Bank", "Elgar_Bank"];
    B[21][73] = [30, "Willington Row", "Willington_Row"];
    B[22][73] = [30, "Elbro Drive", "Elbro_Drive"];
    B[23][73] = [31, "Wharton Towers", "Wharton_Towers"];
    B[24][73] = [24, "Forrest Park", "Forrest_Park"];
    B[25][73] = [30, "Fliney Avenue", "Fliney_Avenue"];
    B[26][73] = [30, "Pinchin Avenue", "Pinchin_Avenue"];
    B[27][73] = [21, "Binning Monument", "The_Binning_Monument"];
    B[28][73] = [30, "Syme Avenue", "Syme_Avenue"];
    B[29][73] = [30, "Fortune Street", "Fortune_Street"];
    B[20][74] = [16, "Holmshaw Hotel", "The_Holmshaw_Hotel"];
    B[21][74] = [17, "Junkyard", "Junkyard_74%2C21"];
    B[22][74] = [30, "Brassington Plaza", "Brassington_Plaza"];
    B[23][74] = [30, "Cookesley Avenue", "Cookesley_Avenue"];
    B[24][74] = [
      15,
      "St Columbanus's Hospital",
      "St._Columbanus%27s_Hospital_%28Santlerville%29",
    ];
    B[25][74] = [30, "Yandle Plaza", "Yandle_Plaza"];
    B[26][74] = [17, "Junkyard", "Junkyard_74%2C26"];
    B[27][74] = [33, "Wasteland", "Wasteland_74%2C27"];
    B[28][74] = [23, "Dewes Building", "The_Dewes_Building"];
    B[29][74] = [30, "Austwick Square", "Austwick_Square"];
    B[20][75] = [
      30,
      "Pullinger Boulevard",
      "Pullinger_Boulevard_%28Santlerville%29",
    ];
    B[21][75] = [30, "Heskins Walk", "Heskins_Walk"];
    B[22][75] = [9, "St Simplicius's Church", "St._Simplicius%27s_Church"];
    B[23][75] = [30, "Hands Row", "Hands_Row"];
    B[24][75] = [30, "Fox Street", "Fox_Street"];
    B[25][75] = [23, "Hall Building", "The_Hall_Building"];
    B[26][75] = [
      5,
      "Goodridge Building",
      "The_Goodridge_Building_%28Santlerville%29",
    ];
    B[27][75] = [6, "Carpark", "Carpark_75%2C27"];
    B[28][75] = [19, "Dowdney Mall", "Dowdney_Mall"];
    B[29][75] = [19, "Dowdney Mall", "Dowdney_Mall"];
    B[20][76] = [3, "Wain Auto Repair", "Wain_Auto_Repair"];
    B[21][76] = [21, "Fishlock Monument", "The_Fishlock_Monument"];
    B[22][76] = [31, "Thicke Towers", "Thicke_Towers"];
    B[23][76] = [30, "Chester Alley", "Chester_Alley"];
    B[24][76] = [21, "Finch Monument", "The_Finch_Monument"];
    B[25][76] = [30, "Novell Walk", "Novell_Walk"];
    B[26][76] = [16, "Sweatman Motel", "The_Sweatman_Motel"];
    B[27][76] = [30, "Chivers Avenue", "Chivers_Avenue"];
    B[28][76] = [19, "Dowdney Mall", "Dowdney_Mall"];
    B[29][76] = [19, "Dowdney Mall", "Dowdney_Mall"];
    B[20][77] = [3, "Ledward Auto Repair", "Ledward_Auto_Repair"];
    B[21][77] = [5, "Cosenes Building", "The_Cosenes_Building"];
    B[22][77] = [11, "Club Birch", "Club_Birch"];
    B[23][77] = [30, "Sleeman Row", "Sleeman_Row"];
    B[24][77] = [17, "Junkyard", "Junkyard_77%2C24"];
    B[25][77] = [31, "Heckworthy Towers", "Heckworthy_Towers"];
    B[26][77] = [
      9,
      "St Emelia's Church",
      "St._Emelia%27s_Church_%28Santlerville%29",
    ];
    B[27][77] = [5, "Anthony Building", "The_Anthony_Building"];
    B[28][77] = [30, "Marston Walk", "Marston_Walk"];
    B[29][77] = [33, "Wasteland", "Wasteland_77%2C29"];
    B[20][78] = [11, "Club Pledger", "Club_Pledger"];
    B[21][78] = [33, "Wasteland", "Wasteland_78%2C21"];
    B[22][78] = [
      25,
      "Cotterrell Crescent Police Dept",
      "Cotterrell_Crescent_Police_Department",
    ];
    B[23][78] = [24, "Appelby Park", "Appelby_Park"];
    B[24][78] = [31, "Botting Towers", "Botting_Towers_%28Santlerville%29"];
    B[25][78] = [31, "Waddon Towers", "Waddon_Towers"];
    B[26][78] = [8, "Cemetery", "Cemetery_78%2C26"];
    B[27][78] = [21, "Pace Monument", "The_Pace_Monument"];
    B[28][78] = [
      15,
      "St Boniface's Hospital",
      "St._Boniface%27s_Hospital_%28Santlerville%29",
    ];
    B[29][78] = [3, "Popham Auto Repair", "Popham_Auto_Repair"];
    B[20][79] = [33, "Wasteland", "Wasteland_79%2C20"];
    B[21][79] = [12, "Factory", "Factory_79%2C21"];
    B[22][79] = [
      28,
      "Beer Place School",
      "Beer_Place_School_%28Santlerville%29",
    ];
    B[23][79] = [30, "Hambro Lane", "Hambro_Lane"];
    B[24][79] = [30, "Sturmey Row", "Sturmey_Row"];
    B[25][79] = [10, "Braker Cinema", "Braker_Cinema"];
    B[26][79] = [30, "Franks Grove", "Franks_Grove"];
    B[27][79] = [28, "Ayling Road School", "Ayling_Road_School"];
    B[28][79] = [9, "St Wilfrid's Church", "St._Wilfrid%27s_Church"];
    B[29][79] = [33, "Wasteland", "Wasteland_79%2C29"];

    // ------------------------------------------------
    // Lockettside
    // ------------------------------------------------
    B[20][80] = [13, "Ramsden Way Fire Station", "Ramsden_Way_Fire_Station"];
    B[21][80] = [33, "Wasteland", "Wasteland_80%2C21"];
    B[22][80] = [4, "Larnach Bank", "Larnach_Bank"];
    B[23][80] = [32, "Warehouse", "Warehouse_80%2C23"];
    B[24][80] = [30, "Story Boulevard", "Story_Boulevard"];
    B[25][80] = [4, "Sawday Bank", "Sawday_Bank"];
    B[26][80] = [30, "Jermyn Lane", "Jermyn_Lane"];
    B[27][80] = [32, "Warehouse", "Warehouse_80%2C27"];
    B[28][80] = [16, "Kebby Hotel", "The_Kebby_Hotel"];
    B[29][80] = [3, "Elston Auto Repair", "Elston_Auto_Repair"];
    B[20][81] = [23, "Patterson Building", "The_Patterson_Building"];
    B[21][81] = [3, "Morgane Auto Repair", "Morgane_Auto_Repair"];
    B[22][81] = [32, "Warehouse", "Warehouse_81%2C22"];
    B[23][81] = [5, "Lumb Building", "The_Lumb_Building"];
    B[24][81] = [2, "Bradnam Arms", "The_Bradnam_Arms"];
    B[25][81] = [5, "Cahill Building", "The_Cahill_Building"];
    B[26][81] = [7, "St Matthew's Cathedral", "St._Matthew%27s_Cathedral"];
    B[27][81] = [7, "St Matthew's Cathedral", "St._Matthew%27s_Cathedral"];
    B[28][81] = [16, "Burne Motel", "The_Burne_Motel"];
    B[29][81] = [33, "Wasteland", "Wasteland_81%2C29"];
    B[20][82] = [30, "Houlet Lane", "Houlet_Lane"];
    B[21][82] = [5, "Veasey Building", "The_Veasey_Building"];
    B[22][82] = [30, "Bowdich Square", "Bowdich_Square"];
    B[23][82] = [25, "Oram Walk Police Dept", "Oram_Walk_Police_Department"];
    B[24][82] = [30, "Greensill Street", "Greensill_Street"];
    B[25][82] = [16, "Goulding Hotel", "The_Goulding_Hotel"];
    B[26][82] = [7, "St Matthew's Cathedral", "St._Matthew%27s_Cathedral"];
    B[27][82] = [7, "St Matthew's Cathedral", "St._Matthew%27s_Cathedral"];
    B[28][82] = [30, "Churchey Road", "Churchey_Road"];
    B[29][82] = [11, "Club Humphries", "Club_Humphries_%28Gibsonton%29"];
    B[20][83] = [30, "Harp Walk", "Harp_Walk_%28Gibsonton%29"];
    B[21][83] = [17, "Junkyard", "Junkyard_83%2C21"];
    B[22][83] = [30, "Gwinn Walk", "Gwinn_Walk"];
    B[23][83] = [
      5,
      "Brockliss Building",
      "The_Brockliss_Building_%28Gibsonton%29",
    ];
    B[24][83] = [6, "Carpark", "Carpark_83%2C24"];
    B[25][83] = [30, "Eelms Alley", "Eelms_Alley"];
    B[26][83] = [30, "Sprod Boulevard", "Sprod_Boulevard"];
    B[27][83] = [12, "Factory", "Factory_83%2C27"];
    B[28][83] = [32, "Warehouse", "Warehouse_83%2C28"];
    B[29][83] = [5, "Keitch Building", "The_Keitch_Building"];
    B[20][84] = [15, "St Arnold's Hospital", "St._Arnold%27s_Hospital"];
    B[21][84] = [30, "Barker Avenue", "Barker_Avenue"];
    B[22][84] = [2, "Buckrell Arms", "The_Buckrell_Arms"];
    B[23][84] = [3, "Bending Auto Repair", "Bending_Auto_Repair"];
    B[24][84] = [30, "Lang Drive", "Lang_Drive"];
    B[25][84] = [15, "St Alcuin's Hospital", "St._Alcuin%27s_Hospital"];
    B[26][84] = [4, "Cattle Bank", "Cattle_Bank"];
    B[27][84] = [30, "Harold Square", "Harold_Square"];
    B[28][84] = [30, "Munday Lane", "Munday_Lane"];
    B[29][84] = [
      15,
      "St John's Hospital",
      "St._John%27s_Hospital_%28Gibsonton%29",
    ];
    B[20][85] = [33, "Wasteland", "Wasteland_85%2C20"];
    B[21][85] = [22, "Chanter Museum", "The_Chanter_Museum"];
    B[22][85] = [30, "Gentles Square", "Gentles_Square"];
    B[23][85] = [
      27,
      "Edge Alley Railway Station",
      "Edge_Alley_Railway_Station",
    ];
    B[24][85] = [30, "Langford Way", "Langford_Way"];
    B[25][85] = [28, "Amatt Place School", "Amatt_Place_School"];
    B[26][85] = [5, "Wardle Building", "The_Wardle_Building"];
    B[27][85] = [23, "Ducat Building", "The_Ducat_Building"];
    B[28][85] = [28, "Noyce Plaza School", "Noyce_Plaza_School"];
    B[29][85] = [4, "Alsford Bank", "Alsford_Bank"];
    B[20][86] = [22, "Henson Museum", "The_Henson_Museum"];
    B[21][86] = [
      27,
      "Dimon Alley Railway Station",
      "Dimon_Alley_Railway_Station",
    ];
    B[22][86] = [30, "Curle Street", "Curle_Street"];
    B[23][86] = [30, "Howse Street", "Howse_Street"];
    B[24][86] = [18, "Yeatman Library", "Yeatman_Library"];
    B[25][86] = [33, "Wasteland", "Wasteland_86%2C25"];
    B[26][86] = [30, "Burke Place", "Burke_Place_%28Gibsonton%29"];
    B[27][86] = [16, "Smethurst Motel", "The_Smethurst_Motel"];
    B[28][86] = [30, "Towill Crescent", "Towill_Crescent"];
    B[29][86] = [6, "Carpark", "Carpark_86%2C29"];
    B[20][87] = [5, "Eades Building", "The_Eades_Building"];
    B[21][87] = [30, "Brooke Street", "Brooke_Street"];
    B[22][87] = [11, "Club Popham", "Club_Popham"];
    B[23][87] = [30, "Wybrants Road", "Wybrants_Road"];
    B[24][87] = [2, "Cottell Arms", "The_Cottell_Arms"];
    B[25][87] = [33, "Wasteland", "Wasteland_87%2C25"];
    B[26][87] = [2, "Burcham Arms", "The_Burcham_Arms"];
    B[27][87] = [4, "Lumber Bank", "Lumber_Bank"];
    B[28][87] = [30, "Julian Lane", "Julian_Lane_%28Gibsonton%29"];
    B[29][87] = [30, "Samways Lane", "Samways_Lane"];
    B[20][88] = [12, "Factory", "Factory_88%2C20"];
    B[21][88] = [22, "Vick Museum", "The_Vick_Museum"];
    B[22][88] = [2, "Fone Arms", "The_Fone_Arms_%28Gibsonton%29"];
    B[23][88] = [30, "France Grove", "France_Grove"];
    B[24][88] = [30, "Bray Boulevard", "Bray_Boulevard"];
    B[25][88] = [2, "Verrier Arms", "The_Verrier_Arms"];
    B[26][88] = [30, "Germain Way", "Germain_Way"];
    B[27][88] = [6, "Carpark", "Carpark_88%2C27"];
    B[28][88] = [2, "Tagg Arms", "The_Tagg_Arms"];
    B[29][88] = [30, "Cleave Street", "Cleave_Street"];
    B[20][89] = [
      25,
      "Mylrea Walk Police Dept",
      "Mylrea_Walk_Police_Department",
    ];
    B[21][89] = [30, "Rounds Grove", "Rounds_Grove"];
    B[22][89] = [2, "Mounter Arms", "The_Mounter_Arms"];
    B[23][89] = [15, "St Aidan's Hospital", "St._Aidan%27s_Hospital"];
    B[24][89] = [30, "Clift Drive", "Clift_Drive"];
    B[25][89] = [22, "Peerless Museum", "The_Peerless_Museum"];
    B[26][89] = [23, "Canner Building", "The_Canner_Building"];
    B[27][89] = [33, "Wasteland", "Wasteland_89%2C27"];
    B[28][89] = [30, "Cowling Alley", "Cowling_Alley"];
    B[29][89] = [5, "Gowing Building", "The_Gowing_Building"];

    // ------------------------------------------------
    // Spicer Hills
    // ------------------------------------------------
    B[20][90] = [8, "Cemetery", "Cemetery_90%2C20"];
    B[21][90] = [24, "Cranston Park", "Cranston_Park"];
    B[22][90] = [25, "Skarin Row Police Dept", "Skarin_Row_Police_Department"];
    B[23][90] = [
      15,
      "St Odile's Hospital",
      "St._Odile%27s_Hospital_%28Dunningwood%29",
    ];
    B[24][90] = [28, "Brentnall Walk School", "Brentnall_Walk_School"];
    B[25][90] = [6, "Carpark", "Carpark_90%2C25"];
    B[26][90] = [21, "Sutcliffe Monument", "The_Sutcliffe_Monument"];
    B[27][90] = [18, "Heighmore Library", "Heighmore_Library"];
    B[28][90] = [30, "Darnell Square", "Darnell_Square_%28Dunningwood%29"];
    B[29][90] = [30, "Ryder Plaza", "Ryder_Plaza"];
    B[20][91] = [28, "Morrhall Place School", "Morrhall_Place_School"];
    B[21][91] = [5, "Hewetson Building", "The_Hewetson_Building"];
    B[22][91] = [
      27,
      "Hellear Boulevard Railway Station",
      "Hellear_Boulevard_Railway_Station",
    ];
    B[23][91] = [33, "Wasteland", "Wasteland_91%2C23"];
    B[24][91] = [30, "Sparrow Row", "Sparrow_Row_%28Dunningwood%29"];
    B[25][91] = [5, "Harper Building", "The_Harper_Building"];
    B[26][91] = [30, "Courtier Square", "Courtier_Square"];
    B[27][91] = [
      9,
      "St Innocent's Church",
      "St._Innocent%27s_Church_%28Dunningwood%29",
    ];
    B[28][91] = [33, "Wasteland", "Wasteland_91%2C28"];
    B[29][91] = [30, "Maule Row", "Maule_Row"];
    B[20][92] = [30, "Abrahams Way", "Abrahams_Way"];
    B[21][92] = [21, "Feltham Monument", "The_Feltham_Monument"];
    B[22][92] = [
      25,
      "Morley Walk Police Dept",
      "Morley_Walk_Police_Department",
    ];
    B[23][92] = [33, "Wasteland", "Wasteland_92%2C23"];
    B[24][92] = [
      27,
      "Corp Boulevard Railway Station",
      "Corp_Boulevard_Railway_Station_%28Dunningwood%29",
    ];
    B[25][92] = [
      13,
      "Grimmer Square Fire Station",
      "Grimmer_Square_Fire_Station",
    ];
    B[26][92] = [16, "Carner Hotel", "The_Carner_Hotel"];
    B[27][92] = [30, "Wooman Boulevard", "Wooman_Boulevard"];
    B[28][92] = [30, "Barstow Way", "Barstow_Way"];
    B[29][92] = [
      13,
      "Woolmyngton Alley Fire Station",
      "Woolmyngton_Alley_Fire_Station",
    ];
    B[20][93] = [30, "Griff Grove", "Griff_Grove"];
    B[21][93] = [30, "Uglow Lane", "Uglow_Lane"];
    B[22][93] = [30, "Phippen Alley", "Phippen_Alley"];
    B[23][93] = [30, "Danger Alley", "Danger_Alley"];
    B[24][93] = [32, "Warehouse", "Warehouse_93%2C24"];
    B[25][93] = [30, "Hitchings Square", "Hitchings_Square"];
    B[26][93] = [23, "Vetch Building", "The_Vetch_Building_%28Dunningwood%29"];
    B[27][93] = [30, "Caunt Lane", "Caunt_Lane_%28Dunningwood%29"];
    B[28][93] = [30, "Burley Street", "Burley_Street"];
    B[29][93] = [30, "Healing Alley", "Healing_Alley"];
    B[20][94] = [18, "Madden Library", "Madden_Library"];
    B[21][94] = [32, "Warehouse", "Warehouse_94%2C21"];
    B[22][94] = [32, "Warehouse", "Warehouse_94%2C22"];
    B[23][94] = [31, "Upton Towers", "Upton_Towers"];
    B[24][94] = [30, "Fyfe Avenue", "Fyfe_Avenue"];
    B[25][94] = [6, "Carpark", "Carpark_94%2C25"];
    B[26][94] = [30, "Penni Street", "Penni_Street"];
    B[27][94] = [30, "MacEy Avenue", "MacEy_Avenue"];
    B[28][94] = [33, "Wasteland", "Wasteland_94%2C28"];
    B[29][94] = [30, "Jeanes Lane", "Jeanes_Lane"];
    B[20][95] = [30, "McKay Drive", "McKay_Drive"];
    B[21][95] = [3, "Devenish Auto Repair", "Devenish_Auto_Repair"];
    B[22][95] = [21, "Hamblett Monument", "The_Hamblett_Monument"];
    B[23][95] = [30, "Gaiger Plaza", "Gaiger_Plaza"];
    B[24][95] = [32, "Warehouse", "Warehouse_95%2C24"];
    B[25][95] = [28, "Newell Crescent School", "Newell_Crescent_School"];
    B[26][95] = [30, "Brashier Alley", "Brashier_Alley"];
    B[27][95] = [5, "Carrow Building", "The_Carrow_Building"];
    B[28][95] = [5, "Mullen Building", "The_Mullen_Building"];
    B[29][95] = [32, "Warehouse", "Warehouse_95%2C29"];
    B[20][96] = [28, "Rabani Way School", "Rabani_Way_School"];
    B[21][96] = [17, "Junkyard", "Junkyard_96%2C21"];
    B[22][96] = [30, "Hansford Street", "Hansford_Street"];
    B[23][96] = [6, "Carpark", "Carpark_96%2C23"];
    B[24][96] = [22, "Halberry Museum", "The_Halberry_Museum"];
    B[25][96] = [
      5,
      "Halliday Building",
      "The_Halliday_Building_%28Dunningwood%29",
    ];
    B[26][96] = [30, "Fewtrell Crescent", "Fewtrell_Crescent"];
    B[27][96] = [17, "Junkyard", "Junkyard_96%2C27"];
    B[28][96] = [17, "Junkyard", "Junkyard_96%2C28"];
    B[29][96] = [5, "Louch Building", "The_Louch_Building"];
    B[20][97] = [2, "Douch Arms", "The_Douch_Arms"];
    B[21][97] = [30, "Horler Square", "Horler_Square"];
    B[22][97] = [31, "McDonell Towers", "McDonell_Towers"];
    B[23][97] = [32, "Warehouse", "Warehouse_97%2C23"];
    B[24][97] = [17, "Junkyard", "Junkyard_97%2C24"];
    B[25][97] = [18, "Farr Library", "Farr_Library"];
    B[26][97] = [33, "Wasteland", "Wasteland_97%2C26"];
    B[27][97] = [30, "Risdon Boulevard", "Risdon_Boulevard"];
    B[28][97] = [23, "Cater Building", "The_Cater_Building"];
    B[29][97] = [30, "Brampton Drive", "Brampton_Drive"];
    B[20][98] = [23, "Crampton Building", "The_Crampton_Building"];
    B[21][98] = [5, "Hanrahan Building", "The_Hanrahan_Building"];
    B[22][98] = [2, "Tracey Arms", "The_Tracey_Arms"];
    B[23][98] = [30, "Davers Avenue", "Davers_Avenue"];
    B[24][98] = [30, "Carew Avenue", "Carew_Avenue"];
    B[25][98] = [21, "Faknaham Monument", "The_Faknaham_Monument"];
    B[26][98] = [21, "Shoemark Monument", "The_Shoemark_Monument"];
    B[27][98] = [11, "Club Milton", "Club_Milton"];
    B[28][98] = [5, "Gill Building", "The_Gill_Building_%28Dunningwood%29"];
    B[29][98] = [30, "Horwood Place", "Horwood_Place"];
    B[20][99] = [5, "Cutte Building", "The_Cutte_Building"];
    B[21][99] = [30, "Milnerr Plaza", "Milnerr_Plaza"];
    B[22][99] = [
      13,
      "Haggas Square Fire Station",
      "Haggas_Square_Fire_Station",
    ];
    B[23][99] = [
      25,
      "Lord Boulevard Police Dept",
      "Lord_Boulevard_Police_Department",
    ];
    B[24][99] = [30, "Carrott Alley", "Carrott_Alley"];
    B[25][99] = [30, "Plaister Boulevard", "Plaister_Boulevard"];
    B[26][99] = [24, "Tossell Park", "Tossell_Park"];
    B[27][99] = [31, "Wood Towers", "Wood_Towers"];
    B[28][99] = [5, "Hocking Building", "The_Hocking_Building"];
    B[29][99] = [30, "Bussell Way", "Bussell_Way_%28Dunningwood%29"];

    // ------------------------------------------------
    // West Boundwood
    // ------------------------------------------------
    B[30][0] = [30, "Tharratt Road", "Tharratt_Road"];
    B[31][0] = [5, "Moon Building", "The_Moon_Building"];
    B[32][0] = [
      9,
      "St Luke's Church",
      "St._Luke%27s_Church_%28Dunell_Hills%29",
    ];
    B[33][0] = [2, "Jacomb Arms", "The_Jacomb_Arms"];
    B[34][0] = [30, "Gould Walk", "Gould_Walk"];
    B[35][0] = [30, "Coffins Drive", "Coffins_Drive"];
    B[36][0] = [10, "Newten Cinema", "Newten_Cinema"];
    B[37][0] = [16, "Stone Motel", "The_Stone_Motel"];
    B[38][0] = [5, "Hatson Building", "The_Hatson_Building"];
    B[39][0] = [30, "Bowley Lane", "Bowley_Lane"];
    B[30][1] = [30, "Squires Crescent", "Squires_Crescent"];
    B[31][1] = [11, "Club Swain", "Club_Swain"];
    B[32][1] = [30, "Raynols Boulevard", "Raynols_Boulevard"];
    B[33][1] = [
      25,
      "Cotty Street Police Dept",
      "Cotty_Street_Police_Department",
    ];
    B[34][1] = [22, "Heal Museum", "The_Heal_Museum"];
    B[35][1] = [30, "Heming Way", "Heming_Way"];
    B[36][1] = [30, "Wakley Boulevard", "Wakley_Boulevard"];
    B[37][1] = [30, "Neyens Avenue", "Neyens_Avenue_%28Dunell_Hills%29"];
    B[38][1] = [5, "Mashman Building", "The_Mashman_Building"];
    B[39][1] = [30, "Summers Row", "Summers_Row"];
    B[30][2] = [
      15,
      "Catherine General Hospital",
      "Catherine_General_Hospital_%28Dunell_Hills%29",
    ];
    B[31][2] = [15, "St Justin's Hospital", "St._Justin%27s_Hospital"];
    B[32][2] = [21, "Puckle Monument", "The_Puckle_Monument"];
    B[33][2] = [12, "Factory", "Factory_2%2C33"];
    B[34][2] = [30, "Combe Lane", "Combe_Lane_%28Dunell_Hills%29"];
    B[35][2] = [
      27,
      "Dewfall Plaza Railway Station",
      "Dewfall_Plaza_Railway_Station",
    ];
    B[36][2] = [31, "Ostrehan Towers", "Ostrehan_Towers"];
    B[37][2] = [18, "Newbury Library", "Newbury_Library"];
    B[38][2] = [6, "Carpark", "Carpark_2%2C38"];
    B[39][2] = [30, "Basher Street", "Basher_Street"];
    B[30][3] = [30, "Side Alley", "Side_Alley"];
    B[31][3] = [30, "Woodgate Avenue", "Woodgate_Avenue"];
    B[32][3] = [30, "Bigg Boulevard", "Bigg_Boulevard"];
    B[33][3] = [21, "Neate Monument", "The_Neate_Monument"];
    B[34][3] = [30, "Inclesdon Drive", "Inclesdon_Drive"];
    B[35][3] = [30, "Swonnell Walk", "Swonnell_Walk"];
    B[36][3] = [28, "Godsland Street School", "Godsland_Street_School"];
    B[37][3] = [24, "Arbuthnot Park", "Arbuthnot_Park"];
    B[38][3] = [30, "Horn Walk", "Horn_Walk"];
    B[39][3] = [33, "Wasteland", "Wasteland_3%2C39"];
    B[30][4] = [31, "Studley Towers", "Studley_Towers"];
    B[31][4] = [16, "Roger Hotel", "The_Roger_Hotel"];
    B[32][4] = [15, "Stephen General Hospital", "Stephen_General_Hospital"];
    B[33][4] = [30, "Parsley Road", "Parsley_Road"];
    B[34][4] = [17, "Junkyard", "Junkyard_4%2C34"];
    B[35][4] = [28, "Anderson Row School", "Anderson_Row_School"];
    B[36][4] = [5, "McGarth Building", "The_McGarth_Building"];
    B[37][4] = [12, "Factory", "Factory_4%2C37"];
    B[38][4] = [
      15,
      "Brendan General Hospital",
      "Brendan_General_Hospital_%28Dunell_Hills%29",
    ];
    B[39][4] = [30, "Ritchie Boulevard", "Ritchie_Boulevard"];
    B[30][5] = [30, "Hakens Way", "Hakens_Way"];
    B[31][5] = [31, "Clarry Towers", "Clarry_Towers"];
    B[32][5] = [30, "Polley Grove", "Polley_Grove"];
    B[33][5] = [30, "Craigie Alley", "Craigie_Alley"];
    B[34][5] = [30, "North Lane", "North_Lane"];
    B[35][5] = [30, "Shilling Walk", "Shilling_Walk"];
    B[36][5] = [23, "Dury Building", "The_Dury_Building_%28Dunell_Hills%29"];
    B[37][5] = [30, "Molesworth Road", "Molesworth_Road"];
    B[38][5] = [30, "Penny Crescent", "Penny_Crescent"];
    B[39][5] = [
      15,
      "Lucius General Hospital",
      "Lucius_General_Hospital_%28Dunell_Hills%29",
    ];
    B[30][6] = [30, "Dalwood Lane", "Dalwood_Lane"];
    B[31][6] = [30, "Main Walk", "Main_Walk"];
    B[32][6] = [
      27,
      "Brimson Alley Railway Station",
      "Brimson_Alley_Railway_Station",
    ];
    B[33][6] = [
      9,
      "St Marcus's Church",
      "St._Marcus%27s_Church_%28Dunell_Hills%29",
    ];
    B[34][6] = [30, "Hartry Crescent", "Hartry_Crescent"];
    B[35][6] = [3, "Billet Auto Repair", "Billet_Auto_Repair"];
    B[36][6] = [
      15,
      "Zephyrinus General Hospital",
      "Zephyrinus_General_Hospital_%28Dunell_Hills%29",
    ];
    B[37][6] = [
      9,
      "St Lorenzo's Church",
      "St._Lorenzo%27s_Church_%28Dunell_Hills%29",
    ];
    B[38][6] = [30, "Fullaway Crescent", "Fullaway_Crescent"];
    B[39][6] = [33, "Wasteland", "Wasteland_6%2C39"];
    B[30][7] = [22, "Pettman Museum", "The_Pettman_Museum"];
    B[31][7] = [11, "Club Illing", "Club_Illing"];
    B[32][7] = [30, "Powlet Grove", "Powlet_Grove"];
    B[33][7] = [30, "Hilborn Walk", "Hilborn_Walk"];
    B[34][7] = [5, "Fortune Building", "The_Fortune_Building"];
    B[35][7] = [
      25,
      "Broadbelt Grove Police Dept",
      "Broadbelt_Grove_Police_Department",
    ];
    B[36][7] = [11, "Club Meade", "Club_Meade"];
    B[37][7] = [30, "Comer Avenue", "Comer_Avenue"];
    B[38][7] = [21, "Tibbs Monument", "The_Tibbs_Monument"];
    B[39][7] = [30, "Leader Drive", "Leader_Drive"];
    B[30][8] = [31, "Salt Towers", "Salt_Towers"];
    B[31][8] = [30, "Henderson Boulevard", "Henderson_Boulevard"];
    B[32][8] = [25, "Yea Drive Police Dept", "Yea_Drive_Police_Department"];
    B[33][8] = [10, "Eckersley Cinema", "Eckersley_Cinema"];
    B[34][8] = [24, "Blight Park", "Blight_Park_%28Dunell_Hills%29"];
    B[35][8] = [33, "Wasteland", "Wasteland_8%2C35"];
    B[36][8] = [30, "Coorte Square", "Coorte_Square"];
    B[37][8] = [
      9,
      "St Mary's Church",
      "St._Mary%27s_Church_%28Dunell_Hills%29",
    ];
    B[38][8] = [8, "Cemetery", "Cemetery_8%2C38"];
    B[39][8] = [13, "Bush Crescent Fire Station", "Bush_Crescent_Fire_Station"];
    B[30][9] = [33, "Wasteland", "Wasteland_9%2C30"];
    B[31][9] = [30, "Prinn Drive", "Prinn_Drive"];
    B[32][9] = [18, "Lolley Library", "Lolley_Library"];
    B[33][9] = [30, "Bendle Drive", "Bendle_Drive"];
    B[34][9] = [5, "Golling Building", "The_Golling_Building"];
    B[35][9] = [13, "Ainslie Road Fire Station", "Ainslie_Road_Fire_Station"];
    B[36][9] = [30, "Standen Row", "Standen_Row"];
    B[37][9] = [24, "Glass Park", "Glass_Park"];
    B[38][9] = [12, "Factory", "Factory_9%2C38"];
    B[39][9] = [6, "Carpark", "Carpark_9%2C39"];

    // ------------------------------------------------
    // Shuttlebank
    // ------------------------------------------------
    B[30][10] = [
      13,
      "Stranger Grove Fire Station",
      "Stranger_Grove_Fire_Station",
    ];
    B[31][10] = [30, "Worner Crescent", "Worner_Crescent"];
    B[32][10] = [24, "Tuchings Park", "Tuchings_Park"];
    B[33][10] = [30, "Sroud Crescent", "Sroud_Crescent"];
    B[34][10] = [4, "Help Bank", "Help_Bank"];
    B[35][10] = [
      5,
      "Travers Building",
      "The_Travers_Building_%28West_Becktown%29",
    ];
    B[36][10] = [5, "Fennessy Building", "The_Fennessy_Building"];
    B[37][10] = [24, "McDermott Park", "McDermott_Park"];
    B[38][10] = [30, "Emes Walk", "Emes_Walk"];
    B[39][10] = [13, "Urben Alley Fire Station", "Urben_Alley_Fire_Station"];
    B[30][11] = [21, "Sell Monument", "The_Sell_Monument"];
    B[31][11] = [16, "Ackermen Hotel", "The_Ackermen_Hotel"];
    B[32][11] = [6, "Carpark", "Carpark_11%2C32"];
    B[33][11] = [3, "Mears Auto Repair", "Mears_Auto_Repair"];
    B[34][11] = [
      27,
      "Capper Alley Railway Station",
      "Capper_Alley_Railway_Station",
    ];
    B[35][11] = [5, "Tatchell Building", "The_Tatchell_Building"];
    B[36][11] = [30, "Tibbs Row", "Tibbs_Row"];
    B[37][11] = [31, "Graham Towers", "Graham_Towers"];
    B[38][11] = [30, "Sevior Plaza", "Sevior_Plaza"];
    B[39][11] = [5, "Cavill Building", "The_Cavill_Building"];
    B[30][12] = [2, "Acott Arms", "The_Acott_Arms"];
    B[31][12] = [33, "Wasteland", "Wasteland_12%2C31"];
    B[32][12] = [4, "Mather Bank", "Mather_Bank"];
    B[33][12] = [33, "Wasteland", "Wasteland_12%2C33"];
    B[34][12] = [17, "Junkyard", "Junkyard_12%2C34"];
    B[35][12] = [
      9,
      "St Tsarevna's Church",
      "St._Tsarevna%27s_Church_%28West_Becktown%29",
    ];
    B[36][12] = [16, "Nolan Hotel", "The_Nolan_Hotel"];
    B[37][12] = [
      9,
      "St Osyth's Church",
      "St._Osyth%27s_Church_%28West_Becktown%29",
    ];
    B[38][12] = [8, "Cemetery", "Cemetery_12%2C38"];
    B[39][12] = [25, "Cottam Way Police Dept", "Cottam_Way_Police_Department"];
    B[30][13] = [30, "Feaver Walk", "Feaver_Walk"];
    B[31][13] = [28, "Ross Avenue School", "Ross_Avenue_School"];
    B[32][13] = [30, "Ker Way", "Ker_Way"];
    B[33][13] = [30, "Goldsworthy Avenue", "Goldsworthy_Avenue"];
    B[34][13] = [30, "Freeguard Walk", "Freeguard_Walk"];
    B[35][13] = [30, "Enright Boulevard", "Enright_Boulevard"];
    B[36][13] = [30, "Dorey Way", "Dorey_Way"];
    B[37][13] = [
      27,
      "Ayre Place Railway Station",
      "Ayre_Place_Railway_Station",
    ];
    B[38][13] = [
      13,
      "Dunstone Walk Fire Station",
      "Dunstone_Walk_Fire_Station",
    ];
    B[39][13] = [
      23,
      "Flowar Building",
      "The_Flowar_Building_%28West_Becktown%29",
    ];
    B[30][14] = [30, "Vyse Row", "Vyse_Row"];
    B[31][14] = [30, "Chorley Drive", "Chorley_Drive"];
    B[32][14] = [
      25,
      "Curle Street Police Dept",
      "Curle_Street_Police_Department",
    ];
    B[33][14] = [18, "Uppill Library", "Uppill_Library"];
    B[34][14] = [
      25,
      "Piegsa Place Police Dept",
      "Piegsa_Place_Police_Department",
    ];
    B[35][14] = [22, "Gotch Museum", "The_Gotch_Museum"];
    B[36][14] = [33, "Wasteland", "Wasteland_14%2C36"];
    B[37][14] = [30, "Pownall Alley", "Pownall_Alley"];
    B[38][14] = [28, "Powers Avenue School", "Powers_Avenue_School"];
    B[39][14] = [15, "St Werburgh's Hospital", "St._Werburgh%27s_Hospital"];
    B[30][15] = [30, "Paisley Road", "Paisley_Road"];
    B[31][15] = [
      23,
      "Oxley Building",
      "The_Oxley_Building_%28West_Becktown%29",
    ];
    B[32][15] = [30, "Pullin Square", "Pullin_Square"];
    B[33][15] = [30, "Creese Way", "Creese_Way"];
    B[34][15] = [30, "Boon Crescent", "Boon_Crescent"];
    B[35][15] = [21, "Gass Monument", "The_Gass_Monument"];
    B[36][15] = [17, "Junkyard", "Junkyard_15%2C36"];
    B[37][15] = [33, "Wasteland", "Wasteland_15%2C37"];
    B[38][15] = [30, "Quaney Alley", "Quaney_Alley"];
    B[39][15] = [24, "Verrall Park", "Verrall_Park"];
    B[30][16] = [4, "Maggs Bank", "Maggs_Bank"];
    B[31][16] = [
      13,
      "Whippey Place Fire Station",
      "Whippey_Place_Fire_Station",
    ];
    B[32][16] = [30, "Damon Way", "Damon_Way"];
    B[33][16] = [24, "Ripley Park", "Ripley_Park"];
    B[34][16] = [30, "Nicols Plaza", "Nicols_Plaza"];
    B[35][16] = [30, "Bridgewater Drive", "Bridgewater_Drive"];
    B[36][16] = [18, "Mallard Library", "Mallard_Library"];
    B[37][16] = [22, "Bawn Museum", "The_Bawn_Museum"];
    B[38][16] = [30, "Doggrell Avenue", "Doggrell_Avenue"];
    B[39][16] = [30, "Blaimen Street", "Blaimen_Street"];
    B[30][17] = [30, "Flemming Lane", "Flemming_Lane"];
    B[31][17] = [17, "Junkyard", "Junkyard_17%2C31"];
    B[32][17] = [15, "St Lazar's Hospital", "St._Lazar%27s_Hospital"];
    B[33][17] = [4, "Hardstaff Bank", "Hardstaff_Bank"];
    B[34][17] = [33, "Wasteland", "Wasteland_17%2C34"];
    B[35][17] = [30, "Beel Boulevard", "Beel_Boulevard"];
    B[36][17] = [30, "Duport Alley", "Duport_Alley"];
    B[37][17] = [28, "Farlow Drive School", "Farlow_Drive_School"];
    B[38][17] = [17, "Junkyard", "Junkyard_17%2C38"];
    B[39][17] = [
      9,
      "St Marcus's Church",
      "St._Marcus%27s_Church_%28West_Becktown%29",
    ];
    B[30][18] = [17, "Junkyard", "Junkyard_18%2C30"];
    B[31][18] = [33, "Wasteland", "Wasteland_18%2C31"];
    B[32][18] = [17, "Junkyard", "Junkyard_18%2C32"];
    B[33][18] = [21, "Caddick Monument", "The_Caddick_Monument"];
    B[34][18] = [30, "Griffen Square", "Griffen_Square"];
    B[35][18] = [30, "Lockie Row", "Lockie_Row"];
    B[36][18] = [30, "Bowle Place", "Bowle_Place"];
    B[37][18] = [30, "Ash Walk", "Ash_Walk"];
    B[38][18] = [6, "Carpark", "Carpark_18%2C38"];
    B[39][18] = [8, "Cemetery", "Cemetery_18%2C39"];
    B[30][19] = [23, "Sweeney Building", "The_Sweeney_Building"];
    B[31][19] = [10, "Bentley Cinema", "Bentley_Cinema"];
    B[32][19] = [5, "Ayliffee Building", "The_Ayliffee_Building"];
    B[33][19] = [10, "Coss Cinema", "Coss_Cinema"];
    B[34][19] = [5, "McDougall Building", "The_McDougall_Building"];
    B[35][19] = [30, "Edgerton Drive", "Edgerton_Drive"];
    B[36][19] = [10, "Kempthorne Cinema", "Kempthorne_Cinema"];
    B[37][19] = [21, "Mitchener Monument", "The_Mitchener_Monument"];
    B[38][19] = [24, "Swetman Park", "Swetman_Park"];
    B[39][19] = [31, "Gibbins Towers", "Gibbins_Towers"];

    // ------------------------------------------------
    // Eastonwood
    // ------------------------------------------------
    B[30][20] = [21, "Kinsman Monument", "The_Kinsman_Monument"];
    B[31][20] = [30, "Colquhoun Boulevard", "Colquhoun_Boulevard"];
    B[32][20] = [30, "Riglar Grove", "Riglar_Grove"];
    B[33][20] = [3, "Lush Auto Repair", "Lush_Auto_Repair"];
    B[34][20] = [33, "Wasteland", "Wasteland_20%2C34"];
    B[35][20] = [33, "Wasteland", "Wasteland_20%2C35"];
    B[36][20] = [23, "Attwell Building", "The_Attwell_Building"];
    B[37][20] = [16, "Samuels Hotel", "The_Samuels_Hotel"];
    B[38][20] = [24, "Coombe Park", "Coombe_Park"];
    B[39][20] = [3, "Cross Auto Repair", "Cross_Auto_Repair"];
    B[30][21] = [30, "Sharland Walk", "Sharland_Walk"];
    B[31][21] = [2, "Preston Arms", "The_Preston_Arms"];
    B[32][21] = [30, "Coymer Square", "Coymer_Square"];
    B[33][21] = [33, "Wasteland", "Wasteland_21%2C33"];
    B[34][21] = [30, "Pudden Place", "Pudden_Place"];
    B[35][21] = [30, "McLennan Street", "McLennan_Street"];
    B[36][21] = [33, "Wasteland", "Wasteland_21%2C36"];
    B[37][21] = [33, "Wasteland", "Wasteland_21%2C37"];
    B[38][21] = [24, "Templeton Park", "Templeton_Park"];
    B[39][21] = [30, "Haslock Walk", "Haslock_Walk"];
    B[30][22] = [30, "Sergeant Street", "Sergeant_Street"];
    B[31][22] = [31, "Pikes Towers", "Pikes_Towers"];
    B[32][22] = [32, "Warehouse", "Warehouse_22%2C32"];
    B[33][22] = [30, "Cheal Lane", "Cheal_Lane_%28East_Becktown%29"];
    B[34][22] = [11, "Club Bragge", "Club_Bragge"];
    B[35][22] = [3, "Crate Auto Repair", "Crate_Auto_Repair"];
    B[36][22] = [12, "Factory", "Factory_22%2C36"];
    B[37][22] = [22, "Rideout Museum", "The_Rideout_Museum"];
    B[38][22] = [5, "Hutchinson Building", "The_Hutchinson_Building"];
    B[39][22] = [
      15,
      "Edward General Hospital",
      "Edward_General_Hospital_%28East_Becktown%29",
    ];
    B[30][23] = [23, "Kening Building", "The_Kening_Building"];
    B[31][23] = [30, "Willcocks Grove", "Willcocks_Grove"];
    B[32][23] = [5, "Fish Building", "The_Fish_Building"];
    B[33][23] = [30, "Middleditch Crescent", "Middleditch_Crescent"];
    B[34][23] = [21, "Backhouse Monument", "The_Backhouse_Monument"];
    B[35][23] = [30, "Kemball Avenue", "Kemball_Avenue_%28East_Becktown%29"];
    B[36][23] = [3, "Bennet Auto Repair", "Bennet_Auto_Repair"];
    B[37][23] = [10, "Gresley Cinema", "Gresley_Cinema"];
    B[38][23] = [15, "Barbara General Hospital", "Barbara_General_Hospital"];
    B[39][23] = [11, "Club Normandare", "Club_Normandare_%28East_Becktown%29"];
    B[30][24] = [12, "Factory", "Factory_24%2C30"];
    B[31][24] = [30, "Hampton Place", "Hampton_Place"];
    B[32][24] = [23, "Sugg Building", "The_Sugg_Building"];
    B[33][24] = [30, "Hagerty Avenue", "Hagerty_Avenue"];
    B[34][24] = [
      15,
      "St Eleutherius's Hospital",
      "St._Eleutherius%27s_Hospital",
    ];
    B[35][24] = [30, "Davies Avenue", "Davies_Avenue_%28East_Becktown%29"];
    B[36][24] = [2, "Stenhouse Arms", "The_Stenhouse_Arms"];
    B[37][24] = [2, "Powe Arms", "The_Powe_Arms"];
    B[38][24] = [28, "Billett Row School", "Billett_Row_School"];
    B[39][24] = [25, "Loney Row Police Dept", "Loney_Row_Police_Department"];
    B[30][25] = [30, "Dewey Way", "Dewey_Way"];
    B[31][25] = [28, "Northup Place School", "Northup_Place_School"];
    B[32][25] = [16, "Doggrell Hotel", "The_Doggrell_Hotel"];
    B[33][25] = [31, "Brittan Towers", "Brittan_Towers"];
    B[34][25] = [30, "Spirod Row", "Spirod_Row"];
    B[35][25] = [5, "Percival Building", "The_Percival_Building"];
    B[36][25] = [
      27,
      "Carritt Grove Railway Station",
      "Carritt_Grove_Railway_Station",
    ];
    B[37][25] = [5, "Hussey Building", "The_Hussey_Building"];
    B[38][25] = [30, "Nicholls Square", "Nicholls_Square_%28East_Becktown%29"];
    B[39][25] = [32, "Warehouse", "Warehouse_25%2C39"];
    B[30][26] = [6, "Carpark", "Carpark_26%2C30"];
    B[31][26] = [
      27,
      "Heathman Row Railway Station",
      "Heathman_Row_Railway_Station",
    ];
    B[32][26] = [31, "Downing Towers", "Downing_Towers"];
    B[33][26] = [30, "Weech Way", "Weech_Way"];
    B[34][26] = [32, "Warehouse", "Warehouse_26%2C34"];
    B[35][26] = [23, "Daubeney Building", "The_Daubeney_Building"];
    B[36][26] = [32, "Warehouse", "Warehouse_26%2C36"];
    B[37][26] = [30, "Pym Grove", "Pym_Grove"];
    B[38][26] = [30, "Tikanoff Walk", "Tikanoff_Walk"];
    B[39][26] = [31, "Bowen Towers", "Bowen_Towers"];
    B[30][27] = [22, "Darley Museum", "The_Darley_Museum"];
    B[31][27] = [
      13,
      "Mitchell Drive Fire Station",
      "Mitchell_Drive_Fire_Station",
    ];
    B[32][27] = [22, "Herbert Museum", "The_Herbert_Museum"];
    B[33][27] = [
      15,
      "St Ethelbert's Hospital",
      "St._Ethelbert%27s_Hospital_%28East_Becktown%29",
    ];
    B[34][27] = [18, "Moseley Library", "Moseley_Library"];
    B[35][27] = [30, "Dinmead Lane", "Dinmead_Lane"];
    B[36][27] = [
      15,
      "St Elisabeth's Hospital",
      "St._Elisabeth%27s_Hospital_%28East_Becktown%29",
    ];
    B[37][27] = [3, "Gomm Auto Repair", "Gomm_Auto_Repair"];
    B[38][27] = [6, "Carpark", "Carpark_27%2C38"];
    B[39][27] = [16, "Dimond Motel", "The_Dimond_Motel"];
    B[30][28] = [33, "Wasteland", "Wasteland_28%2C30"];
    B[31][28] = [
      15,
      "James General Hospital",
      "James_General_Hospital_%28East_Becktown%29",
    ];
    B[32][28] = [30, "Bergman Walk", "Bergman_Walk"];
    B[33][28] = [21, "Redly Monument", "The_Redly_Monument"];
    B[34][28] = [22, "Smail Museum", "The_Smail_Museum"];
    B[35][28] = [22, "Barlow Museum", "The_Barlow_Museum"];
    B[36][28] = [21, "Commins Monument", "The_Commins_Monument"];
    B[37][28] = [30, "Ray Alley", "Ray_Alley_%28East_Becktown%29"];
    B[38][28] = [22, "Berkeley Museum", "The_Berkeley_Museum"];
    B[39][28] = [
      13,
      "Kirkwood Lane Fire Station",
      "Kirkwood_Lane_Fire_Station",
    ];
    B[30][29] = [33, "Wasteland", "Wasteland_29%2C30"];
    B[31][29] = [30, "Greenley Place", "Greenley_Place"];
    B[32][29] = [12, "Factory", "Factory_29%2C32"];
    B[33][29] = [16, "Spinks Hotel", "The_Spinks_Hotel"];
    B[34][29] = [30, "Cosh Row", "Cosh_Row"];
    B[35][29] = [30, "Banfield Alley", "Banfield_Alley"];
    B[36][29] = [30, "Tupp Grove", "Tupp_Grove"];
    B[37][29] = [17, "Junkyard", "Junkyard_29%2C37"];
    B[38][29] = [33, "Wasteland", "Wasteland_29%2C38"];
    B[39][29] = [6, "Carpark", "Carpark_29%2C39"];

    // ------------------------------------------------
    // Richmond Hills
    // ------------------------------------------------
    B[30][30] = [23, "Laimbeer Building", "The_Laimbeer_Building"];
    B[31][30] = [4, "Gawade Bank", "Gawade_Bank"];
    B[32][30] = [17, "Junkyard", "Junkyard_30%2C32"];
    B[33][30] = [2, "Giffard Arms", "The_Giffard_Arms"];
    B[34][30] = [17, "Junkyard", "Junkyard_30%2C34"];
    B[35][30] = [10, "Timmins Cinema", "Timmins_Cinema"];
    B[36][30] = [30, "Hobson Way", "Hobson_Way"];
    B[37][30] = [30, "Caple Avenue", "Caple_Avenue"];
    B[38][30] = [11, "Club Rainey", "Club_Rainey"];
    B[39][30] = [31, "Bungay Towers", "Bungay_Towers"];
    B[30][31] = [33, "Wasteland", "Wasteland_31%2C30"];
    B[31][31] = [12, "Factory", "Factory_31%2C31"];
    B[32][31] = [30, "Adams Square", "Adams_Square"];
    B[33][31] = [30, "Belsten Square", "Belsten_Square"];
    B[34][31] = [30, "Torrington Place", "Torrington_Place"];
    B[35][31] = [30, "Brownsey Avenue", "Brownsey_Avenue"];
    B[36][31] = [5, "Rhoades Building", "The_Rhoades_Building"];
    B[37][31] = [30, "Nicholls Square", "Nicholls_Square_%28Richmond_Hills%29"];
    B[38][31] = [30, "Sabine Plaza", "Sabine_Plaza"];
    B[39][31] = [10, "Powles Cinema", "Powles_Cinema"];
    B[30][32] = [33, "Wasteland", "Wasteland_32%2C30"];
    B[31][32] = [33, "Wasteland", "Wasteland_32%2C31"];
    B[32][32] = [
      27,
      "Lea Boulevard Railway Station",
      "Lea_Boulevard_Railway_Station",
    ];
    B[33][32] = [22, "Lazenbury Museum", "The_Lazenbury_Museum"];
    B[34][32] = [30, "Mahon Avenue", "Mahon_Avenue"];
    B[35][32] = [30, "Joycey Drive", "Joycey_Drive"];
    B[36][32] = [30, "Dodge Square", "Dodge_Square"];
    B[37][32] = [30, "Keniston Grove", "Keniston_Grove"];
    B[38][32] = [30, "Gasper Plaza", "Gasper_Plaza"];
    B[39][32] = [30, "Cozens Street", "Cozens_Street"];
    B[30][33] = [30, "Mallack Walk", "Mallack_Walk_%28Richmond_Hills%29"];
    B[31][33] = [30, "Wippell Row", "Wippell_Row"];
    B[32][33] = [4, "Deacon Bank", "Deacon_Bank"];
    B[33][33] = [11, "Club Beastall", "Club_Beastall"];
    B[34][33] = [13, "Wood Grove Fire Station", "Wood_Grove_Fire_Station"];
    B[35][33] = [30, "Annesley Street", "Annesley_Street"];
    B[36][33] = [24, "Enwright Park", "Enwright_Park"];
    B[37][33] = [24, "Bowerman Park", "Bowerman_Park"];
    B[38][33] = [5, "Lumber Building", "The_Lumber_Building"];
    B[39][33] = [33, "Wasteland", "Wasteland_33%2C39"];
    B[30][34] = [16, "Withy Motel", "The_Withy_Motel"];
    B[31][34] = [30, "Burwold Way", "Burwold_Way"];
    B[32][34] = [12, "Factory", "Factory_34%2C32"];
    B[33][34] = [30, "Storrow Lane", "Storrow_Lane"];
    B[34][34] = [30, "Snow Plaza", "Snow_Plaza"];
    B[35][34] = [17, "Junkyard", "Junkyard_34%2C35"];
    B[36][34] = [30, "Wawer Way", "Wawer_Way"];
    B[37][34] = [33, "Wasteland", "Wasteland_34%2C37"];
    B[38][34] = [30, "Alington Street", "Alington_Street"];
    B[39][34] = [
      15,
      "St Mark's Hospital",
      "St._Mark%27s_Hospital_%28Richmond_Hills%29",
    ];
    B[30][35] = [
      15,
      "St Francis's Hospital",
      "St._Francis%27s_Hospital_%28Richmond_Hills%29",
    ];
    B[31][35] = [5, "Stuart Building", "The_Stuart_Building"];
    B[32][35] = [12, "Factory", "Factory_35%2C32"];
    B[33][35] = [30, "Scanlon Crescent", "Scanlon_Crescent"];
    B[34][35] = [33, "Wasteland", "Wasteland_35%2C34"];
    B[35][35] = [30, "Green Walk", "Green_Walk"];
    B[36][35] = [6, "Carpark", "Carpark_35%2C36"];
    B[37][35] = [30, "Snow Road", "Snow_Road"];
    B[38][35] = [
      25,
      "Carle Street Police Dept",
      "Carle_Street_Police_Department",
    ];
    B[39][35] = [16, "Lavers Motel", "The_Lavers_Motel"];
    B[30][36] = [30, "Poncione Grove", "Poncione_Grove_%28Richmond_Hills%29"];
    B[31][36] = [32, "Warehouse", "Warehouse_36%2C31"];
    B[32][36] = [33, "Wasteland", "Wasteland_36%2C32"];
    B[33][36] = [30, "Snaydon Crescent", "Snaydon_Crescent"];
    B[34][36] = [10, "Cunningham Cinema", "Cunningham_Cinema"];
    B[35][36] = [17, "Junkyard", "Junkyard_36%2C35"];
    B[36][36] = [30, "Symonds Lane", "Symonds_Lane"];
    B[37][36] = [6, "Carpark", "Carpark_36%2C37"];
    B[38][36] = [30, "Bracher Street", "Bracher_Street"];
    B[39][36] = [2, "Splain Arms", "The_Splain_Arms"];
    B[30][37] = [10, "Hemmins Cinema", "Hemmins_Cinema"];
    B[31][37] = [17, "Junkyard", "Junkyard_37%2C31"];
    B[32][37] = [6, "Carpark", "Carpark_37%2C32"];
    B[33][37] = [10, "Edgcumbe Cinema", "Edgcumbe_Cinema"];
    B[34][37] = [30, "Melrose Way", "Melrose_Way"];
    B[35][37] = [10, "Freeguard Cinema", "Freeguard_Cinema"];
    B[36][37] = [30, "Shehan Boulevard", "Shehan_Boulevard"];
    B[37][37] = [32, "Warehouse", "Warehouse_37%2C37"];
    B[38][37] = [
      27,
      "Bayley Row Railway Station",
      "Bayley_Row_Railway_Station",
    ];
    B[39][37] = [30, "Picton Way", "Picton_Way"];
    B[30][38] = [22, "Futcher Museum", "The_Futcher_Museum"];
    B[31][38] = [21, "Bibby Monument", "The_Bibby_Monument"];
    B[32][38] = [30, "Borland Way", "Borland_Way"];
    B[33][38] = [33, "Wasteland", "Wasteland_38%2C33"];
    B[34][38] = [30, "Alkin Crescent", "Alkin_Crescent"];
    B[35][38] = [32, "Warehouse", "Warehouse_38%2C35"];
    B[36][38] = [30, "Eelms Way", "Eelms_Way"];
    B[37][38] = [33, "Wasteland", "Wasteland_38%2C37"];
    B[38][38] = [11, "Club Woodard", "Club_Woodard"];
    B[39][38] = [30, "Roe Crescent", "Roe_Crescent_%28Richmond_Hills%29"];
    B[30][39] = [17, "Junkyard", "Junkyard_39%2C30"];
    B[31][39] = [30, "Wadds Walk", "Wadds_Walk"];
    B[32][39] = [23, "Lockwood Building", "The_Lockwood_Building"];
    B[33][39] = [18, "Skilliter Library", "Skilliter_Library"];
    B[34][39] = [30, "Birkley Walk", "Birkley_Walk"];
    B[35][39] = [33, "Wasteland", "Wasteland_39%2C35"];
    B[36][39] = [30, "Buckett Walk", "Buckett_Walk_%28Richmond_Hills%29"];
    B[37][39] = [
      9,
      "St Odile's Church",
      "St._Odile%27s_Church_%28Richmond_Hills%29",
    ];
    B[38][39] = [
      27,
      "Cardwell Plaza Railway Station",
      "Cardwell_Plaza_Railway_Station",
    ];
    B[39][39] = [5, "Froom Building", "The_Froom_Building"];

    // ------------------------------------------------
    // Havercroft
    // ------------------------------------------------
    B[30][40] = [4, "Turle Bank", "Turle_Bank"];
    B[31][40] = [23, "Staples Building", "The_Staples_Building"];
    B[32][40] = [5, "Kempson Building", "The_Kempson_Building"];
    B[33][40] = [30, "Boniface Drive", "Boniface_Drive"];
    B[34][40] = [30, "Edgcumbe Street", "Edgcumbe_Street"];
    B[35][40] = [3, "Heckworthy Auto Repair", "Heckworthy_Auto_Repair"];
    B[36][40] = [16, "Hepton Motel", "The_Hepton_Motel"];
    B[37][40] = [
      27,
      "Blunt Boulevard Railway Station",
      "Blunt_Boulevard_Railway_Station",
    ];
    B[38][40] = [30, "Thick Plaza", "Thick_Plaza"];
    B[39][40] = [30, "Eaton Avenue", "Eaton_Avenue"];
    B[30][41] = [34, "City Zoo", "City_Zoo"];
    B[31][41] = [34, "City Zoo", "City_Zoo"];
    B[32][41] = [39, "Elephant House", "The_Elephant_House"];
    B[33][41] = [34, "City Zoo", "City_Zoo"];
    B[34][41] = [13, "Getsom Drive Fire Station", "Getsom_Drive_Fire_Station"];
    B[35][41] = [17, "Junkyard", "Junkyard_41%2C35"];
    B[36][41] = [30, "Darch Square", "Darch_Square"];
    B[37][41] = [30, "Pine Walk", "Pine_Walk"];
    B[38][41] = [33, "Wasteland", "Wasteland_41%2C38"];
    B[39][41] = [17, "Junkyard", "Junkyard_41%2C39"];
    B[30][42] = [41, "Lion Enclosure", "The_Lion_Enclosure"];
    B[31][42] = [34, "City Zoo", "City_Zoo"];
    B[32][42] = [34, "City Zoo", "City_Zoo"];
    B[33][42] = [34, "City Zoo", "City_Zoo"];
    B[34][42] = [4, "Edson Bank", "Edson_Bank"];
    B[35][42] = [
      30,
      "Rawling Boulevard",
      "Rawling_Boulevard_%28Ketchelbank%29",
    ];
    B[36][42] = [2, "Bater Arms", "The_Bater_Arms"];
    B[37][42] = [
      27,
      "Mulock Drive Railway Station",
      "Mulock_Drive_Railway_Station",
    ];
    B[38][42] = [28, "Gyls Walk School", "Gyls_Walk_School"];
    B[39][42] = [32, "Warehouse", "Warehouse_42%2C39"];
    B[30][43] = [34, "City Zoo", "City_Zoo"];
    B[31][43] = [38, "Bear Pit", "The_Bear_Pit"];
    B[32][43] = [34, "City Zoo", "City_Zoo"];
    B[33][43] = [37, "Aquarium", "The_Aquarium"];
    B[34][43] = [32, "Warehouse", "Warehouse_43%2C34"];
    B[35][43] = [12, "Factory", "Factory_43%2C35"];
    B[36][43] = [30, "Cowan Street", "Cowan_Street"];
    B[37][43] = [11, "Club Lazenbury", "Club_Lazenbury"];
    B[38][43] = [30, "Budden Avenue", "Budden_Avenue"];
    B[39][43] = [4, "Carroll Bank", "Carroll_Bank"];
    B[30][44] = [34, "City Zoo", "City_Zoo"];
    B[31][44] = [34, "City Zoo", "City_Zoo"];
    B[32][44] = [40, "Giraffe House", "The_Giraffe_House"];
    B[33][44] = [34, "City Zoo", "City_Zoo"];
    B[34][44] = [33, "Wasteland", "Wasteland_44%2C34"];
    B[35][44] = [22, "Trick Museum", "The_Trick_Museum"];
    B[36][44] = [17, "Junkyard", "Junkyard_44%2C36"];
    B[37][44] = [3, "Catcott Auto Repair", "Catcott_Auto_Repair"];
    B[38][44] = [31, "Doutch Towers", "Doutch_Towers"];
    B[39][44] = [30, "Hayes Street", "Hayes_Street"];
    B[30][45] = [42, "Reptile House", "The_Reptile_House"];
    B[31][45] = [34, "City Zoo", "City_Zoo"];
    B[32][45] = [34, "City Zoo", "City_Zoo"];
    B[33][45] = [34, "City Zoo", "City_Zoo"];
    B[34][45] = [30, "Banbury Square", "Banbury_Square"];
    B[35][45] = [23, "Russell Building", "The_Russell_Building"];
    B[36][45] = [16, "Horder Motel", "The_Horder_Motel_%28Ketchelbank%29"];
    B[37][45] = [4, "Burlton Bank", "Burlton_Bank"];
    B[38][45] = [31, "Huggins Towers", "Huggins_Towers"];
    B[39][45] = [30, "Petheram Boulevard", "Petheram_Boulevard"];
    B[30][46] = [30, "Allerton Street", "Allerton_Street"];
    B[31][46] = [30, "Broadbear Road", "Broadbear_Road"];
    B[32][46] = [30, "Gunson Row", "Gunson_Row"];
    B[33][46] = [
      9,
      "St Matthias's Church",
      "St._Matthias%27s_Church_%28Ketchelbank%29",
    ];
    B[34][46] = [23, "Telfer Building", "The_Telfer_Building"];
    B[35][46] = [13, "Riddell Way Fire Station", "Riddell_Way_Fire_Station"];
    B[36][46] = [30, "Chafey Walk", "Chafey_Walk"];
    B[37][46] = [30, "Heddington Alley", "Heddington_Alley"];
    B[38][46] = [30, "Keedwell Grove", "Keedwell_Grove"];
    B[39][46] = [30, "Coaker Square", "Coaker_Square"];
    B[30][47] = [33, "Wasteland", "Wasteland_47%2C30"];
    B[31][47] = [30, "Laycock Grove", "Laycock_Grove"];
    B[32][47] = [30, "Silcock Row", "Silcock_Row"];
    B[33][47] = [30, "Bethell Square", "Bethell_Square"];
    B[34][47] = [30, "Stalling Street", "Stalling_Street"];
    B[35][47] = [33, "Wasteland", "Wasteland_47%2C35"];
    B[36][47] = [15, "St Eusebius's Hospital", "St._Eusebius%27s_Hospital"];
    B[37][47] = [11, "Club Mothersele", "Club_Mothersele"];
    B[38][47] = [6, "Carpark", "Carpark_47%2C38"];
    B[39][47] = [6, "Carpark", "Carpark_47%2C39"];
    B[30][48] = [2, "Ponsford Arms", "The_Ponsford_Arms"];
    B[31][48] = [5, "Shalmer Building", "The_Shalmer_Building"];
    B[32][48] = [30, "Jarrom Street", "Jarrom_Street"];
    B[33][48] = [16, "Salisbury Motel", "The_Salisbury_Motel"];
    B[34][48] = [30, "Pridham Avenue", "Pridham_Avenue"];
    B[35][48] = [28, "Mickleburgh Way School", "Mickleburgh_Way_School"];
    B[36][48] = [30, "Feathers Lane", "Feathers_Lane"];
    B[37][48] = [30, "Breay Avenue", "Breay_Avenue"];
    B[38][48] = [9, "St Jude's Church", "St._Jude%27s_Church"];
    B[39][48] = [5, "Keeffe Building", "The_Keeffe_Building"];
    B[30][49] = [21, "Whittard Monument", "The_Whittard_Monument"];
    B[31][49] = [30, "Bockett Street", "Bockett_Street"];
    B[32][49] = [30, "Fishwick Way", "Fishwick_Way"];
    B[33][49] = [
      9,
      "St Joachim's Church",
      "St._Joachim%27s_Church_%28Ketchelbank%29",
    ];
    B[34][49] = [30, "Bindon Lane", "Bindon_Lane"];
    B[35][49] = [6, "Carpark", "Carpark_49%2C35"];
    B[36][49] = [5, "Kirkby Building", "The_Kirkby_Building_%28Ketchelbank%29"];
    B[37][49] = [30, "Riddick Boulevard", "Riddick_Boulevard"];
    B[38][49] = [13, "Arscott Road Fire Station", "Arscott_Road_Fire_Station"];
    B[39][49] = [33, "Wasteland", "Wasteland_49%2C39"];

    // ------------------------------------------------
    // Shore Hills
    // ------------------------------------------------
    B[30][50] = [5, "Wagland Building", "The_Wagland_Building_%28Roachtown%29"];
    B[31][50] = [30, "Robinson Lane", "Robinson_Lane"];
    B[32][50] = [5, "Chidgey Building", "The_Chidgey_Building"];
    B[33][50] = [
      25,
      "Traves Lane Police Dept",
      "Traves_Lane_Police_Department",
    ];
    B[34][50] = [5, "Bourder Building", "The_Bourder_Building_%28Roachtown%29"];
    B[35][50] = [5, "Portman Building", "The_Portman_Building"];
    B[36][50] = [30, "Mussabini Way", "Mussabini_Way"];
    B[37][50] = [30, "Townsend Walk", "Townsend_Walk"];
    B[38][50] = [23, "Haim Building", "The_Haim_Building"];
    B[39][50] = [
      27,
      "Thynne Walk Railway Station",
      "Thynne_Walk_Railway_Station",
    ];
    B[30][51] = [6, "Carpark", "Carpark_51%2C30"];
    B[31][51] = [32, "Warehouse", "Warehouse_51%2C31"];
    B[32][51] = [31, "Schever Towers", "Schever_Towers"];
    B[33][51] = [
      25,
      "Sires Boulevard Police Dept",
      "Sires_Boulevard_Police_Department",
    ];
    B[34][51] = [17, "Junkyard", "Junkyard_51%2C34"];
    B[35][51] = [30, "Date Drive", "Date_Drive"];
    B[36][51] = [20, "Alner Mansion", "Alner_Mansion"];
    B[37][51] = [20, "Alner Mansion", "Alner_Mansion"];
    B[38][51] = [11, "Club Pearce", "Club_Pearce"];
    B[39][51] = [11, "Club Rookes", "Club_Rookes"];
    B[30][52] = [30, "Trotter Place", "Trotter_Place"];
    B[31][52] = [31, "Croom Towers", "Croom_Towers_%28Roachtown%29"];
    B[32][52] = [30, "Woodford Road", "Woodford_Road"];
    B[33][52] = [9, "St Paul's Church", "St._Paul%27s_Church_%28Roachtown%29"];
    B[34][52] = [8, "Cemetery", "Cemetery_52%2C34"];
    B[35][52] = [30, "Hasell Way", "Hasell_Way"];
    B[36][52] = [20, "Alner Mansion", "Alner_Mansion"];
    B[37][52] = [20, "Alner Mansion", "Alner_Mansion"];
    B[38][52] = [10, "Glanfield Cinema", "Glanfield_Cinema"];
    B[39][52] = [31, "Gullick Towers", "Gullick_Towers"];
    B[30][53] = [10, "Luckraft Cinema", "Luckraft_Cinema"];
    B[31][53] = [10, "Sonvico Cinema", "Sonvico_Cinema"];
    B[32][53] = [30, "Fellowes Lane", "Fellowes_Lane"];
    B[33][53] = [30, "Doneghue Walk", "Doneghue_Walk"];
    B[34][53] = [2, "Novell Arms", "The_Novell_Arms"];
    B[35][53] = [3, "Tar Auto Repair", "Tar_Auto_Repair"];
    B[36][53] = [28, "Vaux Grove School", "Vaux_Grove_School"];
    B[37][53] = [30, "Hoffman Walk", "Hoffman_Walk"];
    B[38][53] = [27, "Fey Alley Railway Station", "Fey_Alley_Railway_Station"];
    B[39][53] = [30, "Sealby Place", "Sealby_Place"];
    B[30][54] = [18, "Worcester Library", "Worcester_Library"];
    B[31][54] = [
      25,
      "Matraves Crescent Police Dept",
      "Matraves_Crescent_Police_Department",
    ];
    B[32][54] = [5, "Weary Building", "The_Weary_Building"];
    B[33][54] = [12, "Factory", "Factory_54%2C33"];
    B[34][54] = [30, "Stonnard Lane", "Stonnard_Lane"];
    B[35][54] = [30, "Marriott Crescent", "Marriott_Crescent"];
    B[36][54] = [30, "McCann Lane", "McCann_Lane"];
    B[37][54] = [30, "Bayfield Drive", "Bayfield_Drive"];
    B[38][54] = [28, "Slape Way School", "Slape_Way_School"];
    B[39][54] = [5, "Travis Building", "The_Travis_Building"];
    B[30][55] = [30, "Rumble Crescent", "Rumble_Crescent_%28Roachtown%29"];
    B[31][55] = [11, "Club Willshire", "Club_Willshire"];
    B[32][55] = [
      9,
      "St Dionysius's Church",
      "St._Dionysius%27s_Church_%28Roachtown%29",
    ];
    B[33][55] = [12, "Factory", "Factory_55%2C33"];
    B[34][55] = [
      15,
      "Cyril General Hospital",
      "Cyril_General_Hospital_%28Roachtown%29",
    ];
    B[35][55] = [9, "St Dymphna's Church", "St._Dymphna%27s_Church"];
    B[36][55] = [16, "Scott Motel", "The_Scott_Motel"];
    B[37][55] = [
      13,
      "Pegrum Square Fire Station",
      "Pegrum_Square_Fire_Station",
    ];
    B[38][55] = [30, "Gore Lane", "Gore_Lane"];
    B[39][55] = [30, "Herne Drive", "Herne_Drive"];
    B[30][56] = [
      27,
      "Bathe Boulevard Railway Station",
      "Bathe_Boulevard_Railway_Station",
    ];
    B[31][56] = [30, "Haig Grove", "Haig_Grove"];
    B[32][56] = [30, "Starling Street", "Starling_Street"];
    B[33][56] = [8, "Cemetery", "Cemetery_56%2C33"];
    B[34][56] = [30, "Bateson Street", "Bateson_Street"];
    B[35][56] = [8, "Cemetery", "Cemetery_56%2C35"];
    B[36][56] = [21, "Spinks Monument", "The_Spinks_Monument"];
    B[37][56] = [30, "Stiles Row", "Stiles_Row"];
    B[38][56] = [33, "Wasteland", "Wasteland_56%2C38"];
    B[39][56] = [17, "Junkyard", "Junkyard_56%2C39"];
    B[30][57] = [
      15,
      "St Helena's Hospital",
      "St._Helena%27s_Hospital_%28Roachtown%29",
    ];
    B[31][57] = [16, "Duke Hotel", "The_Duke_Hotel"];
    B[32][57] = [30, "Bignal Lane", "Bignal_Lane_%28Roachtown%29"];
    B[33][57] = [30, "Coome Drive", "Coome_Drive"];
    B[34][57] = [23, "Chudley Building", "The_Chudley_Building"];
    B[35][57] = [31, "Sparkes Towers", "Sparkes_Towers"];
    B[36][57] = [30, "Newbery Street", "Newbery_Street"];
    B[37][57] = [5, "Hepburn Building", "The_Hepburn_Building"];
    B[38][57] = [33, "Wasteland", "Wasteland_57%2C38"];
    B[39][57] = [33, "Wasteland", "Wasteland_57%2C39"];
    B[30][58] = [16, "Gifford Motel", "The_Gifford_Motel"];
    B[31][58] = [5, "Cosway Building", "The_Cosway_Building"];
    B[32][58] = [32, "Warehouse", "Warehouse_58%2C32"];
    B[33][58] = [30, "James Alley", "James_Alley"];
    B[34][58] = [4, "Hegarty Bank", "Hegarty_Bank"];
    B[35][58] = [30, "Gilbert Square", "Gilbert_Square"];
    B[36][58] = [30, "Cass Row", "Cass_Row"];
    B[37][58] = [30, "Failand Street", "Failand_Street"];
    B[38][58] = [
      27,
      "Newstead Street Railway Station",
      "Newstead_Street_Railway_Station",
    ];
    B[39][58] = [30, "Hewlett Alley", "Hewlett_Alley"];
    B[30][59] = [16, "Manly Motel", "The_Manly_Motel"];
    B[31][59] = [30, "Chisholm Square", "Chisholm_Square"];
    B[32][59] = [22, "Bingham Museum", "The_Bingham_Museum"];
    B[33][59] = [17, "Junkyard", "Junkyard_59%2C33"];
    B[34][59] = [6, "Carpark", "Carpark_59%2C34"];
    B[35][59] = [3, "Furber Auto Repair", "Furber_Auto_Repair"];
    B[36][59] = [2, "Connor Arms", "The_Connor_Arms"];
    B[37][59] = [5, "Pither Building", "The_Pither_Building"];
    B[38][59] = [30, "Peacock Road", "Peacock_Road"];
    B[39][59] = [25, "Veal Lane Police Dept", "Veal_Lane_Police_Department"];

    // ------------------------------------------------
    // Brooksville
    // ------------------------------------------------
    B[30][60] = [18, "Kay Library", "Kay_Library"];
    B[31][60] = [17, "Junkyard", "Junkyard_60%2C31"];
    B[32][60] = [17, "Junkyard", "Junkyard_60%2C32"];
    B[33][60] = [30, "Paddon Square", "Paddon_Square"];
    B[34][60] = [18, "Gough Library", "Gough_Library"];
    B[35][60] = [22, "Heddington Museum", "The_Heddington_Museum"];
    B[36][60] = [12, "Factory", "Factory_60%2C36"];
    B[37][60] = [2, "Rookey Arms", "The_Rookey_Arms"];
    B[38][60] = [
      5,
      "Pridham Building",
      "The_Pridham_Building_%28Randallbank%29",
    ];
    B[39][60] = [10, "Budge Cinema", "Budge_Cinema"];
    B[30][61] = [16, "Faber Motel", "The_Faber_Motel"];
    B[31][61] = [
      15,
      "St Columbanus's Hospital",
      "St._Columbanus%27s_Hospital_%28Randallbank%29",
    ];
    B[32][61] = [6, "Carpark", "Carpark_61%2C32"];
    B[33][61] = [15, "Martin General Hospital", "Martin_General_Hospital"];
    B[34][61] = [
      25,
      "Gillett Place Police Dept",
      "Gillett_Place_Police_Department",
    ];
    B[35][61] = [30, "Harewood Drive", "Harewood_Drive"];
    B[36][61] = [30, "Stanser Row", "Stanser_Row"];
    B[37][61] = [30, "Dowsett Alley", "Dowsett_Alley"];
    B[38][61] = [30, "Tagg Road", "Tagg_Road"];
    B[39][61] = [30, "Gale Lane", "Gale_Lane"];
    B[30][62] = [17, "Junkyard", "Junkyard_62%2C30"];
    B[31][62] = [15, "Simeon General Hospital", "Simeon_General_Hospital"];
    B[32][62] = [2, "Brimblecombe Arms", "The_Brimblecombe_Arms"];
    B[33][62] = [33, "Wasteland", "Wasteland_62%2C33"];
    B[34][62] = [6, "Carpark", "Carpark_62%2C34"];
    B[35][62] = [17, "Junkyard", "Junkyard_62%2C35"];
    B[36][62] = [33, "Wasteland", "Wasteland_62%2C36"];
    B[37][62] = [5, "Edmondson Building", "The_Edmondson_Building"];
    B[38][62] = [30, "Sleway Row", "Sleway_Row"];
    B[39][62] = [30, "Crockford Grove", "Crockford_Grove"];
    B[30][63] = [23, "Littlehales Building", "The_Littlehales_Building"];
    B[31][63] = [30, "Staite Plaza", "Staite_Plaza"];
    B[32][63] = [10, "Parslow Cinema", "Parslow_Cinema"];
    B[33][63] = [5, "Winlsey Building", "The_Winlsey_Building"];
    B[34][63] = [3, "Paterson Auto Repair", "Paterson_Auto_Repair"];
    B[35][63] = [30, "Mylrea Street", "Mylrea_Street"];
    B[36][63] = [
      27,
      "Woolsett Way Railway Station",
      "Woolsett_Way_Railway_Station",
    ];
    B[37][63] = [30, "Hiskett Alley", "Hiskett_Alley"];
    B[38][63] = [5, "Finnerty Building", "The_Finnerty_Building"];
    B[39][63] = [32, "Warehouse", "Warehouse_63%2C39"];
    B[30][64] = [24, "Kingdom Park", "Kingdom_Park"];
    B[31][64] = [18, "MacMillan Library", "MacMillan_Library"];
    B[32][64] = [30, "Pynny Drive", "Pynny_Drive"];
    B[33][64] = [2, "Burbidge Arms", "The_Burbidge_Arms"];
    B[34][64] = [3, "Chaldecott Auto Repair", "Chaldecott_Auto_Repair"];
    B[35][64] = [30, "Hawke Street", "Hawke_Street"];
    B[36][64] = [30, "Skuse Boulevard", "Skuse_Boulevard"];
    B[37][64] = [30, "Clothier Lane", "Clothier_Lane_%28Randallbank%29"];
    B[38][64] = [30, "Ludlam Alley", "Ludlam_Alley"];
    B[39][64] = [5, "Feadon Building", "The_Feadon_Building"];
    B[30][65] = [30, "Jarvis Lane", "Jarvis_Lane"];
    B[31][65] = [6, "Carpark", "Carpark_65%2C31"];
    B[32][65] = [
      5,
      "Broadfoot Building",
      "The_Broadfoot_Building_%28Randallbank%29",
    ];
    B[33][65] = [9, "St Vitalian's Church", "St._Vitalian%27s_Church"];
    B[34][65] = [8, "Cemetery", "Cemetery_65%2C34"];
    B[35][65] = [30, "Westbrook Boulevard", "Westbrook_Boulevard"];
    B[36][65] = [30, "Christian Boulevard", "Christian_Boulevard"];
    B[37][65] = [5, "Roberts Building", "The_Roberts_Building"];
    B[38][65] = [32, "Warehouse", "Warehouse_65%2C38"];
    B[39][65] = [5, "Hopjohns Building", "The_Hopjohns_Building"];
    B[30][66] = [30, "Pigeon Way", "Pigeon_Way_%28Randallbank%29"];
    B[31][66] = [30, "Birkett Way", "Birkett_Way"];
    B[32][66] = [30, "Butler Avenue", "Butler_Avenue_%28Randallbank%29"];
    B[33][66] = [28, "Higley Avenue School", "Higley_Avenue_School"];
    B[34][66] = [30, "Threadgold Square", "Threadgold_Square"];
    B[35][66] = [30, "Pewters Avenue", "Pewters_Avenue"];
    B[36][66] = [33, "Wasteland", "Wasteland_66%2C36"];
    B[37][66] = [
      5,
      "Williames Building",
      "The_Williames_Building_%28Randallbank%29",
    ];
    B[38][66] = [32, "Warehouse", "Warehouse_66%2C38"];
    B[39][66] = [30, "Pinder Square", "Pinder_Square"];
    B[30][67] = [3, "Chiles Auto Repair", "Chiles_Auto_Repair"];
    B[31][67] = [11, "Club Polkinghorne", "Club_Polkinghorne"];
    B[32][67] = [33, "Wasteland", "Wasteland_67%2C32"];
    B[33][67] = [18, "Farewell Library", "Farewell_Library"];
    B[34][67] = [9, "St Leo's Church", "St._Leo%27s_Church"];
    B[35][67] = [30, "Erghum Alley", "Erghum_Alley"];
    B[36][67] = [30, "Mole Way", "Mole_Way"];
    B[37][67] = [22, "Cocker Museum", "The_Cocker_Museum"];
    B[38][67] = [5, "Parslow Building", "The_Parslow_Building"];
    B[39][67] = [3, "Tufton Auto Repair", "Tufton_Auto_Repair"];
    B[30][68] = [
      25,
      "Kelreher Walk Police Dept",
      "Kelreher_Walk_Police_Department",
    ];
    B[31][68] = [30, "Hambling Road", "Hambling_Road"];
    B[32][68] = [10, "Duckworth Cinema", "Duckworth_Cinema"];
    B[33][68] = [12, "Factory", "Factory_68%2C33"];
    B[34][68] = [8, "Cemetery", "Cemetery_68%2C34"];
    B[35][68] = [33, "Wasteland", "Wasteland_68%2C35"];
    B[36][68] = [
      25,
      "Towner Lane Police Dept",
      "Towner_Lane_Police_Department",
    ];
    B[37][68] = [30, "Lumley Alley", "Lumley_Alley"];
    B[38][68] = [12, "Factory", "Factory_68%2C38"];
    B[39][68] = [3, "Balkwill Auto Repair", "Balkwill_Auto_Repair"];
    B[30][69] = [30, "Robinson Road", "Robinson_Road"];
    B[31][69] = [
      27,
      "Seamour Walk Railway Station",
      "Seamour_Walk_Railway_Station",
    ];
    B[32][69] = [18, "Challenger Library", "Challenger_Library"];
    B[33][69] = [30, "Streeten Lane", "Streeten_Lane"];
    B[34][69] = [10, "Flaherty Cinema", "Flaherty_Cinema"];
    B[35][69] = [17, "Junkyard", "Junkyard_69%2C35"];
    B[36][69] = [31, "Inggs Towers", "Inggs_Towers"];
    B[37][69] = [5, "Hindley Building", "The_Hindley_Building"];
    B[38][69] = [4, "Dibben Bank", "Dibben_Bank"];
    B[39][69] = [4, "Pennecard Bank", "Pennecard_Bank"];

    // ------------------------------------------------
    // Greentown
    // ------------------------------------------------
    B[30][70] = [5, "Wrigley Building", "The_Wrigley_Building_%28Heytown%29"];
    B[31][70] = [30, "French Avenue", "French_Avenue"];
    B[32][70] = [5, "Ashment Building", "The_Ashment_Building"];
    B[33][70] = [33, "Wasteland", "Wasteland_70%2C33"];
    B[34][70] = [2, "Dyett Arms", "The_Dyett_Arms"];
    B[35][70] = [30, "Preller Road", "Preller_Road"];
    B[36][70] = [2, "Orledge Arms", "The_Orledge_Arms"];
    B[37][70] = [
      27,
      "Shackle Walk Railway Station",
      "Shackle_Walk_Railway_Station",
    ];
    B[38][70] = [30, "Newberry Way", "Newberry_Way"];
    B[39][70] = [30, "Smythies Lane", "Smythies_Lane"];
    B[30][71] = [30, "Oakley Crescent", "Oakley_Crescent"];
    B[31][71] = [30, "Saddington Alley", "Saddington_Alley"];
    B[32][71] = [4, "Chavasse Bank", "Chavasse_Bank"];
    B[33][71] = [30, "Outram Drive", "Outram_Drive"];
    B[34][71] = [
      27,
      "Cull Boulevard Railway Station",
      "Cull_Boulevard_Railway_Station",
    ];
    B[35][71] = [30, "Gunningham Square", "Gunningham_Square"];
    B[36][71] = [30, "Lax Place", "Lax_Place"];
    B[37][71] = [9, "St Cynllo's Church", "St._Cynllo%27s_Church"];
    B[38][71] = [30, "Crees Lane", "Crees_Lane"];
    B[39][71] = [21, "Rust Monument", "The_Rust_Monument"];
    B[30][72] = [21, "Haynes Monument", "The_Haynes_Monument"];
    B[31][72] = [5, "Ryan Building", "The_Ryan_Building"];
    B[32][72] = [24, "Fitzmaurice Park", "Fitzmaurice_Park"];
    B[33][72] = [33, "Wasteland", "Wasteland_72%2C33"];
    B[34][72] = [5, "Bustin Building", "The_Bustin_Building"];
    B[35][72] = [16, "Billingham Hotel", "The_Billingham_Hotel"];
    B[36][72] = [30, "Ladner Avenue", "Ladner_Avenue"];
    B[37][72] = [30, "Riste Avenue", "Riste_Avenue"];
    B[38][72] = [8, "Cemetery", "Cemetery_72%2C38"];
    B[39][72] = [30, "Bulmer Lane", "Bulmer_Lane"];
    B[30][73] = [30, "Satchell Place", "Satchell_Place"];
    B[31][73] = [30, "Taylour Street", "Taylour_Street"];
    B[32][73] = [
      9,
      "St Onuphrius's Church",
      "St._Onuphrius%27s_Church_%28Heytown%29",
    ];
    B[33][73] = [28, "Keyford Grove School", "Keyford_Grove_School"];
    B[34][73] = [
      27,
      "Gwilliam Boulevard Railway Station",
      "Gwilliam_Boulevard_Railway_Station",
    ];
    B[35][73] = [10, "Dupe Cinema", "Dupe_Cinema"];
    B[36][73] = [5, "Scadding Building", "The_Scadding_Building"];
    B[37][73] = [30, "Marchant Crescent", "Marchant_Crescent"];
    B[38][73] = [17, "Junkyard", "Junkyard_73%2C38"];
    B[39][73] = [30, "Lessey Row", "Lessey_Row"];
    B[30][74] = [
      15,
      "Sixtus General Hospital",
      "Sixtus_General_Hospital_%28Heytown%29",
    ];
    B[31][74] = [30, "Harry Row", "Harry_Row"];
    B[32][74] = [
      25,
      "Chaffey Alley Police Dept",
      "Chaffey_Alley_Police_Department",
    ];
    B[33][74] = [30, "Maishman Crescent", "Maishman_Crescent"];
    B[34][74] = [30, "McMullen Crescent", "McMullen_Crescent"];
    B[35][74] = [9, "St Miltiades's Church", "St._Miltiades%27s_Church"];
    B[36][74] = [8, "Cemetery", "Cemetery_74%2C36"];
    B[37][74] = [
      27,
      "Glenmore Boulevard Railway Station",
      "Glenmore_Boulevard_Railway_Station",
    ];
    B[38][74] = [13, "Dyment Row Fire Station", "Dyment_Row_Fire_Station"];
    B[39][74] = [17, "Junkyard", "Junkyard_74%2C39"];
    B[30][75] = [30, "Surridge Place", "Surridge_Place"];
    B[31][75] = [22, "Syms Museum", "The_Syms_Museum"];
    B[32][75] = [30, "Rawkins Plaza", "Rawkins_Plaza_%28Heytown%29"];
    B[33][75] = [32, "Warehouse", "Warehouse_75%2C33"];
    B[34][75] = [30, "Hussey Lane", "Hussey_Lane_%28Heytown%29"];
    B[35][75] = [
      27,
      "Polgrahan Grove Railway Station",
      "Polgrahan_Grove_Railway_Station",
    ];
    B[36][75] = [32, "Warehouse", "Warehouse_75%2C36"];
    B[37][75] = [24, "Dotin Park", "Dotin_Park"];
    B[38][75] = [30, "Lettey Drive", "Lettey_Drive"];
    B[39][75] = [32, "Warehouse", "Warehouse_75%2C39"];
    B[30][76] = [11, "Club Hesse", "Club_Hesse"];
    B[31][76] = [33, "Wasteland", "Wasteland_76%2C31"];
    B[32][76] = [10, "Burchall Cinema", "Burchall_Cinema"];
    B[33][76] = [30, "Woollcombe Way", "Woollcombe_Way"];
    B[34][76] = [16, "Self Hotel", "The_Self_Hotel"];
    B[35][76] = [6, "Carpark", "Carpark_76%2C35"];
    B[36][76] = [12, "Factory", "Factory_76%2C36"];
    B[37][76] = [33, "Wasteland", "Wasteland_76%2C37"];
    B[38][76] = [30, "Preen Drive", "Preen_Drive"];
    B[39][76] = [33, "Wasteland", "Wasteland_76%2C39"];
    B[30][77] = [33, "Wasteland", "Wasteland_77%2C30"];
    B[31][77] = [4, "Warren Bank", "Warren_Bank"];
    B[32][77] = [5, "Morris Building", "The_Morris_Building"];
    B[33][77] = [22, "Bowles Museum", "The_Bowles_Museum"];
    B[34][77] = [30, "Demack Way", "Demack_Way"];
    B[35][77] = [30, "Mester Square", "Mester_Square"];
    B[36][77] = [5, "Steeds Building", "The_Steeds_Building"];
    B[37][77] = [22, "Tudgay Museum", "The_Tudgay_Museum"];
    B[38][77] = [33, "Wasteland", "Wasteland_77%2C38"];
    B[39][77] = [30, "Vigors Road", "Vigors_Road"];
    B[30][78] = [24, "Horwill Park", "Horwill_Park"];
    B[31][78] = [33, "Wasteland", "Wasteland_78%2C31"];
    B[32][78] = [21, "Dymond Monument", "The_Dymond_Monument"];
    B[33][78] = [24, "Coomb Park", "Coomb_Park"];
    B[34][78] = [18, "Inder Library", "Inder_Library"];
    B[35][78] = [11, "Club Swabey", "Club_Swabey_%28Heytown%29"];
    B[36][78] = [23, "Usher Building", "The_Usher_Building"];
    B[37][78] = [32, "Warehouse", "Warehouse_78%2C37"];
    B[38][78] = [31, "Ostler Towers", "Ostler_Towers"];
    B[39][78] = [30, "Wyse Walk", "Wyse_Walk"];
    B[30][79] = [30, "Swale Grove", "Swale_Grove"];
    B[31][79] = [30, "Hayte Row", "Hayte_Row"];
    B[32][79] = [
      27,
      "Windham Street Railway Station",
      "Windham_Street_Railway_Station",
    ];
    B[33][79] = [
      9,
      "St Swithun's Church",
      "St._Swithun%27s_Church_%28Heytown%29",
    ];
    B[34][79] = [30, "Jarnell Walk", "Jarnell_Walk"];
    B[35][79] = [3, "Nuttycombe Auto Repair", "Nuttycombe_Auto_Repair"];
    B[36][79] = [2, "Godson Arms", "The_Godson_Arms"];
    B[37][79] = [22, "Craske Museum", "The_Craske_Museum"];
    B[38][79] = [
      25,
      "Goldney Place Police Dept",
      "Goldney_Place_Police_Department",
    ];
    B[39][79] = [5, "Manninge Building", "The_Manninge_Building"];

    // ------------------------------------------------
    // Dartside
    // ------------------------------------------------
    B[30][80] = [16, "Wiles Motel", "The_Wiles_Motel"];
    B[31][80] = [22, "Silcox Museum", "The_Silcox_Museum"];
    B[32][80] = [6, "Carpark", "Carpark_80%2C32"];
    B[33][80] = [30, "Runcieman Lane", "Runcieman_Lane"];
    B[34][80] = [8, "Cemetery", "Cemetery_80%2C34"];
    B[35][80] = [5, "Vellacott Building", "The_Vellacott_Building"];
    B[36][80] = [
      15,
      "Cornelius General Hospital",
      "Cornelius_General_Hospital_%28Spracklingbank%29",
    ];
    B[37][80] = [30, "Burns Place", "Burns_Place"];
    B[38][80] = [30, "Schreiber Walk", "Schreiber_Walk"];
    B[39][80] = [30, "Elphick Walk", "Elphick_Walk_%28Spracklingbank%29"];
    B[30][81] = [22, "Mackworth Museum", "The_Mackworth_Museum"];
    B[31][81] = [6, "Carpark", "Carpark_81%2C31"];
    B[32][81] = [33, "Wasteland", "Wasteland_81%2C32"];
    B[33][81] = [30, "Neave Grove", "Neave_Grove"];
    B[34][81] = [
      5,
      "Sharman Building",
      "The_Sharman_Building_%28Spracklingbank%29",
    ];
    B[35][81] = [3, "Woolf Auto Repair", "Woolf_Auto_Repair"];
    B[36][81] = [30, "Leggatt Square", "Leggatt_Square"];
    B[37][81] = [3, "Hickling Auto Repair", "Hickling_Auto_Repair"];
    B[38][81] = [18, "Saltrow Library", "Saltrow_Library"];
    B[39][81] = [32, "Warehouse", "Warehouse_81%2C39"];
    B[30][82] = [6, "Carpark", "Carpark_82%2C30"];
    B[31][82] = [24, "Hellings Park", "Hellings_Park"];
    B[32][82] = [2, "Montagu Arms", "The_Montagu_Arms"];
    B[33][82] = [2, "Banks Arms", "The_Banks_Arms"];
    B[34][82] = [9, "St Clare's Church", "St._Clare%27s_Church"];
    B[35][82] = [6, "Carpark", "Carpark_82%2C35"];
    B[36][82] = [4, "Cary Bank", "Cary_Bank"];
    B[37][82] = [24, "McDougall Park", "McDougall_Park"];
    B[38][82] = [10, "Harnap Cinema", "Harnap_Cinema"];
    B[39][82] = [30, "Blest Place", "Blest_Place"];
    B[30][83] = [12, "Factory", "Factory_83%2C30"];
    B[31][83] = [33, "Wasteland", "Wasteland_83%2C31"];
    B[32][83] = [18, "Hecks Library", "Hecks_Library"];
    B[33][83] = [3, "Rennie Auto Repair", "Rennie_Auto_Repair"];
    B[34][83] = [30, "Shelley Road", "Shelley_Road"];
    B[35][83] = [30, "Bowles Street", "Bowles_Street"];
    B[36][83] = [11, "Club Storer", "Club_Storer"];
    B[37][83] = [30, "Opalinska Road", "Opalinska_Road"];
    B[38][83] = [30, "Peryer Place", "Peryer_Place"];
    B[39][83] = [6, "Carpark", "Carpark_83%2C39"];
    B[30][84] = [
      27,
      "Mornington Way Railway Station",
      "Mornington_Way_Railway_Station",
    ];
    B[31][84] = [18, "Tambling Library", "Tambling_Library"];
    B[32][84] = [13, "Millett Walk Fire Station", "Millett_Walk_Fire_Station"];
    B[33][84] = [28, "Grandfield Alley School", "Grandfield_Alley_School"];
    B[34][84] = [30, "Ritchie Plaza", "Ritchie_Plaza"];
    B[35][84] = [2, "Wardropper Arms", "The_Wardropper_Arms"];
    B[36][84] = [10, "Salvage Cinema", "Salvage_Cinema"];
    B[37][84] = [33, "Wasteland", "Wasteland_84%2C37"];
    B[38][84] = [30, "Langford Avenue", "Langford_Avenue"];
    B[39][84] = [2, "Stanser Arms", "The_Stanser_Arms"];
    B[30][85] = [32, "Warehouse", "Warehouse_85%2C30"];
    B[31][85] = [30, "Ashman Row", "Ashman_Row"];
    B[32][85] = [5, "Coss Building", "The_Coss_Building_%28Spracklingbank%29"];
    B[33][85] = [3, "Fackerell Auto Repair", "Fackerell_Auto_Repair"];
    B[34][85] = [30, "Cowdry Walk", "Cowdry_Walk_%28Spracklingbank%29"];
    B[35][85] = [30, "Raesin Grove", "Raesin_Grove"];
    B[36][85] = [
      13,
      "Cudworth Lane Fire Station",
      "Cudworth_Lane_Fire_Station",
    ];
    B[37][85] = [30, "Manktelow Square", "Manktelow_Square"];
    B[38][85] = [
      25,
      "Chippett Grove Police Dept",
      "Chippett_Grove_Police_Department",
    ];
    B[39][85] = [23, "Dewell Building", "The_Dewell_Building"];
    B[30][86] = [30, "Eastwick Drive", "Eastwick_Drive"];
    B[31][86] = [30, "Slann Boulevard", "Slann_Boulevard"];
    B[32][86] = [30, "Whittingham Lane", "Whittingham_Lane"];
    B[33][86] = [12, "Factory", "Factory_86%2C33"];
    B[34][86] = [16, "Dobson Motel", "The_Dobson_Motel"];
    B[35][86] = [22, "Mickelson Museum", "The_Mickelson_Museum"];
    B[36][86] = [30, "Barstow Square", "Barstow_Square"];
    B[37][86] = [32, "Warehouse", "Warehouse_86%2C37"];
    B[38][86] = [
      9,
      "St Barnabas's Church",
      "St._Barnabas%27s_Church_%28Spracklingbank%29",
    ];
    B[39][86] = [6, "Carpark", "Carpark_86%2C39"];
    B[30][87] = [
      5,
      "Rycroft Building",
      "The_Rycroft_Building_%28Spracklingbank%29",
    ];
    B[31][87] = [30, "Sparey Boulevard", "Sparey_Boulevard"];
    B[32][87] = [5, "Simper Building", "The_Simper_Building"];
    B[33][87] = [6, "Carpark", "Carpark_87%2C33"];
    B[34][87] = [30, "Stollery Street", "Stollery_Street"];
    B[35][87] = [33, "Wasteland", "Wasteland_87%2C35"];
    B[36][87] = [30, "Pargitter Boulevard", "Pargitter_Boulevard"];
    B[37][87] = [30, "Faraker Plaza", "Faraker_Plaza"];
    B[38][87] = [8, "Cemetery", "Cemetery_87%2C38"];
    B[39][87] = [
      27,
      "Hopping Boulevard Railway Station",
      "Hopping_Boulevard_Railway_Station",
    ];
    B[30][88] = [31, "Mauger Towers", "Mauger_Towers"];
    B[31][88] = [17, "Junkyard", "Junkyard_88%2C31"];
    B[32][88] = [
      27,
      "Rawlinson Drive Railway Station",
      "Rawlinson_Drive_Railway_Station",
    ];
    B[33][88] = [10, "Dawney Cinema", "Dawney_Cinema"];
    B[34][88] = [30, "Marshalsey Road", "Marshalsey_Road"];
    B[35][88] = [30, "Hines Plaza", "Hines_Plaza"];
    B[36][88] = [30, "Cundham Alley", "Cundham_Alley"];
    B[37][88] = [5, "Jago Building", "The_Jago_Building"];
    B[38][88] = [30, "Wisby Plaza", "Wisby_Plaza"];
    B[39][88] = [5, "Mees Building", "The_Mees_Building_%28Spracklingbank%29"];
    B[30][89] = [30, "Ham Lane", "Ham_Lane"];
    B[31][89] = [
      27,
      "Mechel Drive Railway Station",
      "Mechel_Drive_Railway_Station",
    ];
    B[32][89] = [18, "Clements Library", "Clements_Library"];
    B[33][89] = [30, "Dewell Way", "Dewell_Way"];
    B[34][89] = [30, "Herne Street", "Herne_Street"];
    B[35][89] = [6, "Carpark", "Carpark_89%2C35"];
    B[36][89] = [18, "Henslow Library", "Henslow_Library"];
    B[37][89] = [22, "Pepperd Museum", "The_Pepperd_Museum"];
    B[38][89] = [6, "Carpark", "Carpark_89%2C38"];
    B[39][89] = [30, "Crosland Lane", "Crosland_Lane"];

    // ------------------------------------------------
    // Williamsville
    // ------------------------------------------------
    B[30][90] = [17, "Junkyard", "Junkyard_90%2C30"];
    B[31][90] = [30, "Moorhouse Way", "Moorhouse_Way"];
    B[32][90] = [30, "Santler Road", "Santler_Road"];
    B[33][90] = [31, "Balman Towers", "Balman_Towers"];
    B[34][90] = [11, "Club MacKerel", "Club_MacKerel"];
    B[35][90] = [30, "Saunders Walk", "Saunders_Walk"];
    B[36][90] = [
      25,
      "Shadwick Walk Police Dept",
      "Shadwick_Walk_Police_Department",
    ];
    B[37][90] = [5, "Thurtle Building", "The_Thurtle_Building"];
    B[38][90] = [33, "Wasteland", "Wasteland_90%2C38"];
    B[39][90] = [30, "Krinks Boulevard", "Krinks_Boulevard_%28Paynterton%29"];
    B[30][91] = [
      27,
      "Swabey Grove Railway Station",
      "Swabey_Grove_Railway_Station",
    ];
    B[31][91] = [30, "Dobson Avenue", "Dobson_Avenue"];
    B[32][91] = [24, "Moorman Park", "Moorman_Park"];
    B[33][91] = [33, "Wasteland", "Wasteland_91%2C33"];
    B[34][91] = [30, "Stanfield Road", "Stanfield_Road"];
    B[35][91] = [31, "Reakes Towers", "Reakes_Towers"];
    B[36][91] = [24, "Garret Park", "Garret_Park"];
    B[37][91] = [5, "Bath Building", "The_Bath_Building"];
    B[38][91] = [9, "St Abraham's Church", "St._Abraham%27s_Church"];
    B[39][91] = [30, "Garwood Way", "Garwood_Way"];
    B[30][92] = [11, "Club Osmonton", "Club_Osmonton"];
    B[31][92] = [15, "St Isidore's Hospital", "St._Isidore%27s_Hospital"];
    B[32][92] = [22, "Sumption Museum", "The_Sumption_Museum"];
    B[33][92] = [30, "Douch Street", "Douch_Street"];
    B[34][92] = [
      27,
      "Tolly Grove Railway Station",
      "Tolly_Grove_Railway_Station",
    ];
    B[35][92] = [21, "Bissex Monument", "The_Bissex_Monument"];
    B[36][92] = [30, "Sidney Row", "Sidney_Row"];
    B[37][92] = [30, "Gamlen Row", "Gamlen_Row"];
    B[38][92] = [23, "Packe Building", "The_Packe_Building"];
    B[39][92] = [
      23,
      "Gracewood Building",
      "The_Gracewood_Building_%28Paynterton%29",
    ];
    B[30][93] = [10, "Caines Cinema", "Caines_Cinema"];
    B[31][93] = [30, "Stokell Road", "Stokell_Road"];
    B[32][93] = [30, "Burrough Way", "Burrough_Way"];
    B[33][93] = [33, "Wasteland", "Wasteland_93%2C33"];
    B[34][93] = [22, "Milligan Museum", "The_Milligan_Museum"];
    B[35][93] = [5, "Smither Building", "The_Smither_Building"];
    B[36][93] = [22, "Denning Museum", "The_Denning_Museum"];
    B[37][93] = [30, "Gargery Lane", "Gargery_Lane"];
    B[38][93] = [
      9,
      "St Lazarus's Church",
      "St._Lazarus%27s_Church_%28Paynterton%29",
    ];
    B[39][93] = [8, "Cemetery", "Cemetery_93%2C39"];
    B[30][94] = [13, "Thorp Way Fire Station", "Thorp_Way_Fire_Station"];
    B[31][94] = [10, "Fowin Cinema", "Fowin_Cinema"];
    B[32][94] = [23, "Montacute Building", "The_Montacute_Building"];
    B[33][94] = [16, "Donovan Motel", "The_Donovan_Motel"];
    B[34][94] = [30, "Pasker Square", "Pasker_Square"];
    B[35][94] = [24, "Germain Park", "Germain_Park"];
    B[36][94] = [30, "Hollbrook Square", "Hollbrook_Square"];
    B[37][94] = [30, "Charteris Avenue", "Charteris_Avenue"];
    B[38][94] = [2, "Heginbothom Arms", "The_Heginbothom_Arms"];
    B[39][94] = [17, "Junkyard", "Junkyard_94%2C39"];
    B[30][95] = [30, "McDonald Alley", "McDonald_Alley"];
    B[31][95] = [23, "Robbins Building", "The_Robbins_Building"];
    B[32][95] = [9, "St Pius's Church", "St._Pius%27s_Church_%28Paynterton%29"];
    B[33][95] = [30, "Harp Walk", "Harp_Walk_%28Paynterton%29"];
    B[34][95] = [30, "Armytage Walk", "Armytage_Walk"];
    B[35][95] = [30, "Kershaw Row", "Kershaw_Row"];
    B[36][95] = [30, "Jennings Avenue", "Jennings_Avenue"];
    B[37][95] = [23, "Pender Building", "The_Pender_Building"];
    B[38][95] = [33, "Wasteland", "Wasteland_95%2C38"];
    B[39][95] = [28, "Faulkner Avenue School", "Faulkner_Avenue_School"];
    B[30][96] = [17, "Junkyard", "Junkyard_96%2C30"];
    B[31][96] = [5, "Woollacott Building", "The_Woollacott_Building"];
    B[32][96] = [12, "Factory", "Factory_96%2C32"];
    B[33][96] = [13, "Morton Lane Fire Station", "Morton_Lane_Fire_Station"];
    B[34][96] = [30, "Oldroyd Way", "Oldroyd_Way"];
    B[35][96] = [30, "Hyman Street", "Hyman_Street"];
    B[36][96] = [11, "Club Freestone", "Club_Freestone"];
    B[37][96] = [17, "Junkyard", "Junkyard_96%2C37"];
    B[38][96] = [22, "Genge Museum", "The_Genge_Museum"];
    B[39][96] = [30, "Tilly Plaza", "Tilly_Plaza"];
    B[30][97] = [33, "Wasteland", "Wasteland_97%2C30"];
    B[31][97] = [31, "Whetcombe Towers", "Whetcombe_Towers"];
    B[32][97] = [4, "Martland Bank", "Martland_Bank"];
    B[33][97] = [30, "Crosswell Walk", "Crosswell_Walk"];
    B[34][97] = [10, "Chiswick Cinema", "Chiswick_Cinema"];
    B[35][97] = [
      13,
      "Dunford Lane Fire Station",
      "Dunford_Lane_Fire_Station_%28Paynterton%29",
    ];
    B[36][97] = [30, "Farrent Street", "Farrent_Street"];
    B[37][97] = [30, "Longmate Plaza", "Longmate_Plaza"];
    B[38][97] = [22, "Maxwell Museum", "The_Maxwell_Museum"];
    B[39][97] = [6, "Carpark", "Carpark_97%2C39"];
    B[30][98] = [5, "Cottrell Building", "The_Cottrell_Building"];
    B[31][98] = [5, "Beater Building", "The_Beater_Building"];
    B[32][98] = [30, "Wares Plaza", "Wares_Plaza"];
    B[33][98] = [17, "Junkyard", "Junkyard_98%2C33"];
    B[34][98] = [6, "Carpark", "Carpark_98%2C34"];
    B[35][98] = [31, "Marchetti Towers", "Marchetti_Towers"];
    B[36][98] = [30, "Thicke Row", "Thicke_Row"];
    B[37][98] = [31, "Aris Towers", "Aris_Towers"];
    B[38][98] = [33, "Wasteland", "Wasteland_98%2C38"];
    B[39][98] = [17, "Junkyard", "Junkyard_98%2C39"];
    B[30][99] = [15, "Agathius General Hospital", "Agathius_General_Hospital"];
    B[31][99] = [30, "Brunskill Lane", "Brunskill_Lane"];
    B[32][99] = [15, "Leo General Hospital", "Leo_General_Hospital"];
    B[33][99] = [
      28,
      "Braham Boulevard School",
      "Braham_Boulevard_School_%28Paynterton%29",
    ];
    B[34][99] = [5, "Barter Building", "The_Barter_Building"];
    B[35][99] = [18, "Warnel Library", "Warnel_Library"];
    B[36][99] = [30, "Kelly Lane", "Kelly_Lane_%28Paynterton%29"];
    B[37][99] = [30, "Robins Crescent", "Robins_Crescent"];
    B[38][99] = [30, "Theirs Crescent", "Theirs_Crescent"];
    B[39][99] = [
      27,
      "Darnell Plaza Railway Station",
      "Darnell_Plaza_Railway_Station",
    ];

    // ------------------------------------------------
    // East Boundwood
    // ------------------------------------------------
    B[40][0] = [32, "Warehouse", "Warehouse_0%2C40"];
    B[41][0] = [30, "Goodson Square", "Goodson_Square"];
    B[42][0] = [30, "Bird Boulevard", "Bird_Boulevard_%28Owsleybank%29"];
    B[43][0] = [30, "Hardie Square", "Hardie_Square"];
    B[44][0] = [23, "Woodborne Building", "The_Woodborne_Building"];
    B[45][0] = [
      27,
      "Ellicott Place Railway Station",
      "Ellicott_Place_Railway_Station",
    ];
    B[46][0] = [3, "Waller Auto Repair", "Waller_Auto_Repair"];
    B[47][0] = [21, "Sendall Monument", "The_Sendall_Monument"];
    B[48][0] = [17, "Junkyard", "Junkyard_0%2C48"];
    B[49][0] = [28, "Kittle Alley School", "Kittle_Alley_School"];
    B[40][1] = [18, "Leggetter Library", "Leggetter_Library"];
    B[41][1] = [21, "Armastrong Monument", "The_Armastrong_Monument"];
    B[42][1] = [6, "Carpark", "Carpark_1%2C42"];
    B[43][1] = [30, "Garson Row", "Garson_Row"];
    B[44][1] = [5, "Dawney Building", "The_Dawney_Building"];
    B[45][1] = [30, "Hodgkinson Drive", "Hodgkinson_Drive"];
    B[46][1] = [30, "Thirlby Walk", "Thirlby_Walk"];
    B[47][1] = [30, "Howord Way", "Howord_Way_%28Owsleybank%29"];
    B[48][1] = [
      15,
      "St Daniel's Hospital",
      "St._Daniel%27s_Hospital_%28Owsleybank%29",
    ];
    B[49][1] = [
      27,
      "Boyer Boulevard Railway Station",
      "Boyer_Boulevard_Railway_Station",
    ];
    B[40][2] = [17, "Junkyard", "Junkyard_2%2C40"];
    B[41][2] = [5, "Barber Building", "The_Barber_Building"];
    B[42][2] = [33, "Wasteland", "Wasteland_2%2C42"];
    B[43][2] = [30, "Polley Way", "Polley_Way"];
    B[44][2] = [33, "Wasteland", "Wasteland_2%2C44"];
    B[45][2] = [10, "Dalgliesh Cinema", "Dalgliesh_Cinema"];
    B[46][2] = [30, "Randell Boulevard", "Randell_Boulevard"];
    B[47][2] = [30, "Percifull Plaza", "Percifull_Plaza"];
    B[48][2] = [33, "Wasteland", "Wasteland_2%2C48"];
    B[49][2] = [
      13,
      "Prideaux Street Fire Station",
      "Prideaux_Street_Fire_Station",
    ];
    B[40][3] = [13, "Parkhouse Way Fire Station", "Parkhouse_Way_Fire_Station"];
    B[41][3] = [30, "Borthwick Alley", "Borthwick_Alley"];
    B[42][3] = [30, "Hazzard Walk", "Hazzard_Walk"];
    B[43][3] = [21, "Pers Monument", "The_Pers_Monument"];
    B[44][3] = [3, "Dobin Auto Repair", "Dobin_Auto_Repair"];
    B[45][3] = [18, "Beale Library", "Beale_Library"];
    B[46][3] = [6, "Carpark", "Carpark_3%2C46"];
    B[47][3] = [30, "Bisshop Square", "Bisshop_Square"];
    B[48][3] = [5, "Willison Building", "The_Willison_Building"];
    B[49][3] = [30, "Wilshe Drive", "Wilshe_Drive"];
    B[40][4] = [22, "Hyson Museum", "The_Hyson_Museum"];
    B[41][4] = [30, "Hopes Row", "Hopes_Row"];
    B[42][4] = [30, "Deed Lane", "Deed_Lane"];
    B[43][4] = [18, "Garland Library", "Garland_Library"];
    B[44][4] = [30, "Sankey Boulevard", "Sankey_Boulevard"];
    B[45][4] = [
      27,
      "Matcham Square Railway Station",
      "Matcham_Square_Railway_Station",
    ];
    B[46][4] = [30, "Wild Place", "Wild_Place"];
    B[47][4] = [16, "Dunning Motel", "The_Dunning_Motel"];
    B[48][4] = [17, "Junkyard", "Junkyard_4%2C48"];
    B[49][4] = [30, "Comitty Alley", "Comitty_Alley"];
    B[40][5] = [30, "Varder Walk", "Varder_Walk"];
    B[41][5] = [
      9,
      "St Columbanus's Church",
      "St._Columbanus%27s_Church_%28Owsleybank%29",
    ];
    B[42][5] = [33, "Wasteland", "Wasteland_5%2C42"];
    B[43][5] = [15, "Aloysius General Hospital", "Aloysius_General_Hospital"];
    B[44][5] = [30, "Holide Way", "Holide_Way"];
    B[45][5] = [10, "Vesey Cinema", "Vesey_Cinema"];
    B[46][5] = [28, "Griff Drive School", "Griff_Drive_School"];
    B[47][5] = [12, "Factory", "Factory_5%2C47"];
    B[48][5] = [12, "Factory", "Factory_5%2C48"];
    B[49][5] = [21, "Whyte Monument", "The_Whyte_Monument"];
    B[40][6] = [5, "Pile Building", "The_Pile_Building"];
    B[41][6] = [33, "Wasteland", "Wasteland_6%2C41"];
    B[42][6] = [16, "Dennis Motel", "The_Dennis_Motel"];
    B[43][6] = [6, "Carpark", "Carpark_6%2C43"];
    B[44][6] = [30, "Eelms Avenue", "Eelms_Avenue"];
    B[45][6] = [30, "McCullough Avenue", "McCullough_Avenue"];
    B[46][6] = [22, "Pitts Museum", "The_Pitts_Museum"];
    B[47][6] = [30, "Cudworth Alley", "Cudworth_Alley"];
    B[48][6] = [28, "Shattock Plaza School", "Shattock_Plaza_School"];
    B[49][6] = [23, "Challes Building", "The_Challes_Building"];
    B[40][7] = [5, "Hellyer Building", "The_Hellyer_Building_%28Owsleybank%29"];
    B[41][7] = [30, "Mains Alley", "Mains_Alley"];
    B[42][7] = [3, "Jervis Auto Repair", "Jervis_Auto_Repair"];
    B[43][7] = [30, "McNamara Drive", "McNamara_Drive"];
    B[44][7] = [5, "Goode Building", "The_Goode_Building"];
    B[45][7] = [6, "Carpark", "Carpark_7%2C45"];
    B[46][7] = [6, "Carpark", "Carpark_7%2C46"];
    B[47][7] = [18, "Harewood Library", "Harewood_Library"];
    B[48][7] = [
      13,
      "Scudamore Plaza Fire Station",
      "Scudamore_Plaza_Fire_Station",
    ];
    B[49][7] = [18, "Collis Library", "Collis_Library"];
    B[40][8] = [5, "Cribb Building", "The_Cribb_Building"];
    B[41][8] = [22, "Troakes Museum", "The_Troakes_Museum"];
    B[42][8] = [11, "Club Burns", "Club_Burns"];
    B[43][8] = [30, "Tailer Row", "Tailer_Row"];
    B[44][8] = [3, "Howard Auto Repair", "Howard_Auto_Repair"];
    B[45][8] = [5, "Crosswell Building", "The_Crosswell_Building"];
    B[46][8] = [24, "Mitchard Park", "Mitchard_Park"];
    B[47][8] = [30, "Harington Boulevard", "Harington_Boulevard"];
    B[48][8] = [21, "Duncan Monument", "The_Duncan_Monument"];
    B[49][8] = [30, "Lye Alley", "Lye_Alley"];
    B[40][9] = [30, "Smallwood Plaza", "Smallwood_Plaza"];
    B[41][9] = [22, "Cother Museum", "The_Cother_Museum"];
    B[42][9] = [28, "Caff Road School", "Caff_Road_School"];
    B[43][9] = [30, "Hawtrey Alley", "Hawtrey_Alley"];
    B[44][9] = [
      25,
      "Ruggevale Walk Police Dept",
      "Ruggevale_Walk_Police_Department",
    ];
    B[45][9] = [30, "Verrell Crescent", "Verrell_Crescent_%28Owsleybank%29"];
    B[46][9] = [17, "Junkyard", "Junkyard_9%2C46"];
    B[47][9] = [30, "Much Boulevard", "Much_Boulevard"];
    B[48][9] = [6, "Carpark", "Carpark_9%2C48"];
    B[49][9] = [22, "Russel Museum", "The_Russel_Museum"];

    // ------------------------------------------------
    // Yagoton
    // ------------------------------------------------
    B[40][10] = [30, "Mitchel Walk", "Mitchel_Walk"];
    B[41][10] = [5, "Bayford Building", "The_Bayford_Building"];
    B[42][10] = [23, "Pankhurst Building", "The_Pankhurst_Building"];
    B[43][10] = [3, "Seear Auto Repair", "Seear_Auto_Repair"];
    B[44][10] = [31, "Bere Towers", "Bere_Towers"];
    B[45][10] = [24, "Perham Park", "Perham_Park"];
    B[46][10] = [24, "Harrison Park", "Harrison_Park"];
    B[47][10] = [2, "Vaughan Arms", "The_Vaughan_Arms"];
    B[48][10] = [
      25,
      "Stockley Walk Police Dept",
      "Stockley_Walk_Police_Department",
    ];
    B[49][10] = [30, "Martindale Road", "Martindale_Road"];
    B[40][11] = [30, "Dauncey Square", "Dauncey_Square"];
    B[41][11] = [24, "Tasker Park", "Tasker_Park"];
    B[42][11] = [30, "Wadden Boulevard", "Wadden_Boulevard"];
    B[43][11] = [30, "Emms Walk", "Emms_Walk"];
    B[44][11] = [30, "Riste Alley", "Riste_Alley"];
    B[45][11] = [30, "Wallbutton Way", "Wallbutton_Way"];
    B[46][11] = [10, "Jouxson Cinema", "Jouxson_Cinema"];
    B[47][11] = [2, "Hateley Arms", "The_Hateley_Arms"];
    B[48][11] = [4, "Maishman Bank", "Maishman_Bank"];
    B[49][11] = [23, "Curme Building", "The_Curme_Building_%28Molebank%29"];
    B[40][12] = [17, "Junkyard", "Junkyard_12%2C40"];
    B[41][12] = [30, "Aston Lane", "Aston_Lane"];
    B[42][12] = [6, "Carpark", "Carpark_12%2C42"];
    B[43][12] = [18, "Tidball Library", "Tidball_Library"];
    B[44][12] = [30, "Frekee Walk", "Frekee_Walk"];
    B[45][12] = [22, "Austwick Museum", "The_Austwick_Museum"];
    B[46][12] = [30, "Stallworthy Square", "Stallworthy_Square_%28Molebank%29"];
    B[47][12] = [7, "St Jude's Cathedral", "St._Jude%27s_Cathedral"];
    B[48][12] = [7, "St Jude's Cathedral", "St._Jude%27s_Cathedral"];
    B[49][12] = [28, "Coffins Lane School", "Coffins_Lane_School"];
    B[40][13] = [30, "Foyle Lane", "Foyle_Lane"];
    B[41][13] = [9, "St Paulinus's Church", "St._Paulinus%27s_Church"];
    B[42][13] = [30, "Cottey Way", "Cottey_Way"];
    B[43][13] = [30, "Ryles Avenue", "Ryles_Avenue"];
    B[44][13] = [
      25,
      "Burrell Way Police Dept",
      "Burrell_Way_Police_Department",
    ];
    B[45][13] = [30, "Warner Boulevard", "Warner_Boulevard"];
    B[46][13] = [12, "Factory", "Factory_13%2C46"];
    B[47][13] = [7, "St Jude's Cathedral", "St._Jude%27s_Cathedral"];
    B[48][13] = [7, "St Jude's Cathedral", "St._Jude%27s_Cathedral"];
    B[49][13] = [30, "Donnan Alley", "Donnan_Alley"];
    B[40][14] = [6, "Carpark", "Carpark_14%2C40"];
    B[41][14] = [23, "Hippesley Building", "The_Hippesley_Building"];
    B[42][14] = [8, "Cemetery", "Cemetery_14%2C42"];
    B[43][14] = [30, "Chaning Alley", "Chaning_Alley"];
    B[44][14] = [30, "Julian Lane", "Julian_Lane_%28Molebank%29"];
    B[45][14] = [13, "Falvey Walk Fire Station", "Falvey_Walk_Fire_Station"];
    B[46][14] = [21, "Farrant Monument", "The_Farrant_Monument"];
    B[47][14] = [31, "Cape Towers", "Cape_Towers"];
    B[48][14] = [18, "Copleston Library", "Copleston_Library"];
    B[49][14] = [30, "Thorburn Way", "Thorburn_Way"];
    B[40][15] = [33, "Wasteland", "Wasteland_15%2C40"];
    B[41][15] = [13, "Hamm Walk Fire Station", "Hamm_Walk_Fire_Station"];
    B[42][15] = [16, "Wakeford Motel", "The_Wakeford_Motel_%28Molebank%29"];
    B[43][15] = [30, "Shenton Crescent", "Shenton_Crescent"];
    B[44][15] = [30, "Rodeney Plaza", "Rodeney_Plaza_%28Molebank%29"];
    B[45][15] = [13, "Ewins Row Fire Station", "Ewins_Row_Fire_Station"];
    B[46][15] = [
      3,
      "Blockwood Auto Repair",
      "Blockwood_Auto_Repair_%28Molebank%29",
    ];
    B[47][15] = [2, "Blackburn Arms", "The_Blackburn_Arms"];
    B[48][15] = [22, "Dimon Museum", "The_Dimon_Museum"];
    B[49][15] = [12, "Factory", "Factory_15%2C49"];
    B[40][16] = [10, "Bletso Cinema", "Bletso_Cinema"];
    B[41][16] = [30, "Pattinson Row", "Pattinson_Row"];
    B[42][16] = [6, "Carpark", "Carpark_16%2C42"];
    B[43][16] = [30, "Hollyman Lane", "Hollyman_Lane"];
    B[44][16] = [2, "Bampfyld Arms", "The_Bampfyld_Arms"];
    B[45][16] = [30, "Hind Boulevard", "Hind_Boulevard"];
    B[46][16] = [30, "Holland Alley", "Holland_Alley"];
    B[47][16] = [24, "Hanlon Park", "Hanlon_Park"];
    B[48][16] = [5, "Collings Building", "The_Collings_Building"];
    B[49][16] = [4, "Neary Bank", "Neary_Bank"];
    B[40][17] = [23, "Hambidge Building", "The_Hambidge_Building"];
    B[41][17] = [30, "Trimble Lane", "Trimble_Lane"];
    B[42][17] = [13, "Lettey Row Fire Station", "Lettey_Row_Fire_Station"];
    B[43][17] = [3, "Bustin Auto Repair", "Bustin_Auto_Repair"];
    B[44][17] = [23, "Eglen Building", "The_Eglen_Building"];
    B[45][17] = [13, "Sorton Way Fire Station", "Sorton_Way_Fire_Station"];
    B[46][17] = [33, "Wasteland", "Wasteland_17%2C46"];
    B[47][17] = [30, "Denbury Road", "Denbury_Road"];
    B[48][17] = [
      15,
      "St Elisabeth's Hospital",
      "St._Elisabeth%27s_Hospital_%28Molebank%29",
    ];
    B[49][17] = [22, "Reginaldus Museum", "The_Reginaldus_Museum"];
    B[40][18] = [32, "Warehouse", "Warehouse_18%2C40"];
    B[41][18] = [23, "Barstow Building", "The_Barstow_Building"];
    B[42][18] = [32, "Warehouse", "Warehouse_18%2C42"];
    B[43][18] = [4, "Cotty Bank", "Cotty_Bank"];
    B[44][18] = [12, "Factory", "Factory_18%2C44"];
    B[45][18] = [
      27,
      "Rumbell Grove Railway Station",
      "Rumbell_Grove_Railway_Station",
    ];
    B[46][18] = [5, "Lee Building", "The_Lee_Building"];
    B[47][18] = [
      15,
      "Felix General Hospital",
      "Felix_General_Hospital_%28Molebank%29",
    ];
    B[48][18] = [10, "Badman Cinema", "Badman_Cinema"];
    B[49][18] = [18, "Crowly Library", "Crowly_Library"];
    B[40][19] = [
      13,
      "Montgomery Avenue Fire Station",
      "Montgomery_Avenue_Fire_Station",
    ];
    B[41][19] = [30, "Loveridge Drive", "Loveridge_Drive"];
    B[42][19] = [5, "Pridham Building", "The_Pridham_Building_%28Molebank%29"];
    B[43][19] = [30, "Tarzwell Road", "Tarzwell_Road"];
    B[44][19] = [10, "Bygrave Cinema", "Bygrave_Cinema"];
    B[45][19] = [
      13,
      "Sherman Alley Fire Station",
      "Sherman_Alley_Fire_Station",
    ];
    B[46][19] = [5, "Snee Building", "The_Snee_Building"];
    B[47][19] = [2, "Hamilton Arms", "The_Hamilton_Arms"];
    B[48][19] = [31, "Brundrit Towers", "Brundrit_Towers"];
    B[49][19] = [9, "St Columba's Church", "St._Columba%27s_Church"];

    // ------------------------------------------------
    // Brooke Hills
    // ------------------------------------------------
    B[40][20] = [5, "Edson Building", "The_Edson_Building"];
    B[41][20] = [33, "Wasteland", "Wasteland_20%2C41"];
    B[42][20] = [4, "Wadman Bank", "Wadman_Bank"];
    B[43][20] = [5, "Brailey Building", "The_Brailey_Building"];
    B[44][20] = [31, "Cunningham Towers", "Cunningham_Towers"];
    B[45][20] = [3, "Gower Auto Repair", "Gower_Auto_Repair"];
    B[46][20] = [
      27,
      "Silwood Walk Railway Station",
      "Silwood_Walk_Railway_Station",
    ];
    B[47][20] = [4, "Chaffe Bank", "Chaffe_Bank"];
    B[48][20] = [4, "Burdwood Bank", "Burdwood_Bank"];
    B[49][20] = [8, "Cemetery", "Cemetery_20%2C49"];
    B[40][21] = [
      25,
      "Jensen Boulevard Police Dept",
      "Jensen_Boulevard_Police_Department",
    ];
    B[41][21] = [30, "Shuffery Street", "Shuffery_Street"];
    B[42][21] = [28, "Pearcey Street School", "Pearcey_Street_School"];
    B[43][21] = [6, "Carpark", "Carpark_21%2C43"];
    B[44][21] = [33, "Wasteland", "Wasteland_21%2C44"];
    B[45][21] = [30, "Judd Crescent", "Judd_Crescent"];
    B[46][21] = [30, "Ormrod Drive", "Ormrod_Drive"];
    B[47][21] = [31, "Ackerman Towers", "Ackerman_Towers"];
    B[48][21] = [30, "Bown Crescent", "Bown_Crescent"];
    B[49][21] = [22, "McMullen Museum", "The_McMullen_Museum"];
    B[40][22] = [30, "Rousel Road", "Rousel_Road"];
    B[41][22] = [17, "Junkyard", "Junkyard_22%2C41"];
    B[42][22] = [2, "Mester Arms", "The_Mester_Arms"];
    B[43][22] = [5, "Coram Building", "The_Coram_Building"];
    B[44][22] = [28, "Dickinson Square School", "Dickinson_Square_School"];
    B[45][22] = [9, "St Perpetua's Church", "St._Perpetua%27s_Church"];
    B[46][22] = [8, "Cemetery", "Cemetery_22%2C46"];
    B[47][22] = [21, "Banbury Monument", "The_Banbury_Monument"];
    B[48][22] = [9, "St Theophan's Church", "St._Theophan%27s_Church"];
    B[49][22] = [6, "Carpark", "Carpark_22%2C49"];
    B[40][23] = [6, "Carpark", "Carpark_23%2C40"];
    B[41][23] = [18, "Garton Library", "Garton_Library"];
    B[42][23] = [30, "Lacey Walk", "Lacey_Walk_%28Lukinswood%29"];
    B[43][23] = [33, "Wasteland", "Wasteland_23%2C43"];
    B[44][23] = [30, "Watson Boulevard", "Watson_Boulevard"];
    B[45][23] = [30, "Withnail Road", "Withnail_Road"];
    B[46][23] = [17, "Junkyard", "Junkyard_23%2C46"];
    B[47][23] = [30, "Burchill Drive", "Burchill_Drive"];
    B[48][23] = [13, "Massey Lane Fire Station", "Massey_Lane_Fire_Station"];
    B[49][23] = [30, "Shalle Place", "Shalle_Place"];
    B[40][24] = [10, "Somerville Cinema", "Somerville_Cinema"];
    B[41][24] = [2, "George Arms", "The_George_Arms"];
    B[42][24] = [6, "Carpark", "Carpark_24%2C42"];
    B[43][24] = [30, "Piele Alley", "Piele_Alley"];
    B[44][24] = [22, "Madill Museum", "The_Madill_Museum"];
    B[45][24] = [30, "Fone Drive", "Fone_Drive"];
    B[46][24] = [3, "Wasson Auto Repair", "Wasson_Auto_Repair"];
    B[47][24] = [24, "Kelher Park", "Kelher_Park_%28Lukinswood%29"];
    B[48][24] = [30, "Nossiter Place", "Nossiter_Place"];
    B[49][24] = [30, "Ledger Row", "Ledger_Row"];
    B[40][25] = [18, "Wayper Library", "Wayper_Library"];
    B[41][25] = [2, "Checketts Arms", "The_Checketts_Arms"];
    B[42][25] = [
      13,
      "Dales Boulevard Fire Station",
      "Dales_Boulevard_Fire_Station",
    ];
    B[43][25] = [32, "Warehouse", "Warehouse_25%2C43"];
    B[44][25] = [3, "Lasbury Auto Repair", "Lasbury_Auto_Repair"];
    B[45][25] = [30, "Chick Street", "Chick_Street_%28Lukinswood%29"];
    B[46][25] = [22, "Galavin Museum", "The_Galavin_Museum"];
    B[47][25] = [30, "Satherley Road", "Satherley_Road"];
    B[48][25] = [30, "Channing Square", "Channing_Square"];
    B[49][25] = [30, "Hinchly Avenue", "Hinchly_Avenue"];
    B[40][26] = [2, "Shea Arms", "The_Shea_Arms"];
    B[41][26] = [30, "Caller Way", "Caller_Way"];
    B[42][26] = [21, "Melhuish Monument", "The_Melhuish_Monument"];
    B[43][26] = [6, "Carpark", "Carpark_26%2C43"];
    B[44][26] = [30, "Houghton Street", "Houghton_Street"];
    B[45][26] = [5, "Shortman Building", "The_Shortman_Building"];
    B[46][26] = [30, "Whittle Place", "Whittle_Place"];
    B[47][26] = [23, "Stagg Building", "The_Stagg_Building"];
    B[48][26] = [30, "How Lane", "How_Lane"];
    B[49][26] = [30, "Stanbury Lane", "Stanbury_Lane_%28Lukinswood%29"];
    B[40][27] = [30, "Brooke Drive", "Brooke_Drive"];
    B[41][27] = [24, "Martindale Park", "Martindale_Park"];
    B[42][27] = [24, "Collinns Park", "Collinns_Park"];
    B[43][27] = [30, "Shadwick Walk", "Shadwick_Walk"];
    B[44][27] = [30, "Doyne Street", "Doyne_Street_%28Lukinswood%29"];
    B[45][27] = [
      9,
      "St Swithun's Church",
      "St._Swithun%27s_Church_%28Lukinswood%29",
    ];
    B[46][27] = [30, "Woodthorpe Plaza", "Woodthorpe_Plaza"];
    B[47][27] = [30, "Hemborrow Walk", "Hemborrow_Walk"];
    B[48][27] = [30, "Boon Boulevard", "Boon_Boulevard"];
    B[49][27] = [30, "Seviour Crescent", "Seviour_Crescent"];
    B[40][28] = [21, "Tonkin Monument", "The_Tonkin_Monument"];
    B[41][28] = [32, "Warehouse", "Warehouse_28%2C41"];
    B[42][28] = [
      15,
      "St Elisabeth's Hospital",
      "St._Elisabeth%27s_Hospital_%28Lukinswood%29",
    ];
    B[43][28] = [30, "Warburton Crescent", "Warburton_Crescent"];
    B[44][28] = [30, "Rayner Crescent", "Rayner_Crescent"];
    B[45][28] = [21, "Goodland Monument", "The_Goodland_Monument"];
    B[46][28] = [5, "Probert Building", "The_Probert_Building"];
    B[47][28] = [30, "Angerstein Alley", "Angerstein_Alley"];
    B[48][28] = [21, "Cull Monument", "The_Cull_Monument"];
    B[49][28] = [2, "Huttenbach Arms", "The_Huttenbach_Arms"];
    B[40][29] = [5, "Cake Building", "The_Cake_Building"];
    B[41][29] = [
      25,
      "Withyman Street Police Dept",
      "Withyman_Street_Police_Department",
    ];
    B[42][29] = [3, "Lukins Auto Repair", "Lukins_Auto_Repair"];
    B[43][29] = [30, "Binney Lane", "Binney_Lane"];
    B[44][29] = [30, "Terry Place", "Terry_Place"];
    B[45][29] = [
      27,
      "Bennet Row Railway Station",
      "Bennet_Row_Railway_Station",
    ];
    B[46][29] = [10, "Latham Cinema", "Latham_Cinema"];
    B[47][29] = [31, "Kenward Towers", "Kenward_Towers"];
    B[48][29] = [11, "Club Hill", "Club_Hill"];
    B[49][29] = [24, "Shelper Park", "Shelper_Park"];

    // ------------------------------------------------
    // Ketchelbank
    // ------------------------------------------------
    B[40][30] = [30, "Chisholm Alley", "Chisholm_Alley"];
    B[41][30] = [18, "Staddon Library", "Staddon_Library"];
    B[42][30] = [
      3,
      "Hemore Auto Repair",
      "Hemore_Auto_Repair_%28Havercroft%29",
    ];
    B[43][30] = [17, "Junkyard", "Junkyard_30%2C43"];
    B[44][30] = [5, "Pitter Building", "The_Pitter_Building"];
    B[45][30] = [
      13,
      "Woollacot Boulevard Fire Station",
      "Woollacot_Boulevard_Fire_Station",
    ];
    B[46][30] = [30, "Cort Row", "Cort_Row"];
    B[47][30] = [33, "Wasteland", "Wasteland_30%2C47"];
    B[48][30] = [
      27,
      "Vearncombe Alley Railway Station",
      "Vearncombe_Alley_Railway_Station",
    ];
    B[49][30] = [22, "Gilling Museum", "The_Gilling_Museum"];
    B[40][31] = [5, "Husted Building", "The_Husted_Building"];
    B[41][31] = [30, "Wakley Drive", "Wakley_Drive"];
    B[42][31] = [30, "Stovin Row", "Stovin_Row"];
    B[43][31] = [21, "Swinnerton Monument", "The_Swinnerton_Monument"];
    B[44][31] = [33, "Wasteland", "Wasteland_31%2C44"];
    B[45][31] = [11, "Club Kick", "Club_Kick"];
    B[46][31] = [9, "St Blaise's Church", "St._Blaise%27s_Church"];
    B[47][31] = [8, "Cemetery", "Cemetery_31%2C47"];
    B[48][31] = [30, "Cayme Drive", "Cayme_Drive"];
    B[49][31] = [
      15,
      "St Eutychian's Hospital",
      "St._Eutychian%27s_Hospital_%28Havercroft%29",
    ];
    B[40][32] = [30, "Landsey Grove", "Landsey_Grove"];
    B[41][32] = [30, "Horsford Lane", "Horsford_Lane"];
    B[42][32] = [32, "Warehouse", "Warehouse_32%2C42"];
    B[43][32] = [30, "Cuss Place", "Cuss_Place"];
    B[44][32] = [19, "Ackland Mall", "Ackland_Mall"];
    B[45][32] = [19, "Ackland Mall", "Ackland_Mall"];
    B[46][32] = [10, "Chaffe Cinema", "Chaffe_Cinema"];
    B[47][32] = [
      25,
      "Spurdell Walk Police Dept",
      "Spurdell_Walk_Police_Department",
    ];
    B[48][32] = [17, "Junkyard", "Junkyard_32%2C48"];
    B[49][32] = [30, "Fensome Street", "Fensome_Street"];
    B[40][33] = [4, "Walling Bank", "Walling_Bank"];
    B[41][33] = [
      15,
      "Martha General Hospital",
      "Martha_General_Hospital_%28Havercroft%29",
    ];
    B[42][33] = [
      15,
      "Ephrem General Hospital",
      "Ephrem_General_Hospital_%28Havercroft%29",
    ];
    B[43][33] = [10, "Rolls Cinema", "Rolls_Cinema"];
    B[44][33] = [19, "Ackland Mall", "Ackland_Mall"];
    B[45][33] = [19, "Ackland Mall", "Ackland_Mall"];
    B[46][33] = [17, "Junkyard", "Junkyard_33%2C46"];
    B[47][33] = [32, "Warehouse", "Warehouse_33%2C47"];
    B[48][33] = [2, "Limbery Arms", "The_Limbery_Arms"];
    B[49][33] = [30, "Lane Road", "Lane_Road"];
    B[40][34] = [13, "McGarth Walk Fire Station", "McGarth_Walk_Fire_Station"];
    B[41][34] = [5, "Sands Building", "The_Sands_Building"];
    B[42][34] = [18, "Ray Library", "Ray_Library"];
    B[43][34] = [3, "Auston Auto Repair", "Auston_Auto_Repair"];
    B[44][34] = [30, "Huddy Drive", "Huddy_Drive"];
    B[45][34] = [13, "Michaud Walk Fire Station", "Michaud_Walk_Fire_Station"];
    B[46][34] = [21, "Herring Monument", "The_Herring_Monument"];
    B[47][34] = [11, "Club Wistow", "Club_Wistow"];
    B[48][34] = [33, "Wasteland", "Wasteland_34%2C48"];
    B[49][34] = [30, "Bousfield Alley", "Bousfield_Alley"];
    B[40][35] = [30, "Garner Drive", "Garner_Drive"];
    B[41][35] = [12, "Factory", "Factory_35%2C41"];
    B[42][35] = [4, "Mountstephens Bank", "Mountstephens_Bank"];
    B[43][35] = [16, "Axworthy Hotel", "The_Axworthy_Hotel"];
    B[44][35] = [30, "Mallack Avenue", "Mallack_Avenue"];
    B[45][35] = [30, "Leigh Way", "Leigh_Way"];
    B[46][35] = [
      15,
      "Maria General Hospital",
      "Maria_General_Hospital_%28Havercroft%29",
    ];
    B[47][35] = [13, "Adey Plaza Fire Station", "Adey_Plaza_Fire_Station"];
    B[48][35] = [30, "Floyer Boulevard", "Floyer_Boulevard"];
    B[49][35] = [31, "Fothergill Towers", "Fothergill_Towers"];
    B[40][36] = [12, "Factory", "Factory_36%2C40"];
    B[41][36] = [9, "St Eligius's Church", "St._Eligius%27s_Church"];
    B[42][36] = [8, "Cemetery", "Cemetery_36%2C42"];
    B[43][36] = [
      9,
      "St Callistus's Church",
      "St._Callistus%27s_Church_%28Havercroft%29",
    ];
    B[44][36] = [
      25,
      "Moseley Plaza Police Dept",
      "Moseley_Plaza_Police_Department",
    ];
    B[45][36] = [30, "Beare Avenue", "Beare_Avenue"];
    B[46][36] = [30, "Shalle Plaza", "Shalle_Plaza"];
    B[47][36] = [
      13,
      "Saltrow Alley Fire Station",
      "Saltrow_Alley_Fire_Station",
    ];
    B[48][36] = [
      25,
      "Yapp Square Police Dept",
      "Yapp_Square_Police_Department",
    ];
    B[49][36] = [30, "Glisson Lane", "Glisson_Lane"];
    B[40][37] = [13, "Bryan Place Fire Station", "Bryan_Place_Fire_Station"];
    B[41][37] = [32, "Warehouse", "Warehouse_37%2C41"];
    B[42][37] = [30, "Mogg Square", "Mogg_Square"];
    B[43][37] = [30, "Haines Square", "Haines_Square"];
    B[44][37] = [6, "Carpark", "Carpark_37%2C44"];
    B[45][37] = [30, "Killinger Walk", "Killinger_Walk_%28Havercroft%29"];
    B[46][37] = [31, "Beaver Towers", "Beaver_Towers"];
    B[47][37] = [24, "Gyllet Park", "Gyllet_Park"];
    B[48][37] = [30, "Ofield Drive", "Ofield_Drive"];
    B[49][37] = [30, "Vernoum Drive", "Vernoum_Drive"];
    B[40][38] = [11, "Club Traves", "Club_Traves"];
    B[41][38] = [30, "Wine Place", "Wine_Place"];
    B[42][38] = [32, "Warehouse", "Warehouse_38%2C42"];
    B[43][38] = [12, "Factory", "Factory_38%2C43"];
    B[44][38] = [33, "Wasteland", "Wasteland_38%2C44"];
    B[45][38] = [4, "Rawles Bank", "Rawles_Bank"];
    B[46][38] = [30, "Clipper Avenue", "Clipper_Avenue"];
    B[47][38] = [11, "Club Maule", "Club_Maule"];
    B[48][38] = [
      27,
      "Sheil Alley Railway Station",
      "Sheil_Alley_Railway_Station",
    ];
    B[49][38] = [30, "Attrell Avenue", "Attrell_Avenue_%28Havercroft%29"];
    B[40][39] = [33, "Wasteland", "Wasteland_39%2C40"];
    B[41][39] = [11, "Club Swyer", "Club_Swyer"];
    B[42][39] = [30, "Shipton Crescent", "Shipton_Crescent"];
    B[43][39] = [30, "Wicksted Avenue", "Wicksted_Avenue"];
    B[44][39] = [4, "Crape Bank", "Crape_Bank"];
    B[45][39] = [30, "Venables Row", "Venables_Row"];
    B[46][39] = [30, "Crick Lane", "Crick_Lane"];
    B[47][39] = [30, "Brickenden Grove", "Brickenden_Grove_%28Havercroft%29"];
    B[48][39] = [
      27,
      "Pask Square Railway Station",
      "Pask_Square_Railway_Station",
    ];
    B[49][39] = [21, "Mules Monument", "The_Mules_Monument"];

    // ------------------------------------------------
    // Barrville
    // ------------------------------------------------
    B[40][40] = [
      27,
      "Brownsell Plaza Railway Station",
      "Brownsell_Plaza_Railway_Station",
    ];
    B[41][40] = [17, "Junkyard", "Junkyard_40%2C41"];
    B[42][40] = [5, "Scorse Building", "The_Scorse_Building"];
    B[43][40] = [23, "Nix Building", "The_Nix_Building"];
    B[44][40] = [12, "Factory", "Factory_40%2C44"];
    B[45][40] = [12, "Factory", "Factory_40%2C45"];
    B[46][40] = [30, "Greenhow Alley", "Greenhow_Alley"];
    B[47][40] = [33, "Wasteland", "Wasteland_40%2C47"];
    B[48][40] = [32, "Warehouse", "Warehouse_40%2C48"];
    B[49][40] = [16, "Pinney Hotel", "The_Pinney_Hotel"];
    B[40][41] = [18, "Gaze Library", "Gaze_Library"];
    B[41][41] = [30, "Trick Plaza", "Trick_Plaza"];
    B[42][41] = [30, "Highmore Street", "Highmore_Street"];
    B[43][41] = [30, "Mawdley Walk", "Mawdley_Walk"];
    B[44][41] = [28, "Twycrosse Place School", "Twycrosse_Place_School"];
    B[45][41] = [
      25,
      "Keane Boulevard Police Dept",
      "Keane_Boulevard_Police_Department",
    ];
    B[46][41] = [
      15,
      "St Wilfrid's Hospital",
      "St._Wilfrid%27s_Hospital_%28Barrville%29",
    ];
    B[47][41] = [4, "Westropp Bank", "Westropp_Bank"];
    B[48][41] = [30, "Ranson Road", "Ranson_Road"];
    B[49][41] = [28, "Deanesly Drive School", "Deanesly_Drive_School"];
    B[40][42] = [5, "Gumm Building", "The_Gumm_Building"];
    B[41][42] = [3, "Masey Auto Repair", "Masey_Auto_Repair"];
    B[42][42] = [9, "St Philomena's Church", "St._Philomena%27s_Church"];
    B[43][42] = [8, "Cemetery", "Cemetery_42%2C43"];
    B[44][42] = [30, "Roe Crescent", "Roe_Crescent_%28Barrville%29"];
    B[45][42] = [4, "Strange Bank", "Strange_Bank"];
    B[46][42] = [3, "Kebby Auto Repair", "Kebby_Auto_Repair"];
    B[47][42] = [24, "Baverstock Park", "Baverstock_Park"];
    B[48][42] = [12, "Factory", "Factory_42%2C48"];
    B[49][42] = [6, "Carpark", "Carpark_42%2C49"];
    B[40][43] = [16, "Tapp Motel", "The_Tapp_Motel"];
    B[41][43] = [2, "Membery Arms", "The_Membery_Arms"];
    B[42][43] = [6, "Carpark", "Carpark_43%2C42"];
    B[43][43] = [30, "Wheare Boulevard", "Wheare_Boulevard_%28Barrville%29"];
    B[44][43] = [
      9,
      "St Egbert's Church",
      "St._Egbert%27s_Church_%28Barrville%29",
    ];
    B[45][43] = [6, "Carpark", "Carpark_43%2C45"];
    B[46][43] = [23, "Eagan Building", "The_Eagan_Building"];
    B[47][43] = [30, "Knill Road", "Knill_Road"];
    B[48][43] = [30, "Tordoffe Way", "Tordoffe_Way"];
    B[49][43] = [32, "Warehouse", "Warehouse_43%2C49"];
    B[40][44] = [17, "Junkyard", "Junkyard_44%2C40"];
    B[41][44] = [11, "Club Whitting", "Club_Whitting"];
    B[42][44] = [30, "Gilling Crescent", "Gilling_Crescent"];
    B[43][44] = [30, "Willies Square", "Willies_Square"];
    B[44][44] = [30, "Moran Drive", "Moran_Drive"];
    B[45][44] = [30, "Kitting Alley", "Kitting_Alley"];
    B[46][44] = [30, "Burchall Way", "Burchall_Way_%28Barrville%29"];
    B[47][44] = [23, "Woolsett Building", "The_Woolsett_Building"];
    B[48][44] = [
      9,
      "St Symmachus's Church",
      "St._Symmachus%27s_Church_%28Barrville%29",
    ];
    B[49][44] = [
      15,
      "Patriarch General Hospital",
      "Patriarch_General_Hospital_%28Barrville%29",
    ];
    B[40][45] = [23, "Neagle Building", "The_Neagle_Building"];
    B[41][45] = [18, "Brendon Library", "Brendon_Library"];
    B[42][45] = [12, "Factory", "Factory_45%2C42"];
    B[43][45] = [30, "Davies Alley", "Davies_Alley"];
    B[44][45] = [18, "Olivey Library", "Olivey_Library"];
    B[45][45] = [33, "Wasteland", "Wasteland_45%2C45"];
    B[46][45] = [30, "Brunt Row", "Brunt_Row"];
    B[47][45] = [
      13,
      "Reginaldus Plaza Fire Station",
      "Reginaldus_Plaza_Fire_Station",
    ];
    B[48][45] = [30, "Frederick Walk", "Frederick_Walk"];
    B[49][45] = [8, "Cemetery", "Cemetery_45%2C49"];
    B[40][46] = [30, "Bassett Way", "Bassett_Way"];
    B[41][46] = [18, "Cazalet Library", "Cazalet_Library"];
    B[42][46] = [31, "Bealey Towers", "Bealey_Towers"];
    B[43][46] = [31, "Forshaw Towers", "Forshaw_Towers"];
    B[44][46] = [30, "Peat Way", "Peat_Way"];
    B[45][46] = [2, "Radnedge Arms", "The_Radnedge_Arms"];
    B[46][46] = [30, "Elvins Road", "Elvins_Road"];
    B[47][46] = [30, "Earlham Grove", "Earlham_Grove"];
    B[48][46] = [30, "Voke Row", "Voke_Row"];
    B[49][46] = [6, "Carpark", "Carpark_46%2C49"];
    B[40][47] = [17, "Junkyard", "Junkyard_47%2C40"];
    B[41][47] = [6, "Carpark", "Carpark_47%2C41"];
    B[42][47] = [30, "Head Grove", "Head_Grove"];
    B[43][47] = [29, "Floyde Stadium", "Floyde_Stadium"];
    B[44][47] = [29, "Floyde Stadium", "Floyde_Stadium"];
    B[45][47] = [17, "Junkyard", "Junkyard_47%2C45"];
    B[46][47] = [5, "Gaston Building", "The_Gaston_Building"];
    B[47][47] = [30, "Dalwood Alley", "Dalwood_Alley"];
    B[48][47] = [
      25,
      "Gerrish Place Police Dept",
      "Gerrish_Place_Police_Department",
    ];
    B[49][47] = [21, "Chiles Monument", "The_Chiles_Monument"];
    B[40][48] = [3, "Wyndham Auto Repair", "Wyndham_Auto_Repair"];
    B[41][48] = [30, "Hagerty Place", "Hagerty_Place"];
    B[42][48] = [33, "Wasteland", "Wasteland_48%2C42"];
    B[43][48] = [29, "Floyde Stadium", "Floyde_Stadium"];
    B[44][48] = [29, "Floyde Stadium", "Floyde_Stadium"];
    B[45][48] = [
      25,
      "Derryman Plaza Police Dept",
      "Derryman_Plaza_Police_Department",
    ];
    B[46][48] = [15, "St Agnes's Hospital", "St._Agnes%27s_Hospital"];
    B[47][48] = [30, "Sowler Boulevard", "Sowler_Boulevard"];
    B[48][48] = [30, "Zinnecker Boulevard", "Zinnecker_Boulevard"];
    B[49][48] = [30, "Crossing Lane", "Crossing_Lane"];
    B[40][49] = [33, "Wasteland", "Wasteland_49%2C40"];
    B[41][49] = [5, "Furze Building", "The_Furze_Building"];
    B[42][49] = [17, "Junkyard", "Junkyard_49%2C42"];
    B[43][49] = [30, "Blackman Drive", "Blackman_Drive"];
    B[44][49] = [11, "Club Dibsdall", "Club_Dibsdall"];
    B[45][49] = [2, "Start Arms", "The_Start_Arms"];
    B[46][49] = [30, "Lavis Walk", "Lavis_Walk"];
    B[47][49] = [3, "Coombes Auto Repair", "Coombes_Auto_Repair"];
    B[48][49] = [
      13,
      "Withyman Road Fire Station",
      "Withyman_Road_Fire_Station",
    ];
    B[49][49] = [5, "Eyles Building", "The_Eyles_Building"];

    // ------------------------------------------------
    // Galbraith Hills
    // ------------------------------------------------
    B[40][50] = [5, "Lawson Building", "The_Lawson_Building"];
    B[41][50] = [5, "Combe Building", "The_Combe_Building"];
    B[42][50] = [30, "Morton Lane", "Morton_Lane"];
    B[43][50] = [30, "Rountree Crescent", "Rountree_Crescent"];
    B[44][50] = [30, "Wisby Walk", "Wisby_Walk"];
    B[45][50] = [11, "Club Priscott", "Club_Priscott"];
    B[46][50] = [17, "Junkyard", "Junkyard_50%2C46"];
    B[47][50] = [33, "Wasteland", "Wasteland_50%2C47"];
    B[48][50] = [30, "Twycrosse Alley", "Twycrosse_Alley"];
    B[49][50] = [30, "Esain Drive", "Esain_Drive"];
    B[40][51] = [30, "Bush Boulevard", "Bush_Boulevard"];
    B[41][51] = [30, "Lewellen Way", "Lewellen_Way"];
    B[42][51] = [11, "Club Capps", "Club_Capps"];
    B[43][51] = [
      25,
      "Moggridge Place Police Dept",
      "Moggridge_Place_Police_Department",
    ];
    B[44][51] = [30, "Riglar Boulevard", "Riglar_Boulevard"];
    B[45][51] = [31, "Wootten Towers", "Wootten_Towers"];
    B[46][51] = [12, "Factory", "Factory_51%2C46"];
    B[47][51] = [17, "Junkyard", "Junkyard_51%2C47"];
    B[48][51] = [
      15,
      "St Luke's Hospital",
      "St._Luke%27s_Hospital_%28Ridleybank%29",
    ];
    B[49][51] = [30, "Blakey Street", "Blakey_Street"];
    B[40][52] = [30, "Elphick Walk", "Elphick_Walk_%28Ridleybank%29"];
    B[41][52] = [12, "Factory", "Factory_52%2C41"];
    B[42][52] = [12, "Factory", "Factory_52%2C42"];
    B[43][52] = [2, "Whalen Arms", "The_Whalen_Arms"];
    B[44][52] = [30, "Gaskell Lane", "Gaskell_Lane"];
    B[45][52] = [16, "Hollbrook Motel", "The_Hollbrook_Motel"];
    B[46][52] = [22, "Chilwell Museum", "The_Chilwell_Museum"];
    B[47][52] = [31, "Snooke Towers", "Snooke_Towers"];
    B[48][52] = [30, "Frappel Street", "Frappel_Street"];
    B[49][52] = [2, "Allsop Arms", "The_Allsop_Arms"];
    B[40][53] = [
      15,
      "St Jude's Hospital",
      "St._Jude%27s_Hospital_%28Ridleybank%29",
    ];
    B[41][53] = [30, "Camidge Drive", "Camidge_Drive"];
    B[42][53] = [27, "Cribb Row Railway Station", "Cribb_Row_Railway_Station"];
    B[43][53] = [28, "Caswill Lane School", "Caswill_Lane_School"];
    B[44][53] = [17, "Junkyard", "Junkyard_53%2C44"];
    B[45][53] = [
      15,
      "St George's Hospital",
      "St._George%27s_Hospital_%28Ridleybank%29",
    ];
    B[46][53] = [6, "Carpark", "Carpark_53%2C46"];
    B[47][53] = [22, "Musgrove Museum", "The_Musgrove_Museum"];
    B[48][53] = [32, "Warehouse", "Warehouse_53%2C48"];
    B[49][53] = [30, "Evill Avenue", "Evill_Avenue"];
    B[40][54] = [30, "Hailstone Way", "Hailstone_Way"];
    B[41][54] = [30, "Chap Place", "Chap_Place"];
    B[42][54] = [5, "Purnell Building", "The_Purnell_Building"];
    B[43][54] = [11, "Club Vaughan", "Club_Vaughan"];
    B[44][54] = [32, "Warehouse", "Warehouse_54%2C44"];
    B[45][54] = [28, "Buttery Row School", "Buttery_Row_School"];
    B[46][54] = [
      27,
      "Hubbard Boulevard Railway Station",
      "Hubbard_Boulevard_Railway_Station",
    ];
    B[47][54] = [30, "Margery Avenue", "Margery_Avenue_%28Ridleybank%29"];
    B[48][54] = [
      9,
      "St Theodore's Church",
      "St._Theodore%27s_Church_%28Ridleybank%29",
    ];
    B[49][54] = [30, "Gunningham Walk", "Gunningham_Walk"];
    B[40][55] = [28, "Coat Road School", "Coat_Road_School"];
    B[41][55] = [24, "Dufferin Park", "Dufferin_Park"];
    B[42][55] = [28, "Owens Crescent School", "Owens_Crescent_School"];
    B[43][55] = [32, "Warehouse", "Warehouse_55%2C43"];
    B[44][55] = [
      15,
      "Margaret General Hospital",
      "Margaret_General_Hospital_%28Ridleybank%29",
    ];
    B[45][55] = [30, "Phillips Road", "Phillips_Road"];
    B[46][55] = [18, "Acourt Library", "Acourt_Library"];
    B[47][55] = [23, "Blackmore Building", "The_Blackmore_Building"];
    B[48][55] = [22, "Mesney Museum", "The_Mesney_Museum"];
    B[49][55] = [18, "Stuart Library", "Stuart_Library"];
    B[40][56] = [11, "Club Dury", "Club_Dury"];
    B[41][56] = [2, "Sumption Arms", "The_Sumption_Arms"];
    B[42][56] = [28, "Donn Boulevard School", "Donn_Boulevard_School"];
    B[43][56] = [12, "Factory", "Factory_56%2C43"];
    B[44][56] = [30, "Selwyn Boulevard", "Selwyn_Boulevard"];
    B[45][56] = [
      15,
      "Adalbert General Hospital",
      "Adalbert_General_Hospital_%28Ridleybank%29",
    ];
    B[46][56] = [5, "Rodgers Building", "The_Rodgers_Building"];
    B[47][56] = [28, "Billings Lane School", "Billings_Lane_School"];
    B[48][56] = [31, "Woodland Towers", "Woodland_Towers"];
    B[49][56] = [
      15,
      "St Simon's Hospital",
      "St._Simon%27s_Hospital_%28Ridleybank%29",
    ];
    B[40][57] = [21, "Reaston Monument", "The_Reaston_Monument"];
    B[41][57] = [
      27,
      "Alkin Road Railway Station",
      "Alkin_Road_Railway_Station",
    ];
    B[42][57] = [30, "Cantrill Alley", "Cantrill_Alley"];
    B[43][57] = [28, "Hollwey Street School", "Hollwey_Street_School"];
    B[44][57] = [
      25,
      "Blomfield Grove Police Dept",
      "Blomfield_Grove_Police_Department",
    ];
    B[45][57] = [18, "Boniface Library", "Boniface_Library"];
    B[46][57] = [30, "Nother Plaza", "Nother_Plaza"];
    B[47][57] = [4, "Wriford Bank", "Wriford_Bank"];
    B[48][57] = [30, "Dunster Road", "Dunster_Road"];
    B[49][57] = [5, "Dibbings Building", "The_Dibbings_Building"];
    B[40][58] = [30, "Burney Avenue", "Burney_Avenue"];
    B[41][58] = [2, "Reay Arms", "The_Reay_Arms"];
    B[42][58] = [
      27,
      "Priestley Grove Railway Station",
      "Priestley_Grove_Railway_Station",
    ];
    B[43][58] = [5, "Kenworthy Building", "The_Kenworthy_Building"];
    B[44][58] = [31, "Glanvile Towers", "Glanvile_Towers"];
    B[45][58] = [15, "Eugene General Hospital", "Eugene_General_Hospital"];
    B[46][58] = [30, "Paisley Alley", "Paisley_Alley"];
    B[47][58] = [33, "Wasteland", "Wasteland_58%2C47"];
    B[48][58] = [30, "Highton Place", "Highton_Place_%28Ridleybank%29"];
    B[49][58] = [21, "Clementina Monument", "The_Clementina_Monument"];
    B[40][59] = [
      27,
      "Scarpendale Street Railway Station",
      "Scarpendale_Street_Railway_Station",
    ];
    B[41][59] = [4, "Pescod Bank", "Pescod_Bank"];
    B[42][59] = [32, "Warehouse", "Warehouse_59%2C42"];
    B[43][59] = [13, "Acreman Road Fire Station", "Acreman_Road_Fire_Station"];
    B[44][59] = [5, "Bagley Building", "The_Bagley_Building"];
    B[45][59] = [6, "Carpark", "Carpark_59%2C45"];
    B[46][59] = [2, "Scudamore Arms", "The_Scudamore_Arms"];
    B[47][59] = [
      9,
      "St Silverius's Church",
      "St._Silverius%27s_Church_%28Ridleybank%29",
    ];
    B[48][59] = [30, "Tardew Row", "Tardew_Row"];
    B[49][59] = [5, "Spring Building", "The_Spring_Building"];

    // ------------------------------------------------
    // Mockridge Heights
    // ------------------------------------------------
    B[40][60] = [28, "Cates Boulevard School", "Cates_Boulevard_School"];
    B[41][60] = [
      25,
      "Rowley Boulevard Police Dept",
      "Rowley_Boulevard_Police_Department",
    ];
    B[42][60] = [31, "Parfit Towers", "Parfit_Towers"];
    B[43][60] = [22, "Gillman Museum", "The_Gillman_Museum"];
    B[44][60] = [31, "Snook Towers", "Snook_Towers"];
    B[45][60] = [17, "Junkyard", "Junkyard_60%2C45"];
    B[46][60] = [4, "Primrose Bank", "Primrose_Bank"];
    B[47][60] = [21, "Cabble Monument", "The_Cabble_Monument_%28Pimbank%29"];
    B[48][60] = [18, "Porter Library", "Porter_Library_%28Pimbank%29"];
    B[49][60] = [17, "Junkyard", "Junkyard_60%2C49"];
    B[40][61] = [17, "Junkyard", "Junkyard_61%2C40"];
    B[41][61] = [23, "Hind Building", "The_Hind_Building"];
    B[42][61] = [5, "Turpin Building", "The_Turpin_Building"];
    B[43][61] = [12, "Factory", "Factory_61%2C43"];
    B[44][61] = [30, "Warfield Lane", "Warfield_Lane"];
    B[45][61] = [30, "Forse Square", "Forse_Square"];
    B[46][61] = [30, "Bray Square", "Bray_Square_%28Pimbank%29"];
    B[47][61] = [10, "Bhore Cinema", "Bhore_Cinema"];
    B[48][61] = [32, "Warehouse", "Warehouse_61%2C48"];
    B[49][61] = [
      27,
      "Blocksidge Crescent Railway Station",
      "Blocksidge_Crescent_Railway_Station",
    ];
    B[40][62] = [30, "Payne Drive", "Payne_Drive"];
    B[41][62] = [10, "Coward Cinema", "Coward_Cinema"];
    B[42][62] = [30, "Alvis Boulevard", "Alvis_Boulevard"];
    B[43][62] = [6, "Carpark", "Carpark_62%2C43"];
    B[44][62] = [5, "Towker Building", "The_Towker_Building"];
    B[45][62] = [
      9,
      "St Dorotheus's Church",
      "St._Dorotheus%27s_Church_%28Pimbank%29",
    ];
    B[46][62] = [21, "Pyncombes Monument", "The_Pyncombes_Monument"];
    B[47][62] = [30, "Clements Square", "Clements_Square"];
    B[48][62] = [18, "Lambley Library", "Lambley_Library"];
    B[49][62] = [22, "Pretty Museum", "The_Pretty_Museum"];
    B[40][63] = [
      25,
      "Hewett Place Police Dept",
      "Hewett_Place_Police_Department",
    ];
    B[41][63] = [30, "Frederick Place", "Frederick_Place"];
    B[42][63] = [30, "Self Plaza", "Self_Plaza"];
    B[43][63] = [24, "Hippisley Park", "Hippisley_Park"];
    B[44][63] = [5, "Brittan Building", "The_Brittan_Building"];
    B[45][63] = [8, "Cemetery", "Cemetery_63%2C45"];
    B[46][63] = [30, "Manning Plaza", "Manning_Plaza"];
    B[47][63] = [30, "Chamberlaine Alley", "Chamberlaine_Alley"];
    B[48][63] = [31, "Blakeman Towers", "Blakeman_Towers"];
    B[49][63] = [30, "Ffych Alley", "Ffych_Alley"];
    B[40][64] = [23, "Nunn Building", "The_Nunn_Building"];
    B[41][64] = [30, "Shave Crescent", "Shave_Crescent"];
    B[42][64] = [30, "Rapps Road", "Rapps_Road"];
    B[43][64] = [
      25,
      "Applegate Alley Police Dept",
      "Applegate_Alley_Police_Department",
    ];
    B[44][64] = [10, "Batt Cinema", "Batt_Cinema"];
    B[45][64] = [
      27,
      "Hugo Crescent Railway Station",
      "Hugo_Crescent_Railway_Station",
    ];
    B[46][64] = [33, "Wasteland", "Wasteland_64%2C46"];
    B[47][64] = [33, "Wasteland", "Wasteland_64%2C47"];
    B[48][64] = [31, "Clyde Towers", "Clyde_Towers"];
    B[49][64] = [
      27,
      "Buckmaster Crescent Railway Station",
      "Buckmaster_Crescent_Railway_Station",
    ];
    B[40][65] = [33, "Wasteland", "Wasteland_65%2C40"];
    B[41][65] = [33, "Wasteland", "Wasteland_65%2C41"];
    B[42][65] = [30, "Ottery Drive", "Ottery_Drive"];
    B[43][65] = [33, "Wasteland", "Wasteland_65%2C43"];
    B[44][65] = [10, "Wolters Cinema", "Wolters_Cinema"];
    B[45][65] = [10, "Evershed Cinema", "Evershed_Cinema"];
    B[46][65] = [
      27,
      "Gingell Road Railway Station",
      "Gingell_Road_Railway_Station",
    ];
    B[47][65] = [30, "Belham Avenue", "Belham_Avenue"];
    B[48][65] = [13, "Frayne Walk Fire Station", "Frayne_Walk_Fire_Station"];
    B[49][65] = [30, "Moreby Square", "Moreby_Square"];
    B[40][66] = [13, "Voules Plaza Fire Station", "Voules_Plaza_Fire_Station"];
    B[41][66] = [24, "Breddy Park", "Breddy_Park"];
    B[42][66] = [30, "Hardin Square", "Hardin_Square"];
    B[43][66] = [30, "McDougall Way", "McDougall_Way"];
    B[44][66] = [22, "Nuttall Museum", "The_Nuttall_Museum"];
    B[45][66] = [30, "Barwood Walk", "Barwood_Walk"];
    B[46][66] = [30, "Villis Road", "Villis_Road"];
    B[47][66] = [6, "Carpark", "Carpark_66%2C47"];
    B[48][66] = [5, "Goodrich Building", "The_Goodrich_Building"];
    B[49][66] = [30, "Barry Row", "Barry_Row"];
    B[40][67] = [2, "Trubridge Arms", "The_Trubridge_Arms"];
    B[41][67] = [10, "Derrick Cinema", "Derrick_Cinema"];
    B[42][67] = [3, "Mare Auto Repair", "Mare_Auto_Repair"];
    B[43][67] = [18, "Bradbury Library", "Bradbury_Library"];
    B[44][67] = [19, "Tynte Mall", "Tynte_Mall"];
    B[45][67] = [19, "Tynte Mall", "Tynte_Mall"];
    B[46][67] = [5, "Retallick Building", "The_Retallick_Building"];
    B[47][67] = [12, "Factory", "Factory_67%2C47"];
    B[48][67] = [30, "Blackham Drive", "Blackham_Drive"];
    B[49][67] = [30, "Shepard Lane", "Shepard_Lane"];
    B[40][68] = [3, "Stedham Auto Repair", "Stedham_Auto_Repair"];
    B[41][68] = [2, "Carpendale Arms", "The_Carpendale_Arms"];
    B[42][68] = [30, "Culliford Avenue", "Culliford_Avenue"];
    B[43][68] = [30, "Mills Avenue", "Mills_Avenue"];
    B[44][68] = [19, "Tynte Mall", "Tynte_Mall"];
    B[45][68] = [19, "Tynte Mall", "Tynte_Mall"];
    B[46][68] = [30, "Prew Way", "Prew_Way"];
    B[47][68] = [30, "Eeles Way", "Eeles_Way_%28Pimbank%29"];
    B[48][68] = [30, "Carpinter Walk", "Carpinter_Walk"];
    B[49][68] = [12, "Factory", "Factory_68%2C49"];
    B[40][69] = [28, "Silvester Crescent School", "Silvester_Crescent_School"];
    B[41][69] = [30, "Seamour Road", "Seamour_Road"];
    B[42][69] = [30, "Amesbury Walk", "Amesbury_Walk"];
    B[43][69] = [30, "Reid Place", "Reid_Place"];
    B[44][69] = [30, "Cohen Avenue", "Cohen_Avenue"];
    B[45][69] = [30, "Weakley Square", "Weakley_Square_%28Pimbank%29"];
    B[46][69] = [5, "Lasder Building", "The_Lasder_Building"];
    B[47][69] = [30, "Weaver Drive", "Weaver_Drive"];
    B[48][69] = [
      13,
      "Whitten Place Fire Station",
      "Whitten_Place_Fire_Station",
    ];
    B[49][69] = [30, "Mathams Avenue", "Mathams_Avenue"];

    // ------------------------------------------------
    // Tapton
    // ------------------------------------------------
    B[40][70] = [30, "Godfrey Lane", "Godfrey_Lane"];
    B[41][70] = [30, "Learcroft Alley", "Learcroft_Alley"];
    B[42][70] = [11, "Club Coghlan", "Club_Coghlan"];
    B[43][70] = [21, "Empson Monument", "The_Empson_Monument"];
    B[44][70] = [3, "Brodripp Auto Repair", "Brodripp_Auto_Repair"];
    B[45][70] = [21, "Howdell Monument", "The_Howdell_Monument"];
    B[46][70] = [31, "Swaine Towers", "Swaine_Towers"];
    B[47][70] = [12, "Factory", "Factory_70%2C47"];
    B[48][70] = [30, "Midelton Drive", "Midelton_Drive"];
    B[49][70] = [5, "Sage Building", "The_Sage_Building_%28Peppardville%29"];
    B[40][71] = [30, "Procter Alley", "Procter_Alley"];
    B[41][71] = [30, "Baldon Drive", "Baldon_Drive"];
    B[42][71] = [10, "Pual Cinema", "Pual_Cinema"];
    B[43][71] = [33, "Wasteland", "Wasteland_71%2C43"];
    B[44][71] = [30, "Ammonds Street", "Ammonds_Street"];
    B[45][71] = [30, "Kemball Avenue", "Kemball_Avenue_%28Peppardville%29"];
    B[46][71] = [23, "Marks Building", "The_Marks_Building"];
    B[47][71] = [31, "Keirl Towers", "Keirl_Towers"];
    B[48][71] = [16, "Terdre Hotel", "The_Terdre_Hotel"];
    B[49][71] = [5, "Hancox Building", "The_Hancox_Building"];
    B[40][72] = [30, "Gwilliam Alley", "Gwilliam_Alley"];
    B[41][72] = [12, "Factory", "Factory_72%2C41"];
    B[42][72] = [12, "Factory", "Factory_72%2C42"];
    B[43][72] = [2, "Kerle Arms", "The_Kerle_Arms"];
    B[44][72] = [33, "Wasteland", "Wasteland_72%2C44"];
    B[45][72] = [30, "Denbury Square", "Denbury_Square"];
    B[46][72] = [31, "Kray Towers", "Kray_Towers"];
    B[47][72] = [30, "Higley Crescent", "Higley_Crescent"];
    B[48][72] = [3, "Dodington Auto Repair", "Dodington_Auto_Repair"];
    B[49][72] = [
      27,
      "Beele Boulevard Railway Station",
      "Beele_Boulevard_Railway_Station",
    ];
    B[40][73] = [16, "Sellwood Motel", "The_Sellwood_Motel"];
    B[41][73] = [30, "Robilliard Walk", "Robilliard_Walk"];
    B[42][73] = [33, "Wasteland", "Wasteland_73%2C42"];
    B[43][73] = [5, "Brymer Building", "The_Brymer_Building"];
    B[44][73] = [3, "Purchas Auto Repair", "Purchas_Auto_Repair"];
    B[45][73] = [2, "Wheals Arms", "The_Wheals_Arms"];
    B[46][73] = [30, "Baring Lane", "Baring_Lane"];
    B[47][73] = [2, "Snee Arms", "The_Snee_Arms"];
    B[48][73] = [33, "Wasteland", "Wasteland_73%2C48"];
    B[49][73] = [16, "Parry Motel", "The_Parry_Motel"];
    B[40][74] = [11, "Club Dupe", "Club_Dupe"];
    B[41][74] = [15, "St Paschal's Hospital", "St._Paschal%27s_Hospital"];
    B[42][74] = [12, "Factory", "Factory_74%2C42"];
    B[43][74] = [21, "Chichester Monument", "The_Chichester_Monument"];
    B[44][74] = [31, "Stirling Towers", "Stirling_Towers"];
    B[45][74] = [30, "Gaffney Crescent", "Gaffney_Crescent"];
    B[46][74] = [4, "Albyn Bank", "Albyn_Bank"];
    B[47][74] = [5, "Gibbons Building", "The_Gibbons_Building"];
    B[48][74] = [17, "Junkyard", "Junkyard_74%2C48"];
    B[49][74] = [30, "Wilkin Boulevard", "Wilkin_Boulevard"];
    B[40][75] = [12, "Factory", "Factory_75%2C40"];
    B[41][75] = [30, "Alkin Boulevard", "Alkin_Boulevard"];
    B[42][75] = [17, "Junkyard", "Junkyard_75%2C42"];
    B[43][75] = [11, "Club Minchinton", "Club_Minchinton"];
    B[44][75] = [30, "Crockett Square", "Crockett_Square"];
    B[45][75] = [30, "Crees Drive", "Crees_Drive"];
    B[46][75] = [17, "Junkyard", "Junkyard_75%2C46"];
    B[47][75] = [9, "St Helena's Church", "St._Helena%27s_Church"];
    B[48][75] = [
      25,
      "Meyrick Plaza Police Dept",
      "Meyrick_Plaza_Police_Department",
    ];
    B[49][75] = [30, "Cheatle Avenue", "Cheatle_Avenue"];
    B[40][76] = [21, "Chubb Monument", "The_Chubb_Monument"];
    B[41][76] = [24, "Conolly Park", "Conolly_Park"];
    B[42][76] = [10, "Sanson Cinema", "Sanson_Cinema"];
    B[43][76] = [
      25,
      "Marshment Place Police Dept",
      "Marshment_Place_Police_Department",
    ];
    B[44][76] = [30, "Tutcher Walk", "Tutcher_Walk"];
    B[45][76] = [21, "Way Monument", "The_Way_Monument"];
    B[46][76] = [6, "Carpark", "Carpark_76%2C46"];
    B[47][76] = [
      13,
      "Nositer Drive Fire Station",
      "Nositer_Drive_Fire_Station",
    ];
    B[48][76] = [
      25,
      "Fennessy Place Police Dept",
      "Fennessy_Place_Police_Department",
    ];
    B[49][76] = [10, "Kinsman Cinema", "Kinsman_Cinema"];
    B[40][77] = [30, "Donagan Lane", "Donagan_Lane"];
    B[41][77] = [30, "Swansborough Plaza", "Swansborough_Plaza"];
    B[42][77] = [18, "Dalley Library", "Dalley_Library"];
    B[43][77] = [2, "MacKenzie Arms", "The_MacKenzie_Arms"];
    B[44][77] = [30, "Hoyle Street", "Hoyle_Street"];
    B[45][77] = [30, "Mussell Way", "Mussell_Way"];
    B[46][77] = [21, "Kitchingman Monument", "The_Kitchingman_Monument"];
    B[47][77] = [16, "Canning Motel", "The_Canning_Motel"];
    B[48][77] = [4, "Tennear Bank", "Tennear_Bank"];
    B[49][77] = [
      15,
      "St Benedict's Hospital",
      "St._Benedict%27s_Hospital_%28Peppardville%29",
    ];
    B[40][78] = [
      25,
      "Wallis Square Police Dept",
      "Wallis_Square_Police_Department",
    ];
    B[41][78] = [6, "Carpark", "Carpark_78%2C41"];
    B[42][78] = [23, "Maine Building", "The_Maine_Building"];
    B[43][78] = [10, "Scorse Cinema", "Scorse_Cinema"];
    B[44][78] = [24, "Titley Park", "Titley_Park"];
    B[45][78] = [30, "Russell Row", "Russell_Row"];
    B[46][78] = [4, "Raikes Bank", "Raikes_Bank"];
    B[47][78] = [47, "Fort Creedy Infirmary", "Fort_Creedy"];
    B[48][78] = [44, "Fort Creedy Barracks", "Fort_Creedy"];
    B[49][78] = [45, "Fort Creedy Exercise Yard", "Fort_Creedy"];
    B[40][79] = [30, "Fliney Boulevard", "Fliney_Boulevard"];
    B[41][79] = [3, "Whetcombe Auto Repair", "Whetcombe_Auto_Repair"];
    B[42][79] = [33, "Wasteland", "Wasteland_79%2C42"];
    B[43][79] = [30, "Heritage Lane", "Heritage_Lane"];
    B[44][79] = [5, "Higgdon Building", "The_Higgdon_Building"];
    B[45][79] = [6, "Carpark", "Carpark_79%2C45"];
    B[46][79] = [
      27,
      "Sebright Drive Railway Station",
      "Sebright_Drive_Railway_Station",
    ];
    B[47][79] = [48, "Fort Creedy Storehouse", "Fort_Creedy"];
    B[48][79] = [43, "Fort Creedy Armoury", "Fort_Creedy"];
    B[49][79] = [49, "Fort Creedy Training Ground", "Fort_Creedy"];

    // ------------------------------------------------
    // Kinch Heights
    // ------------------------------------------------
    B[40][80] = [31, "Mazzie Towers", "Mazzie_Towers"];
    B[41][80] = [30, "Blackholler Street", "Blackholler_Street"];
    B[42][80] = [30, "Woollmington Place", "Woollmington_Place"];
    B[43][80] = [17, "Junkyard", "Junkyard_80%2C43"];
    B[44][80] = [9, "St Lucy's Church", "St._Lucy%27s_Church"];
    B[45][80] = [24, "Elers Park", "Elers_Park"];
    B[46][80] = [30, "Gumm Alley", "Gumm_Alley"];
    B[47][80] = [44, "Fort Creedy Barracks", "Fort_Creedy"];
    B[48][80] = [46, "Fort Creedy Gatehouse", "Fort_Creedy"];
    B[49][80] = [50, "Fort Creedy Vehicle Depot", "Fort_Creedy"];
    B[40][81] = [4, "Baum Bank", "Baum_Bank"];
    B[41][81] = [13, "Boxall Road Fire Station", "Boxall_Road_Fire_Station"];
    B[42][81] = [30, "Walden Drive", "Walden_Drive"];
    B[43][81] = [10, "Davenport Cinema", "Davenport_Cinema"];
    B[44][81] = [30, "Nalder Plaza", "Nalder_Plaza"];
    B[45][81] = [8, "Cemetery", "Cemetery_81%2C45"];
    B[46][81] = [18, "Norgan Library", "Norgan_Library"];
    B[47][81] = [17, "Junkyard", "Junkyard_81%2C47"];
    B[48][81] = [30, "Ebdon Drive", "Ebdon_Drive"];
    B[49][81] = [5, "Hunter Building", "The_Hunter_Building"];
    B[40][82] = [10, "Maggs Cinema", "Maggs_Cinema"];
    B[41][82] = [
      25,
      "Boutcher Alley Police Dept",
      "Boutcher_Alley_Police_Department",
    ];
    B[42][82] = [30, "Stidston Street", "Stidston_Street"];
    B[43][82] = [30, "Bathe Row", "Bathe_Row"];
    B[44][82] = [30, "Teek Road", "Teek_Road_%28Pitneybank%29"];
    B[45][82] = [30, "Beall Avenue", "Beall_Avenue"];
    B[46][82] = [23, "Farmer Building", "The_Farmer_Building"];
    B[47][82] = [31, "Mumford Towers", "Mumford_Towers"];
    B[48][82] = [30, "Rowlatt Row", "Rowlatt_Row"];
    B[49][82] = [28, "Lavor Alley School", "Lavor_Alley_School"];
    B[40][83] = [30, "Harman Lane", "Harman_Lane"];
    B[41][83] = [32, "Warehouse", "Warehouse_83%2C41"];
    B[42][83] = [33, "Wasteland", "Wasteland_83%2C42"];
    B[43][83] = [3, "Byrne Auto Repair", "Byrne_Auto_Repair"];
    B[44][83] = [30, "Mann Walk", "Mann_Walk"];
    B[45][83] = [30, "Wylde Road", "Wylde_Road"];
    B[46][83] = [30, "Stockwell Road", "Stockwell_Road"];
    B[47][83] = [
      15,
      "St Benedict's Hospital",
      "St._Benedict%27s_Hospital_%28Pitneybank%29",
    ];
    B[48][83] = [18, "Pallaye Library", "Pallaye_Library"];
    B[49][83] = [30, "Pigeon Way", "Pigeon_Way_%28Pitneybank%29"];
    B[40][84] = [32, "Warehouse", "Warehouse_84%2C40"];
    B[41][84] = [19, "Giddings Mall", "Giddings_Mall"];
    B[42][84] = [19, "Giddings Mall", "Giddings_Mall"];
    B[43][84] = [23, "Morrish Building", "The_Morrish_Building"];
    B[44][84] = [30, "Walrond Square", "Walrond_Square"];
    B[45][84] = [21, "Powys Monument", "The_Powys_Monument"];
    B[46][84] = [30, "Deverell Grove", "Deverell_Grove"];
    B[47][84] = [6, "Carpark", "Carpark_84%2C47"];
    B[48][84] = [16, "Schonlau Motel", "The_Schonlau_Motel"];
    B[49][84] = [24, "Crowcombe Park", "Crowcombe_Park"];
    B[40][85] = [16, "MacMillan Hotel", "The_MacMillan_Hotel"];
    B[41][85] = [19, "Giddings Mall", "Giddings_Mall"];
    B[42][85] = [19, "Giddings Mall", "Giddings_Mall"];
    B[43][85] = [3, "Bromley Auto Repair", "Bromley_Auto_Repair"];
    B[44][85] = [24, "Kitch Park", "Kitch_Park"];
    B[45][85] = [30, "Rodd Grove", "Rodd_Grove"];
    B[46][85] = [30, "Hewlett Place", "Hewlett_Place"];
    B[47][85] = [30, "Membery Way", "Membery_Way"];
    B[48][85] = [21, "Dill Monument", "The_Dill_Monument"];
    B[49][85] = [30, "Rostron Plaza", "Rostron_Plaza"];
    B[40][86] = [21, "Shaa Monument", "The_Shaa_Monument"];
    B[41][86] = [30, "Lancey Drive", "Lancey_Drive"];
    B[42][86] = [27, "Sage Way Railway Station", "Sage_Way_Railway_Station"];
    B[43][86] = [5, "Sprod Building", "The_Sprod_Building"];
    B[44][86] = [13, "Billet Road Fire Station", "Billet_Road_Fire_Station"];
    B[45][86] = [33, "Wasteland", "Wasteland_86%2C45"];
    B[46][86] = [28, "Howland Street School", "Howland_Street_School"];
    B[47][86] = [30, "Buckinham Square", "Buckinham_Square"];
    B[48][86] = [5, "Lowther Building", "The_Lowther_Building"];
    B[49][86] = [30, "Colier Walk", "Colier_Walk"];
    B[40][87] = [32, "Warehouse", "Warehouse_87%2C40"];
    B[41][87] = [28, "Beaman Boulevard School", "Beaman_Boulevard_School"];
    B[42][87] = [5, "Chetham Building", "The_Chetham_Building"];
    B[43][87] = [16, "Heeks Motel", "The_Heeks_Motel"];
    B[44][87] = [
      25,
      "Halberry Boulevard Police Dept",
      "Halberry_Boulevard_Police_Department",
    ];
    B[45][87] = [12, "Factory", "Factory_87%2C45"];
    B[46][87] = [21, "Murly Monument", "The_Murly_Monument"];
    B[47][87] = [30, "Frizzell Lane", "Frizzell_Lane"];
    B[48][87] = [30, "McCorquodale Row", "McCorquodale_Row"];
    B[49][87] = [4, "Muirhead Bank", "Muirhead_Bank"];
    B[40][88] = [17, "Junkyard", "Junkyard_88%2C40"];
    B[41][88] = [33, "Wasteland", "Wasteland_88%2C41"];
    B[42][88] = [30, "Couch Avenue", "Couch_Avenue"];
    B[43][88] = [30, "Greatwood Road", "Greatwood_Road_%28Pitneybank%29"];
    B[44][88] = [30, "Hecks Street", "Hecks_Street_%28Pitneybank%29"];
    B[45][88] = [30, "Griffith Alley", "Griffith_Alley"];
    B[46][88] = [30, "Livius Row", "Livius_Row"];
    B[47][88] = [30, "Leith Way", "Leith_Way"];
    B[48][88] = [30, "Creasy Walk", "Creasy_Walk_%28Pitneybank%29"];
    B[49][88] = [30, "Rees Square", "Rees_Square"];
    B[40][89] = [30, "Davies Avenue", "Davies_Avenue_%28Pitneybank%29"];
    B[41][89] = [30, "Raper Plaza", "Raper_Plaza"];
    B[42][89] = [30, "Tewkesbury Square", "Tewkesbury_Square_%28Pitneybank%29"];
    B[43][89] = [32, "Warehouse", "Warehouse_89%2C43"];
    B[44][89] = [12, "Factory", "Factory_89%2C44"];
    B[45][89] = [30, "Chetwynd Square", "Chetwynd_Square"];
    B[46][89] = [30, "Lewarn Alley", "Lewarn_Alley"];
    B[47][89] = [28, "Cabbell Lane School", "Cabbell_Lane_School"];
    B[48][89] = [30, "Woolcott Plaza", "Woolcott_Plaza"];
    B[49][89] = [4, "Derham Bank", "Derham_Bank"];

    // ------------------------------------------------
    // Buttonville
    // ------------------------------------------------
    B[40][90] = [33, "Wasteland", "Wasteland_90%2C40"];
    B[41][90] = [11, "Club Humphries", "Club_Humphries_%28Starlingtown%29"];
    B[42][90] = [11, "Club Passmore", "Club_Passmore"];
    B[43][90] = [32, "Warehouse", "Warehouse_90%2C43"];
    B[44][90] = [30, "Stibbs Row", "Stibbs_Row"];
    B[45][90] = [
      15,
      "Brendan General Hospital",
      "Brendan_General_Hospital_%28Starlingtown%29",
    ];
    B[46][90] = [
      27,
      "Crosbie Grove Railway Station",
      "Crosbie_Grove_Railway_Station",
    ];
    B[47][90] = [
      27,
      "Hemborrow Lane Railway Station",
      "Hemborrow_Lane_Railway_Station",
    ];
    B[48][90] = [30, "Wakely Drive", "Wakely_Drive"];
    B[49][90] = [5, "Cantle Building", "The_Cantle_Building"];
    B[40][91] = [10, "Crump Cinema", "Crump_Cinema"];
    B[41][91] = [33, "Wasteland", "Wasteland_91%2C41"];
    B[42][91] = [24, "Goodday Park", "Goodday_Park"];
    B[43][91] = [30, "Batten Drive", "Batten_Drive_%28Starlingtown%29"];
    B[44][91] = [21, "Peryer Monument", "The_Peryer_Monument"];
    B[45][91] = [28, "Buller Boulevard School", "Buller_Boulevard_School"];
    B[46][91] = [30, "Rodeney Plaza", "Rodeney_Plaza_%28Starlingtown%29"];
    B[47][91] = [10, "Tidd Cinema", "Tidd_Cinema"];
    B[48][91] = [30, "Sharland Lane", "Sharland_Lane"];
    B[49][91] = [31, "Comer Towers", "Comer_Towers"];
    B[40][92] = [30, "Partridge Row", "Partridge_Row"];
    B[41][92] = [30, "Atkinson Street", "Atkinson_Street"];
    B[42][92] = [30, "Yearworth Alley", "Yearworth_Alley"];
    B[43][92] = [
      9,
      "St Joachim's Church",
      "St._Joachim%27s_Church_%28St.arlingtown%29",
    ];
    B[44][92] = [30, "Imber Square", "Imber_Square"];
    B[45][92] = [3, "Snell Auto Repair", "Snell_Auto_Repair"];
    B[46][92] = [16, "Woolven Motel", "The_Woolven_Motel"];
    B[47][92] = [11, "Club Sweeney", "Club_Sweeney"];
    B[48][92] = [21, "Leofric Monument", "The_Leofric_Monument"];
    B[49][92] = [30, "Bastick Walk", "Bastick_Walk"];
    B[40][93] = [23, "Casely Building", "The_Casely_Building"];
    B[41][93] = [
      30,
      "Devonshire Square",
      "Devonshire_Square_%28Starlingtown%29",
    ];
    B[42][93] = [33, "Wasteland", "Wasteland_93%2C42"];
    B[43][93] = [8, "Cemetery", "Cemetery_93%2C43"];
    B[44][93] = [23, "Veryard Building", "The_Veryard_Building"];
    B[45][93] = [4, "Grist Bank", "Grist_Bank"];
    B[46][93] = [5, "Trivola Building", "The_Trivola_Building"];
    B[47][93] = [21, "Rivers Monument", "The_Rivers_Monument"];
    B[48][93] = [9, "St Cyril's Church", "St._Cyril%27s_Church"];
    B[49][93] = [16, "Geyskens Hotel", "The_Geyskens_Hotel"];
    B[40][94] = [30, "Watkins Square", "Watkins_Square"];
    B[41][94] = [30, "Christopher Way", "Christopher_Way"];
    B[42][94] = [21, "Waldron Monument", "The_Waldron_Monument"];
    B[43][94] = [5, "Ponting Building", "The_Ponting_Building"];
    B[44][94] = [30, "Sheat Boulevard", "Sheat_Boulevard"];
    B[45][94] = [13, "Flower Walk Fire Station", "Flower_Walk_Fire_Station"];
    B[46][94] = [
      9,
      "St Holy's Church",
      "St._Holy%27s_Church_%28St.arlingtown%29",
    ];
    B[47][94] = [8, "Cemetery", "Cemetery_94%2C47"];
    B[48][94] = [24, "Maskell Park", "Maskell_Park"];
    B[49][94] = [30, "Tolson Row", "Tolson_Row"];
    B[40][95] = [30, "Caddy Lane", "Caddy_Lane"];
    B[41][95] = [30, "Mountford Way", "Mountford_Way"];
    B[42][95] = [33, "Wasteland", "Wasteland_95%2C42"];
    B[43][95] = [2, "Nix Arms", "The_Nix_Arms"];
    B[44][95] = [30, "Hacker Way", "Hacker_Way_%28Starlingtown%29"];
    B[45][95] = [12, "Factory", "Factory_95%2C45"];
    B[46][95] = [31, "Veazey Towers", "Veazey_Towers"];
    B[47][95] = [5, "Dunham Building", "The_Dunham_Building"];
    B[48][95] = [22, "Matthews Museum", "The_Matthews_Museum"];
    B[49][95] = [5, "Snygge Building", "The_Snygge_Building"];
    B[40][96] = [5, "Stephens Building", "The_Stephens_Building"];
    B[41][96] = [30, "Wortley Place", "Wortley_Place"];
    B[42][96] = [17, "Junkyard", "Junkyard_96%2C42"];
    B[43][96] = [5, "Lorgh Building", "The_Lorgh_Building"];
    B[44][96] = [6, "Carpark", "Carpark_96%2C44"];
    B[45][96] = [21, "Biles Monument", "The_Biles_Monument"];
    B[46][96] = [
      15,
      "St Alban's Hospital",
      "St._Alban%27s_Hospital_%28Starlingtown%29",
    ];
    B[47][96] = [30, "Cook Place", "Cook_Place"];
    B[48][96] = [16, "Ogbourn Hotel", "The_Ogbourn_Hotel"];
    B[49][96] = [17, "Junkyard", "Junkyard_96%2C49"];
    B[40][97] = [30, "Fudge Square", "Fudge_Square"];
    B[41][97] = [30, "Courtney Square", "Courtney_Square"];
    B[42][97] = [30, "Dryall Drive", "Dryall_Drive"];
    B[43][97] = [30, "Shervey Crescent", "Shervey_Crescent"];
    B[44][97] = [32, "Warehouse", "Warehouse_97%2C44"];
    B[45][97] = [30, "Woodforde Crescent", "Woodforde_Crescent"];
    B[46][97] = [30, "Daunton Square", "Daunton_Square"];
    B[47][97] = [
      27,
      "Snaydon Walk Railway Station",
      "Snaydon_Walk_Railway_Station",
    ];
    B[48][97] = [30, "Burlinson Alley", "Burlinson_Alley"];
    B[49][97] = [5, "Mackworth Building", "The_Mackworth_Building"];
    B[40][98] = [24, "Quekett Park", "Quekett_Park"];
    B[41][98] = [2, "Gristwood Arms", "The_Gristwood_Arms"];
    B[42][98] = [33, "Wasteland", "Wasteland_98%2C42"];
    B[43][98] = [33, "Wasteland", "Wasteland_98%2C43"];
    B[44][98] = [22, "Finchley Museum", "The_Finchley_Museum"];
    B[45][98] = [2, "Hartry Arms", "The_Hartry_Arms"];
    B[46][98] = [11, "Club Firminger", "Club_Firminger"];
    B[47][98] = [30, "Dering Drive", "Dering_Drive"];
    B[48][98] = [30, "Jeffrey Walk", "Jeffrey_Walk"];
    B[49][98] = [30, "Penn Avenue", "Penn_Avenue"];
    B[40][99] = [30, "Bulleid Square", "Bulleid_Square_%28Starlingtown%29"];
    B[41][99] = [22, "Chadburn Museum", "The_Chadburn_Museum"];
    B[42][99] = [30, "Haselshaw Square", "Haselshaw_Square"];
    B[43][99] = [30, "Janes Alley", "Janes_Alley"];
    B[44][99] = [12, "Factory", "Factory_99%2C44"];
    B[45][99] = [5, "Pillinger Building", "The_Pillinger_Building"];
    B[46][99] = [30, "Ollerhead Crescent", "Ollerhead_Crescent"];
    B[47][99] = [33, "Wasteland", "Wasteland_99%2C47"];
    B[48][99] = [11, "Club Silvey", "Club_Silvey"];
    B[49][99] = [30, "Briggs Lane", "Briggs_Lane"];

    // ------------------------------------------------
    // Lamport Hills
    // ------------------------------------------------
    B[50][0] = [30, "Gilbey Street", "Gilbey_Street"];
    B[51][0] = [
      25,
      "Haddock Road Police Dept",
      "Haddock_Road_Police_Department",
    ];
    B[52][0] = [30, "Besant Avenue", "Besant_Avenue"];
    B[53][0] = [18, "Moodborn Library", "Moodborn_Library"];
    B[54][0] = [30, "Low Walk", "Low_Walk"];
    B[55][0] = [11, "Club Whittem", "Club_Whittem"];
    B[56][0] = [32, "Warehouse", "Warehouse_0%2C56"];
    B[57][0] = [25, "Spry Road Police Dept", "Spry_Road_Police_Department"];
    B[58][0] = [33, "Wasteland", "Wasteland_0%2C58"];
    B[59][0] = [9, "St Laurence's Church", "St._Laurence%27s_Church"];
    B[50][1] = [2, "Loveridge Arms", "The_Loveridge_Arms"];
    B[51][1] = [
      15,
      "Edmund General Hospital",
      "Edmund_General_Hospital_%28Grigg_Heights%29",
    ];
    B[52][1] = [30, "Sherring Place", "Sherring_Place"];
    B[53][1] = [30, "Gilles Street", "Gilles_Street"];
    B[54][1] = [30, "Leighton Way", "Leighton_Way_%28Grigg_Heights%29"];
    B[55][1] = [3, "Kempe Auto Repair", "Kempe_Auto_Repair"];
    B[56][1] = [5, "Timmins Building", "The_Timmins_Building"];
    B[57][1] = [28, "Woof Plaza School", "Woof_Plaza_School"];
    B[58][1] = [30, "Higdon Crescent", "Higdon_Crescent"];
    B[59][1] = [30, "Wigfield Avenue", "Wigfield_Avenue"];
    B[50][2] = [22, "Wriford Museum", "The_Wriford_Museum"];
    B[51][2] = [16, "Bengefield Hotel", "The_Bengefield_Hotel"];
    B[52][2] = [16, "Wakeford Motel", "The_Wakeford_Motel_%28Grigg_Heights%29"];
    B[53][2] = [30, "Paillet Alley", "Paillet_Alley"];
    B[54][2] = [30, "Ackerman Walk", "Ackerman_Walk"];
    B[55][2] = [31, "Ivins Towers", "Ivins_Towers"];
    B[56][2] = [21, "Mees Monument", "The_Mees_Monument"];
    B[57][2] = [30, "Viney Place", "Viney_Place"];
    B[58][2] = [30, "Falvey Boulevard", "Falvey_Boulevard"];
    B[59][2] = [11, "Club Whittard", "Club_Whittard"];
    B[50][3] = [30, "Kitchingman Place", "Kitchingman_Place"];
    B[51][3] = [4, "Wrentmore Bank", "Wrentmore_Bank"];
    B[52][3] = [15, "Victor General Hospital", "Victor_General_Hospital"];
    B[53][3] = [30, "McGarth Plaza", "McGarth_Plaza"];
    B[54][3] = [30, "Waugh Road", "Waugh_Road"];
    B[55][3] = [16, "MacGilvray Hotel", "The_MacGilvray_Hotel"];
    B[56][3] = [5, "Ashwin Building", "The_Ashwin_Building"];
    B[57][3] = [
      25,
      "Lees Boulevard Police Dept",
      "Lees_Boulevard_Police_Department",
    ];
    B[58][3] = [30, "Riddles Place", "Riddles_Place"];
    B[59][3] = [4, "Upsdale Bank", "Upsdale_Bank"];
    B[50][4] = [30, "Colmer Way", "Colmer_Way"];
    B[51][4] = [4, "Grey Bank", "Grey_Bank"];
    B[52][4] = [22, "Linnett Museum", "The_Linnett_Museum"];
    B[53][4] = [30, "Redfern Boulevard", "Redfern_Boulevard"];
    B[54][4] = [
      27,
      "Haygarth Row Railway Station",
      "Haygarth_Row_Railway_Station",
    ];
    B[55][4] = [30, "Brower Lane", "Brower_Lane"];
    B[56][4] = [30, "Sullivan Walk", "Sullivan_Walk"];
    B[57][4] = [32, "Warehouse", "Warehouse_4%2C57"];
    B[58][4] = [25, "Blaxall Way Police Dept", "Blaxall_Way_Police_Department"];
    B[59][4] = [
      23,
      "Merson Building",
      "The_Merson_Building_%28Grigg_Heights%29",
    ];
    B[50][5] = [4, "Markess Bank", "Markess_Bank"];
    B[51][5] = [30, "Abney Boulevard", "Abney_Boulevard"];
    B[52][5] = [30, "Adam Plaza", "Adam_Plaza"];
    B[53][5] = [30, "Pople Street", "Pople_Street"];
    B[54][5] = [30, "Campain Drive", "Campain_Drive"];
    B[55][5] = [6, "Carpark", "Carpark_5%2C55"];
    B[56][5] = [21, "Heneage Monument", "The_Heneage_Monument"];
    B[57][5] = [30, "Veazey Plaza", "Veazey_Plaza"];
    B[58][5] = [32, "Warehouse", "Warehouse_5%2C58"];
    B[59][5] = [5, "Langner Building", "The_Langner_Building"];
    B[50][6] = [
      15,
      "St Seraphim's Hospital",
      "St._Seraphim%27s_Hospital_%28Grigg_Heights%29",
    ];
    B[51][6] = [30, "Forshaw Drive", "Forshaw_Drive"];
    B[52][6] = [31, "Dauncey Towers", "Dauncey_Towers"];
    B[53][6] = [30, "Tozer Place", "Tozer_Place"];
    B[54][6] = [3, "Mack Auto Repair", "Mack_Auto_Repair"];
    B[55][6] = [6, "Carpark", "Carpark_6%2C55"];
    B[56][6] = [21, "Lane Monument", "The_Lane_Monument"];
    B[57][6] = [30, "Greatwood Road", "Greatwood_Road_%28Grigg_Heights%29"];
    B[58][6] = [
      15,
      "St Wolfgang's Hospital",
      "St._Wolfgang%27s_Hospital_%28Grigg_Heights%29",
    ];
    B[59][6] = [5, "Maidment Building", "The_Maidment_Building"];
    B[50][7] = [5, "Ripley Building", "The_Ripley_Building"];
    B[51][7] = [17, "Junkyard", "Junkyard_7%2C51"];
    B[52][7] = [30, "Lansdowne Crescent", "Lansdowne_Crescent"];
    B[53][7] = [30, "Rayment Row", "Rayment_Row"];
    B[54][7] = [30, "Whish Walk", "Whish_Walk"];
    B[55][7] = [28, "Bowers Boulevard School", "Bowers_Boulevard_School"];
    B[56][7] = [22, "Estmond Museum", "The_Estmond_Museum"];
    B[57][7] = [32, "Warehouse", "Warehouse_7%2C57"];
    B[58][7] = [30, "Pye Street", "Pye_Street"];
    B[59][7] = [5, "Pincoffs Building", "The_Pincoffs_Building"];
    B[50][8] = [2, "Burtoft Arms", "The_Burtoft_Arms"];
    B[51][8] = [6, "Carpark", "Carpark_8%2C51"];
    B[52][8] = [30, "Shortman Lane", "Shortman_Lane"];
    B[53][8] = [15, "St Julius's Hospital", "St._Julius%27s_Hospital"];
    B[54][8] = [16, "Watherston Hotel", "The_Watherston_Hotel"];
    B[55][8] = [2, "Sankey Arms", "The_Sankey_Arms"];
    B[56][8] = [5, "Crawshaw Building", "The_Crawshaw_Building"];
    B[57][8] = [12, "Factory", "Factory_8%2C57"];
    B[58][8] = [16, "Whitcombe Hotel", "The_Whitcombe_Hotel"];
    B[59][8] = [30, "Bastable Alley", "Bastable_Alley_%28Grigg_Heights%29"];
    B[50][9] = [5, "Shiplow Building", "The_Shiplow_Building"];
    B[51][9] = [2, "Monks Arms", "The_Monks_Arms"];
    B[52][9] = [30, "McIlhargey Plaza", "McIlhargey_Plaza"];
    B[53][9] = [
      15,
      "Cornelius General Hospital",
      "Cornelius_General_Hospital_%28Grigg_Heights%29",
    ];
    B[54][9] = [12, "Factory", "Factory_9%2C54"];
    B[55][9] = [30, "Murrey Square", "Murrey_Square"];
    B[56][9] = [30, "Cleverly Lane", "Cleverly_Lane"];
    B[57][9] = [30, "Spooner Lane", "Spooner_Lane_%28Grigg_Heights%29"];
    B[58][9] = [11, "Club Allerston", "Club_Allerston"];
    B[59][9] = [6, "Carpark", "Carpark_9%2C59"];

    // ------------------------------------------------
    // Millen Hills
    // ------------------------------------------------
    B[50][10] = [5, "Cope Building", "The_Cope_Building_%28Reganbank%29"];
    B[51][10] = [21, "Capps Monument", "The_Capps_Monument"];
    B[52][10] = [11, "Club Bridgeman", "Club_Bridgeman"];
    B[53][10] = [30, "Wedderburn Place", "Wedderburn_Place"];
    B[54][10] = [30, "Tabor Place", "Tabor_Place"];
    B[55][10] = [5, "Gallington Building", "The_Gallington_Building"];
    B[56][10] = [3, "Schandua Auto Repair", "Schandua_Auto_Repair"];
    B[57][10] = [22, "Schandua Museum", "The_Schandua_Museum"];
    B[58][10] = [30, "Maidment Drive", "Maidment_Drive"];
    B[59][10] = [6, "Carpark", "Carpark_10%2C59"];
    B[50][11] = [30, "Buckett Walk", "Buckett_Walk_%28Reganbank%29"];
    B[51][11] = [6, "Carpark", "Carpark_11%2C51"];
    B[52][11] = [30, "Dallimore Street", "Dallimore_Street"];
    B[53][11] = [13, "Ridge Avenue Fire Station", "Ridge_Avenue_Fire_Station"];
    B[54][11] = [4, "York Bank", "York_Bank"];
    B[55][11] = [
      9,
      "St Lucius's Church",
      "St._Lucius%27s_Church_%28Reganbank%29",
    ];
    B[56][11] = [8, "Cemetery", "Cemetery_11%2C56"];
    B[57][11] = [24, "Hamblin Park", "Hamblin_Park"];
    B[58][11] = [5, "Bles Building", "The_Bles_Building"];
    B[59][11] = [30, "Southern Lane", "Southern_Lane"];
    B[50][12] = [30, "Prisk Alley", "Prisk_Alley"];
    B[51][12] = [2, "Hutchfield Arms", "The_Hutchfield_Arms"];
    B[52][12] = [32, "Warehouse", "Warehouse_12%2C52"];
    B[53][12] = [30, "Rex Crescent", "Rex_Crescent"];
    B[54][12] = [30, "Philpott Grove", "Philpott_Grove"];
    B[55][12] = [
      27,
      "Hollard Boulevard Railway Station",
      "Hollard_Boulevard_Railway_Station",
    ];
    B[56][12] = [22, "Egan Museum", "The_Egan_Museum"];
    B[57][12] = [30, "Connor Walk", "Connor_Walk"];
    B[58][12] = [13, "Essexe Lane Fire Station", "Essexe_Lane_Fire_Station"];
    B[59][12] = [5, "Holly Building", "The_Holly_Building"];
    B[50][13] = [30, "Clare Lane", "Clare_Lane"];
    B[51][13] = [30, "Hammatt Alley", "Hammatt_Alley"];
    B[52][13] = [
      27,
      "Ruddle Alley Railway Station",
      "Ruddle_Alley_Railway_Station",
    ];
    B[53][13] = [30, "Chatterton Row", "Chatterton_Row"];
    B[54][13] = [12, "Factory", "Factory_13%2C54"];
    B[55][13] = [12, "Factory", "Factory_13%2C55"];
    B[56][13] = [
      9,
      "St Innocent's Church",
      "St._Innocent%27s_Church_%28Reganbank%29",
    ];
    B[57][13] = [
      9,
      "St Vladimir's Church",
      "St._Vladimir%27s_Church_%28Reganbank%29",
    ];
    B[58][13] = [8, "Cemetery", "Cemetery_13%2C58"];
    B[59][13] = [
      15,
      "St Maximillian's Hospital",
      "St._Maximillian%27s_Hospital",
    ];
    B[50][14] = [30, "Wray Lane", "Wray_Lane"];
    B[51][14] = [30, "Creasy Walk", "Creasy_Walk_%28Reganbank%29"];
    B[52][14] = [22, "Haste Museum", "The_Haste_Museum"];
    B[53][14] = [16, "Prentis Hotel", "The_Prentis_Hotel"];
    B[54][14] = [22, "William Museum", "The_William_Museum"];
    B[55][14] = [22, "Corben Museum", "The_Corben_Museum"];
    B[56][14] = [30, "Beckett Walk", "Beckett_Walk"];
    B[57][14] = [22, "Pope Museum", "The_Pope_Museum"];
    B[58][14] = [6, "Carpark", "Carpark_14%2C58"];
    B[59][14] = [2, "Henstridge Arms", "The_Henstridge_Arms"];
    B[50][15] = [11, "Club Loaring", "Club_Loaring"];
    B[51][15] = [21, "Steed Monument", "The_Steed_Monument"];
    B[52][15] = [5, "Maudley Building", "The_Maudley_Building"];
    B[53][15] = [3, "Takle Auto Repair", "Takle_Auto_Repair"];
    B[54][15] = [
      9,
      "St Humphrey's Church",
      "St._Humphrey%27s_Church_%28Reganbank%29",
    ];
    B[55][15] = [5, "Lantrowe Building", "The_Lantrowe_Building"];
    B[56][15] = [33, "Wasteland", "Wasteland_15%2C56"];
    B[57][15] = [30, "Waggott Row", "Waggott_Row"];
    B[58][15] = [30, "Gunnynghame Alley", "Gunnynghame_Alley"];
    B[59][15] = [30, "Rutter Grove", "Rutter_Grove"];
    B[50][16] = [30, "Pettman Alley", "Pettman_Alley_%28Reganbank%29"];
    B[51][16] = [18, "Farthing Library", "Farthing_Library"];
    B[52][16] = [13, "Nuth Row Fire Station", "Nuth_Row_Fire_Station"];
    B[53][16] = [21, "Ogbourne Monument", "The_Ogbourne_Monument"];
    B[54][16] = [30, "Jacquet Walk", "Jacquet_Walk_%28Reganbank%29"];
    B[55][16] = [
      9,
      "St Theodore's Church",
      "St._Theodore%27s_Church_%28Reganbank%29",
    ];
    B[56][16] = [8, "Cemetery", "Cemetery_16%2C56"];
    B[57][16] = [6, "Carpark", "Carpark_16%2C57"];
    B[58][16] = [21, "Mullen Monument", "The_Mullen_Monument"];
    B[59][16] = [17, "Junkyard", "Junkyard_16%2C59"];
    B[50][17] = [32, "Warehouse", "Warehouse_17%2C50"];
    B[51][17] = [30, "Tidy Boulevard", "Tidy_Boulevard"];
    B[52][17] = [30, "Bently Drive", "Bently_Drive"];
    B[53][17] = [5, "Moberly Building", "The_Moberly_Building"];
    B[54][17] = [33, "Wasteland", "Wasteland_17%2C54"];
    B[55][17] = [12, "Factory", "Factory_17%2C55"];
    B[56][17] = [18, "Downing Library", "Downing_Library"];
    B[57][17] = [30, "Adams Lane", "Adams_Lane"];
    B[58][17] = [24, "Allerston Park", "Allerston_Park"];
    B[59][17] = [21, "Sparke Monument", "The_Sparke_Monument"];
    B[50][18] = [30, "Dyett Walk", "Dyett_Walk"];
    B[51][18] = [10, "Percival Cinema", "Percival_Cinema"];
    B[52][18] = [18, "Hewish Library", "Hewish_Library"];
    B[53][18] = [30, "Rawling Boulevard", "Rawling_Boulevard_%28Reganbank%29"];
    B[54][18] = [30, "Paynter Avenue", "Paynter_Avenue"];
    B[55][18] = [30, "Garde Avenue", "Garde_Avenue"];
    B[56][18] = [2, "Whitmey Arms", "The_Whitmey_Arms"];
    B[57][18] = [30, "Ord Alley", "Ord_Alley"];
    B[58][18] = [
      30,
      "Merryweather Plaza",
      "Merryweather_Plaza_%28Reganbank%29",
    ];
    B[59][18] = [30, "Gervais Lane", "Gervais_Lane"];
    B[50][19] = [28, "Creyghton Drive School", "Creyghton_Drive_School"];
    B[51][19] = [30, "Lewer Way", "Lewer_Way"];
    B[52][19] = [
      9,
      "St Margaret's Church",
      "St._Margaret%27s_Church_%28Reganbank%29",
    ];
    B[53][19] = [30, "Cooley Walk", "Cooley_Walk"];
    B[54][19] = [16, "Tytherleigh Motel", "The_Tytherleigh_Motel"];
    B[55][19] = [21, "Wall Monument", "The_Wall_Monument"];
    B[56][19] = [2, "Roach Arms", "The_Roach_Arms"];
    B[57][19] = [5, "Anning Building", "The_Anning_Building"];
    B[58][19] = [30, "Strike Plaza", "Strike_Plaza"];
    B[59][19] = [30, "Dampier Lane", "Dampier_Lane"];

    // ------------------------------------------------
    // Shearbank
    // ------------------------------------------------
    B[50][20] = [30, "Holley Square", "Holley_Square"];
    B[51][20] = [
      25,
      "Farewell Place Police Dept",
      "Farewell_Place_Police_Department",
    ];
    B[52][20] = [8, "Cemetery", "Cemetery_20%2C52"];
    B[53][20] = [3, "Beament Auto Repair", "Beament_Auto_Repair"];
    B[54][20] = [
      9,
      "St Julie's Church",
      "St._Julie%27s_Church_%28Lerwill_Heights%29",
    ];
    B[55][20] = [8, "Cemetery", "Cemetery_20%2C55"];
    B[56][20] = [33, "Wasteland", "Wasteland_20%2C56"];
    B[57][20] = [12, "Factory", "Factory_20%2C57"];
    B[58][20] = [28, "Lomax Alley School", "Lomax_Alley_School"];
    B[59][20] = [16, "Potts Motel", "The_Potts_Motel"];
    B[50][21] = [21, "Staveley Monument", "The_Staveley_Monument"];
    B[51][21] = [24, "Dibbin Park", "Dibbin_Park"];
    B[52][21] = [
      27,
      "Sidey Alley Railway Station",
      "Sidey_Alley_Railway_Station",
    ];
    B[53][21] = [30, "Kene Avenue", "Kene_Avenue"];
    B[54][21] = [9, "St Julius's Church", "St._Julius%27s_Church"];
    B[55][21] = [8, "Cemetery", "Cemetery_21%2C55"];
    B[56][21] = [24, "Cornwall Park", "Cornwall_Park"];
    B[57][21] = [30, "Nutl Drive", "Nutl_Drive"];
    B[58][21] = [5, "Mees Building", "The_Mees_Building_%28Lerwill_Heights%29"];
    B[59][21] = [6, "Carpark", "Carpark_21%2C59"];
    B[50][22] = [30, "Gunson Street", "Gunson_Street"];
    B[51][22] = [30, "Laimbeer Way", "Laimbeer_Way"];
    B[52][22] = [16, "Morrish Motel", "The_Morrish_Motel"];
    B[53][22] = [6, "Carpark", "Carpark_22%2C53"];
    B[54][22] = [30, "Lillycrap Street", "Lillycrap_Street"];
    B[55][22] = [30, "Crosbie Way", "Crosbie_Way"];
    B[56][22] = [30, "Pegg Avenue", "Pegg_Avenue"];
    B[57][22] = [3, "Mear Auto Repair", "Mear_Auto_Repair"];
    B[58][22] = [32, "Warehouse", "Warehouse_22%2C58"];
    B[59][22] = [11, "Club Lynn", "Club_Lynn"];
    B[50][23] = [3, "Bence Auto Repair", "Bence_Auto_Repair"];
    B[51][23] = [30, "Frodsham Lane", "Frodsham_Lane"];
    B[52][23] = [
      15,
      "St Columbanus's Hospital",
      "St._Columbanus%27s_Hospital_%28Lerwill_Heights%29",
    ];
    B[53][23] = [22, "Sebright Museum", "The_Sebright_Museum"];
    B[54][23] = [17, "Junkyard", "Junkyard_23%2C54"];
    B[55][23] = [2, "Belsten Arms", "The_Belsten_Arms"];
    B[56][23] = [32, "Warehouse", "Warehouse_23%2C56"];
    B[57][23] = [33, "Wasteland", "Wasteland_23%2C57"];
    B[58][23] = [33, "Wasteland", "Wasteland_23%2C58"];
    B[59][23] = [30, "Braund Lane", "Braund_Lane"];
    B[50][24] = [16, "Levett Motel", "The_Levett_Motel"];
    B[51][24] = [12, "Factory", "Factory_24%2C51"];
    B[52][24] = [
      5,
      "Selley Building",
      "The_Selley_Building_%28Lerwill_Heights%29",
    ];
    B[53][24] = [6, "Carpark", "Carpark_24%2C53"];
    B[54][24] = [22, "Peach Museum", "The_Peach_Museum"];
    B[55][24] = [30, "Davenport Drive", "Davenport_Drive"];
    B[56][24] = [11, "Club Cother", "Club_Cother"];
    B[57][24] = [24, "Furzey Park", "Furzey_Park"];
    B[58][24] = [3, "Wedderburn Auto Repair", "Wedderburn_Auto_Repair"];
    B[59][24] = [30, "Question Place", "Question_Place_%28Lerwill_Heights%29"];
    B[50][25] = [13, "Shaw Avenue Fire Station", "Shaw_Avenue_Fire_Station"];
    B[51][25] = [30, "Norvill Drive", "Norvill_Drive"];
    B[52][25] = [30, "Nalder Way", "Nalder_Way"];
    B[53][25] = [30, "Corrie Walk", "Corrie_Walk"];
    B[54][25] = [10, "Derrington Cinema", "Derrington_Cinema"];
    B[55][25] = [30, "Clynton Alley", "Clynton_Alley"];
    B[56][25] = [5, "Hayler Building", "The_Hayler_Building"];
    B[57][25] = [15, "St Willibrord's Hospital", "St._Willibrord%27s_Hospital"];
    B[58][25] = [5, "Tryon Building", "The_Tryon_Building"];
    B[59][25] = [30, "Lawrance Avenue", "Lawrance_Avenue"];
    B[50][26] = [12, "Factory", "Factory_26%2C50"];
    B[51][26] = [30, "Jouxson Walk", "Jouxson_Walk"];
    B[52][26] = [5, "Culverwell Building", "The_Culverwell_Building"];
    B[53][26] = [3, "Dibben Auto Repair", "Dibben_Auto_Repair"];
    B[54][26] = [6, "Carpark", "Carpark_26%2C54"];
    B[55][26] = [30, "Cunstone Alley", "Cunstone_Alley"];
    B[56][26] = [21, "Pollitt Monument", "The_Pollitt_Monument"];
    B[57][26] = [31, "Beer Towers", "Beer_Towers"];
    B[58][26] = [10, "Clayton Cinema", "Clayton_Cinema"];
    B[59][26] = [21, "Linley Monument", "The_Linley_Monument"];
    B[50][27] = [28, "Bind Place School", "Bind_Place_School"];
    B[51][27] = [30, "Grime Boulevard", "Grime_Boulevard"];
    B[52][27] = [21, "Dinwiddy Monument", "The_Dinwiddy_Monument"];
    B[53][27] = [5, "Matraves Building", "The_Matraves_Building"];
    B[54][27] = [4, "Collis Bank", "Collis_Bank"];
    B[55][27] = [16, "Doddimeade Motel", "The_Doddimeade_Motel"];
    B[56][27] = [33, "Wasteland", "Wasteland_27%2C56"];
    B[57][27] = [30, "Mellier Plaza", "Mellier_Plaza"];
    B[58][27] = [30, "Phillipps Plaza", "Phillipps_Plaza"];
    B[59][27] = [5, "Hambro Building", "The_Hambro_Building"];
    B[50][28] = [21, "Hamlett Monument", "The_Hamlett_Monument"];
    B[51][28] = [5, "Tennant Building", "The_Tennant_Building"];
    B[52][28] = [30, "Ings Street", "Ings_Street"];
    B[53][28] = [30, "Imeson Walk", "Imeson_Walk"];
    B[54][28] = [16, "Mountain Motel", "The_Mountain_Motel"];
    B[55][28] = [17, "Junkyard", "Junkyard_28%2C55"];
    B[56][28] = [17, "Junkyard", "Junkyard_28%2C56"];
    B[57][28] = [5, "Shiel Building", "The_Shiel_Building"];
    B[58][28] = [22, "Metcalfe Museum", "The_Metcalfe_Museum"];
    B[59][28] = [30, "Lock Street", "Lock_Street"];
    B[50][29] = [30, "Blackborow Boulevard", "Blackborow_Boulevard"];
    B[51][29] = [30, "Ebsworth Row", "Ebsworth_Row"];
    B[52][29] = [10, "Speak Cinema", "Speak_Cinema"];
    B[53][29] = [31, "Cholmondeley Towers", "Cholmondeley_Towers"];
    B[54][29] = [22, "Jelley Museum", "The_Jelley_Museum"];
    B[55][29] = [28, "Salt Street School", "Salt_Street_School"];
    B[56][29] = [30, "Sturmey Lane", "Sturmey_Lane"];
    B[57][29] = [11, "Club Trebley", "Club_Trebley"];
    B[58][29] = [12, "Factory", "Factory_29%2C58"];
    B[59][29] = [
      15,
      "Tarasius General Hospital",
      "Tarasius_General_Hospital_%28Lerwill_Heights%29",
    ];

    // ------------------------------------------------
    // Roachtown
    // ------------------------------------------------
    B[50][30] = [5, "Kemmis Building", "The_Kemmis_Building"];
    B[51][30] = [4, "Fih Bank", "Fih_Bank"];
    B[52][30] = [23, "Brennand Building", "The_Brennand_Building"];
    B[53][30] = [12, "Factory", "Factory_30%2C53"];
    B[54][30] = [
      9,
      "St Hormisdas's Church",
      "St._Hormisdas%27s_Church_%28Shore Hills%29",
    ];
    B[55][30] = [28, "Kirwan Alley School", "Kirwan_Alley_School"];
    B[56][30] = [30, "Fudge Road", "Fudge_Road"];
    B[57][30] = [30, "Shorey Place", "Shorey_Place"];
    B[58][30] = [30, "Doyle Street", "Doyle_Street"];
    B[59][30] = [30, "Templer Street", "Templer_Street"];
    B[50][31] = [16, "Lodge Motel", "The_Lodge_Motel"];
    B[51][31] = [4, "Stroude Bank", "Stroude_Bank"];
    B[52][31] = [30, "Yelling Street", "Yelling_Street"];
    B[53][31] = [21, "Cran Monument", "The_Cran_Monument"];
    B[54][31] = [8, "Cemetery", "Cemetery_31%2C54"];
    B[55][31] = [30, "Hawke Row", "Hawke_Row"];
    B[56][31] = [30, "Crape Drive", "Crape_Drive"];
    B[57][31] = [28, "Tyrrell Plaza School", "Tyrrell_Plaza_School"];
    B[58][31] = [21, "Flagg Monument", "The_Flagg_Monument"];
    B[59][31] = [21, "Colesworthy Monument", "The_Colesworthy_Monument"];
    B[50][32] = [4, "Gwinn Bank", "Gwinn_Bank"];
    B[51][32] = [30, "Shearston Walk", "Shearston_Walk"];
    B[52][32] = [5, "Paull Building", "The_Paull_Building"];
    B[53][32] = [5, "Sainsbury Building", "The_Sainsbury_Building"];
    B[54][32] = [30, "Auston Walk", "Auston_Walk_32%2C54"];
    B[55][32] = [3, "Rason Auto Repair", "Rason_Auto_Repair"];
    B[56][32] = [30, "Mitchell Drive", "Mitchell_Drive"];
    B[57][32] = [5, "Longman Building", "The_Longman_Building"];
    B[58][32] = [31, "Gaye Towers", "Gaye_Towers"];
    B[59][32] = [2, "Crofts Arms", "The_Crofts_Arms"];
    B[50][33] = [21, "Barrell Monument", "The_Barrell_Monument"];
    B[51][33] = [5, "Horner Building", "The_Horner_Building"];
    B[52][33] = [13, "Bassence Row Fire Station", "Bassence_Row_Fire_Station"];
    B[53][33] = [33, "Wasteland", "Wasteland_33%2C53"];
    B[54][33] = [5, "Locock Building", "The_Locock_Building"];
    B[55][33] = [30, "Nurse Lane", "Nurse_Lane"];
    B[56][33] = [30, "Gridley Crescent", "Gridley_Crescent"];
    B[57][33] = [23, "Pittman Building", "The_Pittman_Building"];
    B[58][33] = [11, "Club Chalderwood", "Club_Chalderwood"];
    B[59][33] = [2, "Zeally Arms", "The_Zeally_Arms"];
    B[50][34] = [30, "Simper Row", "Simper_Row"];
    B[51][34] = [17, "Junkyard", "Junkyard_34%2C51"];
    B[52][34] = [30, "Arbery Walk", "Arbery_Walk"];
    B[53][34] = [5, "Reading Building", "The_Reading_Building"];
    B[54][34] = [30, "Comber Walk", "Comber_Walk"];
    B[55][34] = [30, "Fathers Street", "Fathers_Street"];
    B[56][34] = [2, "Boait Arms", "The_Boait_Arms"];
    B[57][34] = [16, "Spurway Hotel", "The_Spurway_Hotel"];
    B[58][34] = [30, "Stephens Street", "Stephens_Street"];
    B[59][34] = [24, "Burlton Park", "Burlton_Park"];
    B[50][35] = [30, "Havenhand Walk", "Havenhand_Walk"];
    B[51][35] = [30, "Ponting Plaza", "Ponting_Plaza"];
    B[52][35] = [30, "Burlton Walk", "Burlton_Walk"];
    B[53][35] = [10, "Clegg Cinema", "Clegg_Cinema"];
    B[54][35] = [5, "Barwood Building", "The_Barwood_Building"];
    B[55][35] = [33, "Wasteland", "Wasteland_35%2C55"];
    B[56][35] = [32, "Warehouse", "Warehouse_35%2C56"];
    B[57][35] = [30, "Towning Street", "Towning_Street"];
    B[58][35] = [31, "Carslake Towers", "Carslake_Towers"];
    B[59][35] = [22, "Thornhill Museum", "The_Thornhill_Museum"];
    B[50][36] = [30, "Came Place", "Came_Place"];
    B[51][36] = [5, "Botting Building", "The_Botting_Building"];
    B[52][36] = [2, "Ashford Arms", "The_Ashford_Arms"];
    B[53][36] = [30, "Tompsett Walk", "Tompsett_Walk_%28Shore_Hills%29"];
    B[54][36] = [
      28,
      "Butson Boulevard School",
      "Butson_Boulevard_School_%28Shore_Hills%29",
    ];
    B[55][36] = [32, "Warehouse", "Warehouse_36%2C55"];
    B[56][36] = [25, "Maul Row Police Dept", "Maul_Row_Police_Department"];
    B[57][36] = [33, "Wasteland", "Wasteland_36%2C57"];
    B[58][36] = [30, "Squibbs Row", "Squibbs_Row"];
    B[59][36] = [24, "Foote Park", "Foote_Park"];
    B[50][37] = [30, "Herrington Drive", "Herrington_Drive"];
    B[51][37] = [30, "Stower Row", "Stower_Row"];
    B[52][37] = [30, "Orman Way", "Orman_Way"];
    B[53][37] = [33, "Wasteland", "Wasteland_37%2C53"];
    B[54][37] = [3, "Crawley Auto Repair", "Crawley_Auto_Repair"];
    B[55][37] = [30, "Chyke Avenue", "Chyke_Avenue"];
    B[56][37] = [2, "Waddams Arms", "The_Waddams_Arms"];
    B[57][37] = [
      25,
      "Teek Boulevard Police Dept",
      "Teek_Boulevard_Police_Department",
    ];
    B[58][37] = [30, "Bushrod Square", "Bushrod_Square"];
    B[59][37] = [33, "Wasteland", "Wasteland_37%2C59"];
    B[50][38] = [6, "Carpark", "Carpark_38%2C50"];
    B[51][38] = [30, "Lanhdon Grove", "Lanhdon_Grove"];
    B[52][38] = [31, "Sandy Towers", "Sandy_Towers"];
    B[53][38] = [30, "Beable Lane", "Beable_Lane"];
    B[54][38] = [2, "Hardinge Arms", "The_Hardinge_Arms"];
    B[55][38] = [30, "Ayshe Boulevard", "Ayshe_Boulevard"];
    B[56][38] = [21, "Randle Monument", "The_Randle_Monument"];
    B[57][38] = [30, "Auston Walk", "Auston_Walk_38%2C57"];
    B[58][38] = [9, "St Teresa's Church", "St._Teresa%27s_Church"];
    B[59][38] = [30, "Danford Square", "Danford_Square"];
    B[50][39] = [28, "Grayland Street School", "Grayland_Street_School"];
    B[51][39] = [
      27,
      "Rio Avenue Railway Station",
      "Rio_Avenue_Railway_Station",
    ];
    B[52][39] = [32, "Warehouse", "Warehouse_39%2C52"];
    B[53][39] = [30, "Wing Street", "Wing_Street"];
    B[54][39] = [10, "Wadham Cinema", "Wadham_Cinema"];
    B[55][39] = [
      23,
      "Poulter Building",
      "The_Poulter_Building_%28Shore_Hills%29",
    ];
    B[56][39] = [17, "Junkyard", "Junkyard_39%2C56"];
    B[57][39] = [
      15,
      "James General Hospital",
      "James_General_Hospital_%28Shore_Hills%29",
    ];
    B[58][39] = [33, "Wasteland", "Wasteland_39%2C58"];
    B[59][39] = [8, "Cemetery", "Cemetery_39%2C59"];

    // ------------------------------------------------
    // Ridleybank
    // ------------------------------------------------
    B[50][40] = [30, "Sainsbury Road", "Sainsbury_Road"];
    B[51][40] = [16, "Ponsonby Motel", "The_Ponsonby_Motel"];
    B[52][40] = [6, "Carpark", "Carpark_40%2C52"];
    B[53][40] = [32, "Warehouse", "Warehouse_40%2C53"];
    B[54][40] = [
      25,
      "Burdekin Alley Police Dept",
      "Burdekin_Alley_Police_Department",
    ];
    B[55][40] = [30, "Gass Lane", "Gass_Lane"];
    B[56][40] = [30, "Ore Drive", "Ore_Drive"];
    B[57][40] = [30, "Gillam Street", "Gillam_Street"];
    B[58][40] = [30, "Haggett Place", "Haggett_Place_%28Galbraith_Hills%29"];
    B[59][40] = [30, "Hiblett Alley", "Hiblett_Alley"];
    B[50][41] = [30, "Cummins Avenue", "Cummins_Avenue"];
    B[51][41] = [31, "Adney Towers", "Adney_Towers"];
    B[52][41] = [30, "Style Boulevard", "Style_Boulevard"];
    B[53][41] = [16, "Beachem Hotel", "The_Beachem_Hotel"];
    B[54][41] = [30, "Clearey Drive", "Clearey_Drive"];
    B[55][41] = [
      13,
      "Aires Crescent Fire Station",
      "Aires_Crescent_Fire_Station",
    ];
    B[56][41] = [5, "Vimpany Building", "The_Vimpany_Building"];
    B[57][41] = [
      13,
      "Hollester Boulevard Fire Station",
      "Hollester_Boulevard_Fire_Station",
    ];
    B[58][41] = [30, "Stedham Crescent", "Stedham_Crescent"];
    B[59][41] = [31, "Cread Towers", "Cread_Towers"];
    B[50][42] = [30, "Moran Alley", "Moran_Alley"];
    B[51][42] = [22, "Rhoden Museum", "The_Rhoden_Museum"];
    B[52][42] = [2, "Hiscock Arms", "The_Hiscock_Arms"];
    B[53][42] = [30, "Beach Place", "Beach_Place"];
    B[54][42] = [5, "Gillings Building", "The_Gillings_Building"];
    B[55][42] = [11, "Club Creeber", "Club_Creeber"];
    B[56][42] = [28, "English Drive School", "English_Drive_School"];
    B[57][42] = [
      13,
      "Kingslake Walk Fire Station",
      "Kingslake_Walk_Fire_Station",
    ];
    B[58][42] = [
      9,
      "St Herman's Church",
      "St._Herman%27s_Church_%28Galbraith_Hills%29",
    ];
    B[59][42] = [16, "Latchem Hotel", "The_Latchem_Hotel"];
    B[50][43] = [30, "Summerhayes Row", "Summerhayes_Row"];
    B[51][43] = [30, "Speke Boulevard", "Speke_Boulevard"];
    B[52][43] = [3, "Beele Auto Repair", "Beele_Auto_Repair"];
    B[53][43] = [10, "Fritz Cinema", "Fritz_Cinema"];
    B[54][43] = [30, "Conybear Road", "Conybear_Road_%28Galbraith_Hills%29"];
    B[55][43] = [30, "Spiers Place", "Spiers_Place"];
    B[56][43] = [17, "Junkyard", "Junkyard_43%2C56"];
    B[57][43] = [
      13,
      "Pigitt Square Fire Station",
      "Pigitt_Square_Fire_Station",
    ];
    B[58][43] = [6, "Carpark", "Carpark_43%2C58"];
    B[59][43] = [8, "Cemetery", "Cemetery_43%2C59"];
    B[50][44] = [15, "Philip General Hospital", "Philip_General_Hospital"];
    B[51][44] = [30, "Bornard Walk", "Bornard_Walk"];
    B[52][44] = [3, "Silcock Auto Repair", "Silcock_Auto_Repair"];
    B[53][44] = [30, "Beckey Street", "Beckey_Street"];
    B[54][44] = [11, "Club Chappell", "Club_Chappell"];
    B[55][44] = [21, "Gush Monument", "The_Gush_Monument"];
    B[56][44] = [12, "Factory", "Factory_44%2C56"];
    B[57][44] = [30, "Kerswill Square", "Kerswill_Square"];
    B[58][44] = [30, "Deem Drive", "Deem_Drive"];
    B[59][44] = [30, "Moffat Grove", "Moffat_Grove"];
    B[50][45] = [2, "Hume Arms", "The_Hume_Arms"];
    B[51][45] = [30, "Timewell Way", "Timewell_Way"];
    B[52][45] = [12, "Factory", "Factory_45%2C52"];
    B[53][45] = [2, "Smart Arms", "The_Smart_Arms"];
    B[54][45] = [30, "Larcombe Plaza", "Larcombe_Plaza"];
    B[55][45] = [5, "Singer Building", "The_Singer_Building"];
    B[56][45] = [18, "Donne Library", "Donne_Library"];
    B[57][45] = [30, "Dustan Avenue", "Dustan_Avenue"];
    B[58][45] = [30, "Burch Walk", "Burch_Walk"];
    B[59][45] = [11, "Club Record", "Club_Record"];
    B[50][46] = [
      27,
      "Mattravers Way Railway Station",
      "Mattravers_Way_Railway_Station",
    ];
    B[51][46] = [28, "Burredg Row School", "Burredg_Row_School"];
    B[52][46] = [30, "Priddice Road", "Priddice_Road"];
    B[53][46] = [15, "Thomas General Hospital", "Thomas_General_Hospital"];
    B[54][46] = [30, "Grace Grove", "Grace_Grove"];
    B[55][46] = [
      27,
      "Gorham Place Railway Station",
      "Gorham_Place_Railway_Station",
    ];
    B[56][46] = [33, "Wasteland", "Wasteland_46%2C56"];
    B[57][46] = [30, "Whitehorn Street", "Whitehorn_Street"];
    B[58][46] = [30, "Crowly Way", "Crowly_Way"];
    B[59][46] = [18, "Deed Library", "Deed_Library"];
    B[50][47] = [
      25,
      "Wasson Square Police Dept",
      "Wasson_Square_Police_Department",
    ];
    B[51][47] = [32, "Warehouse", "Warehouse_47%2C51"];
    B[52][47] = [30, "Gaffney Lane", "Gaffney_Lane"];
    B[53][47] = [5, "Bares Building", "The_Bares_Building"];
    B[54][47] = [30, "Tulk Grove", "Tulk_Grove_%28Galbraith_Hills%29"];
    B[55][47] = [30, "Finchley Lane", "Finchley_Lane"];
    B[56][47] = [12, "Factory", "Factory_47%2C56"];
    B[57][47] = [33, "Wasteland", "Wasteland_47%2C57"];
    B[58][47] = [17, "Junkyard", "Junkyard_47%2C58"];
    B[59][47] = [21, "Sulley Monument", "The_Sulley_Monument"];
    B[50][48] = [30, "Croft Lane", "Croft_Lane"];
    B[51][48] = [5, "Jacquet Building", "The_Jacquet_Building"];
    B[52][48] = [32, "Warehouse", "Warehouse_48%2C52"];
    B[53][48] = [4, "Holmshaw Bank", "Holmshaw_Bank"];
    B[54][48] = [4, "Beauchamp Bank", "Beauchamp_Bank"];
    B[55][48] = [2, "Pers Arms", "The_Pers_Arms"];
    B[56][48] = [30, "Henning Place", "Henning_Place"];
    B[57][48] = [30, "Budgell Walk", "Budgell_Walk"];
    B[58][48] = [24, "Abarough Park", "Abarough_Park"];
    B[59][48] = [2, "Butland Arms", "The_Butland_Arms"];
    B[50][49] = [4, "Luckraft Bank", "Luckraft_Bank"];
    B[51][49] = [30, "Pittard Plaza", "Pittard_Plaza"];
    B[52][49] = [5, "Kellett Building", "The_Kellett_Building"];
    B[53][49] = [11, "Club Colkes", "Club_Colkes"];
    B[54][49] = [30, "Firminger Walk", "Firminger_Walk_%28Galbraith_Hills%29"];
    B[55][49] = [30, "Estens Alley", "Estens_Alley"];
    B[56][49] = [18, "Rippon Library", "Rippon_Library"];
    B[57][49] = [10, "Munford Cinema", "Munford_Cinema"];
    B[58][49] = [33, "Wasteland", "Wasteland_49%2C58"];
    B[59][49] = [30, "Cornick Way", "Cornick_Way"];

    // ------------------------------------------------
    // Stanbury Village
    // ------------------------------------------------
    B[50][50] = [2, "Corfield Arms", "The_Corfield_Arms"];
    B[51][50] = [2, "Higgs Arms", "The_Higgs_Arms"];
    B[52][50] = [33, "Wasteland", "Wasteland_50%2C52"];
    B[53][50] = [5, "McCulloch Building", "The_McCulloch_Building"];
    B[54][50] = [30, "Clear Street", "Clear_Street"];
    B[55][50] = [30, "Stampfordham Avenue", "Stampfordham_Avenue"];
    B[56][50] = [11, "Club Twycrosse", "Club_Twycrosse"];
    B[57][50] = [30, "Maddaford Grove", "Maddaford_Grove"];
    B[58][50] = [17, "Junkyard", "Junkyard_50%2C58"];
    B[59][50] = [5, "Tomalin Building", "The_Tomalin_Building"];
    B[50][51] = [30, "Rebus Plaza", "Rebus_Plaza"];
    B[51][51] = [
      25,
      "Bunney Street Police Dept",
      "Bunney_Street_Police_Department",
    ];
    B[52][51] = [24, "Sheil Park", "Sheil_Park"];
    B[53][51] = [30, "Stanbury Place", "Stanbury_Place"];
    B[54][51] = [30, "Wickenden Grove", "Wickenden_Grove"];
    B[55][51] = [2, "Carr Arms", "The_Carr_Arms"];
    B[56][51] = [
      15,
      "Catherine General Hospital",
      "Catherine_General_Hospital_%28Stanbury_Village%29",
    ];
    B[57][51] = [23, "Moseley Building", "The_Moseley_Building"];
    B[58][51] = [30, "Wiseman Place", "Wiseman_Place"];
    B[59][51] = [33, "Wasteland", "Wasteland_51%2C59"];
    B[50][52] = [5, "Heard Building", "The_Heard_Building"];
    B[51][52] = [30, "Axworthy Square", "Axworthy_Square"];
    B[52][52] = [30, "Lyman Square", "Lyman_Square"];
    B[53][52] = [30, "Toms Road", "Toms_Road"];
    B[54][52] = [5, "Modeford Building", "The_Modeford_Building"];
    B[55][52] = [30, "Markey Square", "Markey_Square"];
    B[56][52] = [9, "St Augustine's Church", "St._Augustine%27s_Church"];
    B[57][52] = [30, "Dix Row", "Dix_Row_%28Stanbury_Village%29"];
    B[58][52] = [10, "Rowson Cinema", "Rowson_Cinema"];
    B[59][52] = [30, "Templeton Crescent", "Templeton_Crescent"];
    B[50][53] = [24, "Whetcombe Park", "Whetcombe_Park_%28Stanbury_Village%29"];
    B[51][53] = [28, "Pound Place School", "Pound_Place_School"];
    B[52][53] = [17, "Junkyard", "Junkyard_53%2C52"];
    B[53][53] = [
      9,
      "St Ambrose's Church",
      "St._Ambrose%27s_Church_%28St.anbury Village%29",
    ];
    B[54][53] = [9, "St Eusebius's Church", "St._Eusebius%27s_Church"];
    B[55][53] = [8, "Cemetery", "Cemetery_53%2C55"];
    B[56][53] = [30, "Dorey Walk", "Dorey_Walk"];
    B[57][53] = [9, "St Maria's Church", "St._Maria%27s_Church"];
    B[58][53] = [
      25,
      "Daynes Alley Police Dept",
      "Daynes_Alley_Police_Department",
    ];
    B[59][53] = [31, "Johnstone Towers", "Johnstone_Towers"];
    B[50][54] = [21, "Christie Monument", "The_Christie_Monument"];
    B[51][54] = [30, "Hillier Walk", "Hillier_Walk"];
    B[52][54] = [11, "Club Brine", "Club_Brine"];
    B[53][54] = [17, "Junkyard", "Junkyard_54%2C53"];
    B[54][54] = [30, "Duffill Alley", "Duffill_Alley_%28Stanbury_Village%29"];
    B[55][54] = [10, "Lacy Cinema", "Lacy_Cinema"];
    B[56][54] = [33, "Wasteland", "Wasteland_54%2C56"];
    B[57][54] = [8, "Cemetery", "Cemetery_54%2C57"];
    B[58][54] = [32, "Warehouse", "Warehouse_54%2C58"];
    B[59][54] = [33, "Wasteland", "Wasteland_54%2C59"];
    B[50][55] = [
      30,
      "Rumble Crescent",
      "Rumble_Crescent_%28Stanbury_Village%29",
    ];
    B[51][55] = [5, "Stollery Building", "The_Stollery_Building"];
    B[52][55] = [31, "Bently Towers", "Bently_Towers"];
    B[53][55] = [30, "Bateman Way", "Bateman_Way"];
    B[54][55] = [30, "Burgess Street", "Burgess_Street"];
    B[55][55] = [10, "Beacham Cinema", "Beacham_Cinema"];
    B[56][55] = [5, "Sertin Building", "The_Sertin_Building"];
    B[57][55] = [30, "Skemp Road", "Skemp_Road"];
    B[58][55] = [33, "Wasteland", "Wasteland_55%2C58"];
    B[59][55] = [31, "Youings Towers", "Youings_Towers"];
    B[50][56] = [33, "Wasteland", "Wasteland_56%2C50"];
    B[51][56] = [33, "Wasteland", "Wasteland_56%2C51"];
    B[52][56] = [4, "Boyd Bank", "Boyd_Bank"];
    B[53][56] = [18, "Brome Library", "Brome_Library"];
    B[54][56] = [30, "Maxwell Walk", "Maxwell_Walk"];
    B[55][56] = [16, "Dann Hotel", "The_Dann_Hotel"];
    B[56][56] = [30, "Salvage Row", "Salvage_Row"];
    B[57][56] = [12, "Factory", "Factory_56%2C57"];
    B[58][56] = [28, "Back Place School", "Back_Place_School"];
    B[59][56] = [5, "Hervey Building", "The_Hervey_Building"];
    B[50][57] = [30, "Mannell Walk", "Mannell_Walk"];
    B[51][57] = [3, "Halsey Auto Repair", "Halsey_Auto_Repair"];
    B[52][57] = [30, "Brougham Way", "Brougham_Way"];
    B[53][57] = [18, "Stribling Library", "Stribling_Library"];
    B[54][57] = [32, "Warehouse", "Warehouse_57%2C54"];
    B[55][57] = [22, "Batson Museum", "The_Batson_Museum"];
    B[56][57] = [11, "Club Bartin", "Club_Bartin"];
    B[57][57] = [5, "Sprackett Building", "The_Sprackett_Building"];
    B[58][57] = [20, "Kersley Mansion", "Kersley_Mansion"];
    B[59][57] = [20, "Kersley Mansion", "Kersley_Mansion"];
    B[50][58] = [4, "Guell Bank", "Guell_Bank"];
    B[51][58] = [31, "Holdsworth Towers", "Holdsworth_Towers"];
    B[52][58] = [19, "Nichols Mall", "Nichols_Mall"];
    B[53][58] = [19, "Nichols Mall", "Nichols_Mall"];
    B[54][58] = [30, "Hatwell Place", "Hatwell_Place"];
    B[55][58] = [24, "Yeoman Park", "Yeoman_Park"];
    B[56][58] = [28, "Forse Walk School", "Forse_Walk_School"];
    B[57][58] = [2, "Cabell Arms", "The_Cabell_Arms"];
    B[58][58] = [20, "Kersley Mansion", "Kersley_Mansion"];
    B[59][58] = [20, "Kersley Mansion", "Kersley_Mansion"];
    B[50][59] = [30, "Gooden Street", "Gooden_Street"];
    B[51][59] = [33, "Wasteland", "Wasteland_59%2C51"];
    B[52][59] = [19, "Nichols Mall", "Nichols_Mall"];
    B[53][59] = [19, "Nichols Mall", "Nichols_Mall"];
    B[54][59] = [30, "Anstruther Alley", "Anstruther_Alley"];
    B[55][59] = [23, "Went Building", "The_Went_Building"];
    B[56][59] = [30, "Frye Way", "Frye_Way"];
    B[57][59] = [5, "Betty Building", "The_Betty_Building"];
    B[58][59] = [15, "Lorenzo General Hospital", "Lorenzo_General_Hospital"];
    B[59][59] = [21, "Higgs Monument", "The_Higgs_Monument"];

    // ------------------------------------------------
    // Shackleville
    // ------------------------------------------------
    B[50][60] = [30, "Dalziel Road", "Dalziel_Road"];
    B[51][60] = [30, "Benson Lane", "Benson_Lane"];
    B[52][60] = [30, "Hebditch Drive", "Hebditch_Drive"];
    B[53][60] = [5, "Whale Building", "The_Whale_Building"];
    B[54][60] = [10, "Vere Cinema", "Vere_Cinema"];
    B[55][60] = [30, "Hunn Avenue", "Hunn_Avenue"];
    B[56][60] = [6, "Carpark", "Carpark_60%2C56"];
    B[57][60] = [30, "Priscott Grove", "Priscott_Grove"];
    B[58][60] = [30, "Line Street", "Line_Street"];
    B[59][60] = [30, "Brabner Square", "Brabner_Square_%28Roftwood%29"];
    B[50][61] = [28, "Blunden Row School", "Blunden_Row_School"];
    B[51][61] = [30, "Turpin Road", "Turpin_Road"];
    B[52][61] = [30, "Missen Street", "Missen_Street"];
    B[53][61] = [30, "Naylor Walk", "Naylor_Walk"];
    B[54][61] = [30, "Lovebridge Way", "Lovebridge_Way"];
    B[55][61] = [5, "Amis Building", "The_Amis_Building"];
    B[56][61] = [5, "Sage Building", "The_Sage_Building_%28Roftwood%29"];
    B[57][61] = [30, "Dunlap Way", "Dunlap_Way"];
    B[58][61] = [30, "Templeton Boulevard", "Templeton_Boulevard"];
    B[59][61] = [30, "Alaway Row", "Alaway_Row_%28Roftwood%29"];
    B[50][62] = [33, "Wasteland", "Wasteland_62%2C50"];
    B[51][62] = [23, "Greenhow Building", "The_Greenhow_Building"];
    B[52][62] = [
      25,
      "Grimshaw Road Police Dept",
      "Grimshaw_Road_Police_Department",
    ];
    B[53][62] = [22, "Truell Museum", "The_Truell_Museum"];
    B[54][62] = [
      25,
      "Joyner Boulevard Police Dept",
      "Joyner_Boulevard_Police_Department",
    ];
    B[55][62] = [30, "Cake Walk", "Cake_Walk"];
    B[56][62] = [25, "Mayo Row Police Dept", "Mayo_Row_Police_Department"];
    B[57][62] = [5, "Dafforn Building", "The_Dafforn_Building"];
    B[58][62] = [30, "Oatley Drive", "Oatley_Drive"];
    B[59][62] = [10, "Mist Cinema", "Mist_Cinema"];
    B[50][63] = [32, "Warehouse", "Warehouse_63%2C50"];
    B[51][63] = [18, "Wadham Library", "Wadham_Library"];
    B[52][63] = [30, "Byshop Avenue", "Byshop_Avenue"];
    B[53][63] = [30, "Piegsa Way", "Piegsa_Way"];
    B[54][63] = [6, "Carpark", "Carpark_63%2C54"];
    B[55][63] = [12, "Factory", "Factory_63%2C55"];
    B[56][63] = [33, "Wasteland", "Wasteland_63%2C56"];
    B[57][63] = [30, "Gillman Lane", "Gillman_Lane"];
    B[58][63] = [4, "Lynham Bank", "Lynham_Bank"];
    B[59][63] = [30, "Shwalbe Lane", "Shwalbe_Lane"];
    B[50][64] = [3, "Witherington Auto Repair", "Witherington_Auto_Repair"];
    B[51][64] = [30, "Micklewright Plaza", "Micklewright_Plaza"];
    B[52][64] = [30, "Sheppard Walk", "Sheppard_Walk"];
    B[53][64] = [
      25,
      "Dempsey Grove Police Dept",
      "Dempsey_Grove_Police_Department",
    ];
    B[54][64] = [30, "Napier Plaza", "Napier_Plaza"];
    B[55][64] = [5, "Summer Building", "The_Summer_Building"];
    B[56][64] = [16, "Wrench Hotel", "The_Wrench_Hotel"];
    B[57][64] = [30, "Woodland Lane", "Woodland_Lane"];
    B[58][64] = [3, "Culling Auto Repair", "Culling_Auto_Repair"];
    B[59][64] = [30, "Blaimen Square", "Blaimen_Square"];
    B[50][65] = [10, "Neal Cinema", "Neal_Cinema"];
    B[51][65] = [30, "Train Plaza", "Train_Plaza"];
    B[52][65] = [5, "Kirkby Building", "The_Kirkby_Building_%28Roftwood%29"];
    B[53][65] = [33, "Wasteland", "Wasteland_65%2C53"];
    B[54][65] = [15, "Eligius General Hospital", "Eligius_General_Hospital"];
    B[55][65] = [30, "Purchas Alley", "Purchas_Alley"];
    B[56][65] = [30, "Sloper Row", "Sloper_Row"];
    B[57][65] = [10, "Forward Cinema", "Forward_Cinema"];
    B[58][65] = [30, "Tetley Road", "Tetley_Road"];
    B[59][65] = [4, "Crooker Bank", "Crooker_Bank"];
    B[50][66] = [
      15,
      "St Ethelbert's Hospital",
      "St._Ethelbert%27s_Hospital_%28Roftwood%29",
    ];
    B[51][66] = [24, "Henslowe Park", "Henslowe_Park_%28Roftwood%29"];
    B[52][66] = [18, "Quartly Library", "Quartly_Library"];
    B[53][66] = [
      13,
      "Guilford Avenue Fire Station",
      "Guilford_Avenue_Fire_Station",
    ];
    B[54][66] = [30, "Turpin Crescent", "Turpin_Crescent_%28Roftwood%29"];
    B[55][66] = [19, "Hildebrand Mall", "Hildebrand_Mall"];
    B[56][66] = [19, "Hildebrand Mall", "Hildebrand_Mall"];
    B[57][66] = [30, "Drewitt Road", "Drewitt_Road"];
    B[58][66] = [12, "Factory", "Factory_66%2C58"];
    B[59][66] = [30, "Keyford Row", "Keyford_Row"];
    B[50][67] = [12, "Factory", "Factory_67%2C50"];
    B[51][67] = [30, "Fernie Grove", "Fernie_Grove"];
    B[52][67] = [31, "Philpotts Towers", "Philpotts_Towers"];
    B[53][67] = [3, "Maiden Auto Repair", "Maiden_Auto_Repair"];
    B[54][67] = [6, "Carpark", "Carpark_67%2C54"];
    B[55][67] = [19, "Hildebrand Mall", "Hildebrand_Mall"];
    B[56][67] = [19, "Hildebrand Mall", "Hildebrand_Mall"];
    B[57][67] = [
      27,
      "Chalderwood Road Railway Station",
      "Chalderwood_Road_Railway_Station",
    ];
    B[58][67] = [
      9,
      "St Arnold's Church",
      "St._Arnold%27s_Church_%28Roftwood%29",
    ];
    B[59][67] = [5, "Drewe Building", "The_Drewe_Building"];
    B[50][68] = [
      5,
      "Copeland Building",
      "The_Copeland_Building_%28Roftwood%29",
    ];
    B[51][68] = [3, "Chinnock Auto Repair", "Chinnock_Auto_Repair"];
    B[52][68] = [30, "Cator Drive", "Cator_Drive_%28Roftwood%29"];
    B[53][68] = [24, "Swansborough Park", "Swansborough_Park"];
    B[54][68] = [23, "Herbert Building", "The_Herbert_Building"];
    B[55][68] = [30, "Gall Lane", "Gall_Lane"];
    B[56][68] = [
      25,
      "Rawlins Row Police Dept",
      "Rawlins_Row_Police_Department",
    ];
    B[57][68] = [12, "Factory", "Factory_68%2C57"];
    B[58][68] = [2, "Nicks Arms", "The_Nicks_Arms"];
    B[59][68] = [5, "Ker Building", "The_Ker_Building"];
    B[50][69] = [
      25,
      "Pratley Road Police Dept",
      "Pratley_Road_Police_Department",
    ];
    B[51][69] = [13, "Membry Lane Fire Station", "Membry_Lane_Fire_Station"];
    B[52][69] = [2, "Pendell Arms", "The_Pendell_Arms"];
    B[53][69] = [30, "Draper Way", "Draper_Way"];
    B[54][69] = [5, "Wotton Building", "The_Wotton_Building"];
    B[55][69] = [10, "Vivian Cinema", "Vivian_Cinema"];
    B[56][69] = [5, "Gregors Building", "The_Gregors_Building"];
    B[57][69] = [2, "Kirkland Arms", "The_Kirkland_Arms"];
    B[58][69] = [
      13,
      "Poultney Street Fire Station",
      "Poultney_Street_Fire_Station",
    ];
    B[59][69] = [4, "Rillie Bank", "Rillie_Bank"];

    // ------------------------------------------------
    // Kempsterbank
    // ------------------------------------------------
    B[50][70] = [33, "Wasteland", "Wasteland_70%2C50"];
    B[51][70] = [30, "Morrow Lane", "Morrow_Lane_%28Edgecombe%29"];
    B[52][70] = [3, "Hardisty Auto Repair", "Hardisty_Auto_Repair"];
    B[53][70] = [30, "Moon Way", "Moon_Way"];
    B[54][70] = [17, "Junkyard", "Junkyard_70%2C54"];
    B[55][70] = [5, "Somerton Building", "The_Somerton_Building"];
    B[56][70] = [33, "Wasteland", "Wasteland_70%2C56"];
    B[57][70] = [
      15,
      "Margaret General Hospital",
      "Margaret_General_Hospital_%28Edgecombe%29",
    ];
    B[58][70] = [30, "Roynon Road", "Roynon_Road"];
    B[59][70] = [
      13,
      "Pardoe Square Fire Station",
      "Pardoe_Square_Fire_Station",
    ];
    B[50][71] = [30, "Tayler Row", "Tayler_Row"];
    B[51][71] = [23, "Browne Building", "The_Browne_Building"];
    B[52][71] = [31, "Abot Towers", "Abot_Towers"];
    B[53][71] = [33, "Wasteland", "Wasteland_71%2C53"];
    B[54][71] = [10, "Rathbone Cinema", "Rathbone_Cinema"];
    B[55][71] = [30, "Gilesi Plaza", "Gilesi_Plaza"];
    B[56][71] = [15, "Denis General Hospital", "Denis_General_Hospital"];
    B[57][71] = [30, "Alderson Walk", "Alderson_Walk_%28Edgecombe%29"];
    B[58][71] = [30, "Chudleigh Walk", "Chudleigh_Walk"];
    B[59][71] = [18, "Trezise Library", "Trezise_Library"];
    B[50][72] = [
      27,
      "Copless Grove Railway Station",
      "Copless_Grove_Railway_Station",
    ];
    B[51][72] = [17, "Junkyard", "Junkyard_72%2C51"];
    B[52][72] = [4, "Cadbury Bank", "Cadbury_Bank"];
    B[53][72] = [2, "Peek Arms", "The_Peek_Arms"];
    B[54][72] = [4, "Gynn Bank", "Gynn_Bank"];
    B[55][72] = [30, "Bragg Row", "Bragg_Row"];
    B[56][72] = [30, "Whitehorn Boulevard", "Whitehorn_Boulevard"];
    B[57][72] = [30, "Cornelius Walk", "Cornelius_Walk"];
    B[58][72] = [16, "Podger Hotel", "The_Podger_Hotel"];
    B[59][72] = [30, "Brendon Walk", "Brendon_Walk"];
    B[50][73] = [30, "Sargent Crescent", "Sargent_Crescent_%28Edgecombe%29"];
    B[51][73] = [24, "Whitehead Park", "Whitehead_Park"];
    B[52][73] = [31, "Tredger Towers", "Tredger_Towers"];
    B[53][73] = [32, "Warehouse", "Warehouse_73%2C53"];
    B[54][73] = [2, "Blencowe Arms", "The_Blencowe_Arms"];
    B[55][73] = [
      15,
      "St Louis's Hospital",
      "St._Louis%27s_Hospital_%28Edgecombe%29",
    ];
    B[56][73] = [17, "Junkyard", "Junkyard_73%2C56"];
    B[57][73] = [32, "Warehouse", "Warehouse_73%2C57"];
    B[58][73] = [30, "Keeffe Square", "Keeffe_Square"];
    B[59][73] = [30, "Guilford Alley", "Guilford_Alley"];
    B[50][74] = [30, "Dummett Alley", "Dummett_Alley"];
    B[51][74] = [5, "Fruin Building", "The_Fruin_Building"];
    B[52][74] = [
      5,
      "Prankerd Building",
      "The_Prankerd_Building_%28Edgecombe%29",
    ];
    B[53][74] = [30, "Muirhead Drive", "Muirhead_Drive"];
    B[54][74] = [32, "Warehouse", "Warehouse_74%2C54"];
    B[55][74] = [30, "Fathers Drive", "Fathers_Drive"];
    B[56][74] = [30, "Forbes Boulevard", "Forbes_Boulevard"];
    B[57][74] = [5, "Champneys Building", "The_Champneys_Building"];
    B[58][74] = [22, "Mallack Museum", "The_Mallack_Museum"];
    B[59][74] = [17, "Junkyard", "Junkyard_74%2C59"];
    B[50][75] = [11, "Club Guilford", "Club_Guilford"];
    B[51][75] = [30, "Twitt Plaza", "Twitt_Plaza"];
    B[52][75] = [24, "Lintorn Park", "Lintorn_Park"];
    B[53][75] = [25, "Pavy Plaza Police Dept", "Pavy_Plaza_Police_Department"];
    B[54][75] = [33, "Wasteland", "Wasteland_75%2C54"];
    B[55][75] = [
      25,
      "Chanter Alley Police Dept",
      "Chanter_Alley_Police_Department",
    ];
    B[56][75] = [3, "Frye Auto Repair", "Frye_Auto_Repair"];
    B[57][75] = [11, "Club Somerton", "Club_Somerton"];
    B[58][75] = [2, "Clatworthy Arms", "The_Clatworthy_Arms"];
    B[59][75] = [15, "St Deusdedit's Hospital", "St._Deusdedit%27s_Hospital"];
    B[50][76] = [33, "Wasteland", "Wasteland_76%2C50"];
    B[51][76] = [32, "Warehouse", "Warehouse_76%2C51"];
    B[52][76] = [31, "Vale Towers", "Vale_Towers"];
    B[53][76] = [30, "Digby Walk", "Digby_Walk_%28Edgecombe%29"];
    B[54][76] = [32, "Warehouse", "Warehouse_76%2C54"];
    B[55][76] = [30, "Coomer Square", "Coomer_Square"];
    B[56][76] = [
      27,
      "Pegg Square Railway Station",
      "Pegg_Square_Railway_Station",
    ];
    B[57][76] = [
      9,
      "St Ethelbert's Church",
      "St._Ethelbert%27s_Church_%28Edgecombe%29",
    ];
    B[58][76] = [5, "Tredaway Building", "The_Tredaway_Building"];
    B[59][76] = [5, "Corp Building", "The_Corp_Building"];
    B[50][77] = [17, "Junkyard", "Junkyard_77%2C50"];
    B[51][77] = [15, "St Laurence's Hospital", "St._Laurence%27s_Hospital"];
    B[52][77] = [12, "Factory", "Factory_77%2C52"];
    B[53][77] = [5, "Baxter Building", "The_Baxter_Building"];
    B[54][77] = [23, "Caffin Building", "The_Caffin_Building"];
    B[55][77] = [6, "Carpark", "Carpark_77%2C55"];
    B[56][77] = [30, "Sarell Plaza", "Sarell_Plaza"];
    B[57][77] = [
      13,
      "Southcott Plaza Fire Station",
      "Southcott_Plaza_Fire_Station",
    ];
    B[58][77] = [3, "Pellatt Auto Repair", "Pellatt_Auto_Repair"];
    B[59][77] = [30, "Cottrill Square", "Cottrill_Square_%28Edgecombe%29"];
    B[50][78] = [11, "Club Noake", "Club_Noake"];
    B[51][78] = [30, "Hussey Lane", "Hussey_Lane_%28Edgecombe%29"];
    B[52][78] = [10, "Clapcott Cinema", "Clapcott_Cinema"];
    B[53][78] = [30, "Wenmouth Lane", "Wenmouth_Lane"];
    B[54][78] = [24, "Stanbridge Park", "Stanbridge_Park"];
    B[55][78] = [17, "Junkyard", "Junkyard_78%2C55"];
    B[56][78] = [
      25,
      "Cape Avenue Police Dept",
      "Cape_Avenue_Police_Department",
    ];
    B[57][78] = [32, "Warehouse", "Warehouse_78%2C57"];
    B[58][78] = [30, "Oldidge Way", "Oldidge_Way"];
    B[59][78] = [31, "Taverner Towers", "Taverner_Towers"];
    B[50][79] = [32, "Warehouse", "Warehouse_79%2C50"];
    B[51][79] = [10, "Mattravers Cinema", "Mattravers_Cinema"];
    B[52][79] = [17, "Junkyard", "Junkyard_79%2C52"];
    B[53][79] = [
      27,
      "Lawley Walk Railway Station",
      "Lawley_Walk_Railway_Station",
    ];
    B[54][79] = [28, "Vine Grove School", "Vine_Grove_School"];
    B[55][79] = [5, "Collinns Building", "The_Collinns_Building"];
    B[56][79] = [28, "Bunt Place School", "Bunt_Place_School"];
    B[57][79] = [
      25,
      "Stadling Walk Police Dept",
      "Stadling_Walk_Police_Department",
    ];
    B[58][79] = [23, "Maver Building", "The_Maver_Building"];
    B[59][79] = [28, "Pollitt Street School", "Pollitt_Street_School"];

    // ------------------------------------------------
    // West Grayside
    // ------------------------------------------------
    B[50][80] = [3, "Hamlen Auto Repair", "Hamlen_Auto_Repair"];
    B[51][80] = [32, "Warehouse", "Warehouse_80%2C51"];
    B[52][80] = [
      25,
      "Fowles Plaza Police Dept",
      "Fowles_Plaza_Police_Department",
    ];
    B[53][80] = [30, "Osment Drive", "Osment_Drive"];
    B[54][80] = [30, "Winscombe Crescent", "Winscombe_Crescent"];
    B[55][80] = [30, "Webber Boulevard", "Webber_Boulevard"];
    B[56][80] = [32, "Warehouse", "Warehouse_80%2C56"];
    B[57][80] = [25, "Tilly Row Police Dept", "Tilly_Row_Police_Department"];
    B[58][80] = [22, "Custard Museum", "The_Custard_Museum"];
    B[59][80] = [28, "Leaman Grove School", "Leaman_Grove_School"];
    B[50][81] = [31, "Promel Towers", "Promel_Towers"];
    B[51][81] = [9, "St Bruno's Church", "St._Bruno%27s_Church"];
    B[52][81] = [30, "Eeles Avenue", "Eeles_Avenue"];
    B[53][81] = [18, "Gyles Library", "Gyles_Library"];
    B[54][81] = [30, "Carver Street", "Carver_Street"];
    B[55][81] = [9, "St Birgitta's Church", "St._Birgitta%27s_Church"];
    B[56][81] = [
      27,
      "Perks Avenue Railway Station",
      "Perks_Avenue_Railway_Station",
    ];
    B[57][81] = [24, "Bellis Park", "Bellis_Park_%28Pegton%29"];
    B[58][81] = [5, "Breay Building", "The_Breay_Building"];
    B[59][81] = [
      27,
      "Whitlock Way Railway Station",
      "Whitlock_Way_Railway_Station",
    ];
    B[50][82] = [30, "Osbert Street", "Osbert_Street_%28Pegton%29"];
    B[51][82] = [8, "Cemetery", "Cemetery_82%2C51"];
    B[52][82] = [22, "Linney Museum", "The_Linney_Museum"];
    B[53][82] = [33, "Wasteland", "Wasteland_82%2C53"];
    B[54][82] = [22, "Isgar Museum", "The_Isgar_Museum"];
    B[55][82] = [
      25,
      "Dinham Alley Police Dept",
      "Dinham_Alley_Police_Department",
    ];
    B[56][82] = [28, "Howes Square School", "Howes_Square_School"];
    B[57][82] = [4, "Herick Bank", "Herick_Bank"];
    B[58][82] = [31, "Keppel Towers", "Keppel_Towers"];
    B[59][82] = [30, "Jacquet Walk", "Jacquet_Walk_%28Pegton%29"];
    B[50][83] = [32, "Warehouse", "Warehouse_83%2C50"];
    B[51][83] = [30, "Spridell Walk", "Spridell_Walk"];
    B[52][83] = [21, "Pargiter Monument", "The_Pargiter_Monument"];
    B[53][83] = [11, "Club Randell", "Club_Randell"];
    B[54][83] = [22, "Bratt Museum", "The_Bratt_Museum"];
    B[55][83] = [30, "Aldhous Drive", "Aldhous_Drive"];
    B[56][83] = [2, "Norvell Arms", "The_Norvell_Arms"];
    B[57][83] = [4, "Jotcham Bank", "Jotcham_Bank"];
    B[58][83] = [30, "William Grove", "William_Grove"];
    B[59][83] = [30, "Pasmore Alley", "Pasmore_Alley"];
    B[50][84] = [5, "Ludwell Building", "The_Ludwell_Building"];
    B[51][84] = [3, "Chaning Auto Repair", "Chaning_Auto_Repair"];
    B[52][84] = [5, "Whicher Building", "The_Whicher_Building"];
    B[53][84] = [33, "Wasteland", "Wasteland_84%2C53"];
    B[54][84] = [21, "Biddescombe Monument", "The_Biddescombe_Monument"];
    B[55][84] = [30, "Whale Road", "Whale_Road"];
    B[56][84] = [30, "Dolbridge Street", "Dolbridge_Street_%28Pegton%29"];
    B[57][84] = [32, "Warehouse", "Warehouse_84%2C57"];
    B[58][84] = [30, "Bidgway Way", "Bidgway_Way"];
    B[59][84] = [24, "Blobole Park", "Blobole_Park"];
    B[50][85] = [12, "Factory", "Factory_85%2C50"];
    B[51][85] = [13, "Sellek Way Fire Station", "Sellek_Way_Fire_Station"];
    B[52][85] = [23, "Rowcliffe Building", "The_Rowcliffe_Building"];
    B[53][85] = [25, "Cowing Way Police Dept", "Cowing_Way_Police_Department"];
    B[54][85] = [5, "Bennett Building", "The_Bennett_Building_%28Pegton%29"];
    B[55][85] = [18, "Macaulay Library", "Macaulay_Library"];
    B[56][85] = [30, "Youngan Boulevard", "Youngan_Boulevard"];
    B[57][85] = [33, "Wasteland", "Wasteland_85%2C57"];
    B[58][85] = [12, "Factory", "Factory_85%2C58"];
    B[59][85] = [32, "Warehouse", "Warehouse_85%2C59"];
    B[50][86] = [32, "Warehouse", "Warehouse_86%2C50"];
    B[51][86] = [3, "Beagly Auto Repair", "Beagly_Auto_Repair"];
    B[52][86] = [3, "Pyke Auto Repair", "Pyke_Auto_Repair"];
    B[53][86] = [
      30,
      "Somerville Boulevard",
      "Somerville_Boulevard_%28Pegton%29",
    ];
    B[54][86] = [30, "Pattin Square", "Pattin_Square"];
    B[55][86] = [15, "St Siricius's Hospital", "St._Siricius%27s_Hospital"];
    B[56][86] = [4, "Glynn Bank", "Glynn_Bank"];
    B[57][86] = [5, "Paviour Building", "The_Paviour_Building"];
    B[58][86] = [22, "Rosser Museum", "The_Rosser_Museum"];
    B[59][86] = [2, "Argile Arms", "The_Argile_Arms"];
    B[50][87] = [30, "Willia Alley", "Willia_Alley"];
    B[51][87] = [
      13,
      "McDonald Drive Fire Station",
      "McDonald_Drive_Fire_Station",
    ];
    B[52][87] = [30, "Errington Way", "Errington_Way"];
    B[53][87] = [30, "Hubbard Avenue", "Hubbard_Avenue_%28Pegton%29"];
    B[54][87] = [
      15,
      "St Matthew's Hospital",
      "St._Matthew%27s_Hospital_%28Pegton%29",
    ];
    B[55][87] = [
      27,
      "Norton Square Railway Station",
      "Norton_Square_Railway_Station",
    ];
    B[56][87] = [9, "St Martin's Church", "St._Martin%27s_Church"];
    B[57][87] = [8, "Cemetery", "Cemetery_87%2C57"];
    B[58][87] = [5, "Downes Building", "The_Downes_Building"];
    B[59][87] = [5, "Meatyard Building", "The_Meatyard_Building"];
    B[50][88] = [12, "Factory", "Factory_88%2C50"];
    B[51][88] = [24, "Harden Park", "Harden_Park"];
    B[52][88] = [33, "Wasteland", "Wasteland_88%2C52"];
    B[53][88] = [30, "Edmondson Square", "Edmondson_Square"];
    B[54][88] = [5, "Burrell Building", "The_Burrell_Building"];
    B[55][88] = [11, "Club Aldrich", "Club_Aldrich"];
    B[56][88] = [
      15,
      "St Elisabeth's Hospital",
      "St._Elisabeth%27s_Hospital_%28Pegton%29",
    ];
    B[57][88] = [24, "Weatherhead Park", "Weatherhead_Park"];
    B[58][88] = [6, "Carpark", "Carpark_88%2C58"];
    B[59][88] = [2, "Hanne Arms", "The_Hanne_Arms"];
    B[50][89] = [6, "Carpark", "Carpark_89%2C50"];
    B[51][89] = [32, "Warehouse", "Warehouse_89%2C51"];
    B[52][89] = [31, "Parkhouse Towers", "Parkhouse_Towers"];
    B[53][89] = [18, "Newstead Library", "Newstead_Library"];
    B[54][89] = [30, "Mules Drive", "Mules_Drive"];
    B[55][89] = [30, "Laghelegh Drive", "Laghelegh_Drive"];
    B[56][89] = [30, "Shum Plaza", "Shum_Plaza"];
    B[57][89] = [30, "Lakey Way", "Lakey_Way"];
    B[58][89] = [30, "Guttridge Drive", "Guttridge_Drive"];
    B[59][89] = [21, "Theirs Monument", "The_Theirs_Monument"];

    // ------------------------------------------------
    // Wyke Hills
    // ------------------------------------------------
    B[50][90] = [24, "London Park", "London_Park"];
    B[51][90] = [28, "Barnete Row School", "Barnete_Row_School"];
    B[52][90] = [25, "Maney Lane Police Dept", "Maney_Lane_Police_Department"];
    B[53][90] = [30, "Burye Avenue", "Burye_Avenue"];
    B[54][90] = [21, "Gyles Monument", "The_Gyles_Monument"];
    B[55][90] = [30, "Attrill Lane", "Attrill_Lane"];
    B[56][90] = [30, "Rogers Road", "Rogers_Road"];
    B[57][90] = [18, "Durban Library", "Durban_Library"];
    B[58][90] = [30, "Whatmore Lane", "Whatmore_Lane"];
    B[59][90] = [5, "Parkinson Building", "The_Parkinson_Building"];
    B[50][91] = [21, "Blackburn Monument", "The_Blackburn_Monument"];
    B[51][91] = [2, "Trotman Arms", "The_Trotman_Arms"];
    B[52][91] = [10, "Widdows Cinema", "Widdows_Cinema"];
    B[53][91] = [3, "Ludlow Auto Repair", "Ludlow_Auto_Repair"];
    B[54][91] = [31, "Swale Towers", "Swale_Towers"];
    B[55][91] = [6, "Carpark", "Carpark_91%2C55"];
    B[56][91] = [30, "Fenwyk Avenue", "Fenwyk_Avenue"];
    B[57][91] = [9, "St Hilary's Church", "St._Hilary%27s_Church"];
    B[58][91] = [30, "Studham Row", "Studham_Row"];
    B[59][91] = [30, "Clear Drive", "Clear_Drive"];
    B[50][92] = [22, "Grose Museum", "The_Grose_Museum"];
    B[51][92] = [4, "Knollys Bank", "Knollys_Bank"];
    B[52][92] = [30, "Davis Way", "Davis_Way"];
    B[53][92] = [18, "Capleton Library", "Capleton_Library"];
    B[54][92] = [
      13,
      "Horsey Square Fire Station",
      "Horsey_Square_Fire_Station",
    ];
    B[55][92] = [30, "Neale Street", "Neale_Street"];
    B[56][92] = [32, "Warehouse", "Warehouse_92%2C56"];
    B[57][92] = [30, "Trechmann Boulevard", "Trechmann_Boulevard"];
    B[58][92] = [22, "Wimble Museum", "The_Wimble_Museum"];
    B[59][92] = [30, "Bidgood Square", "Bidgood_Square"];
    B[50][93] = [30, "Atway Lane", "Atway_Lane"];
    B[51][93] = [5, "Christensen Building", "The_Christensen_Building"];
    B[52][93] = [22, "Bowell Museum", "The_Bowell_Museum_%28Dentonside%29"];
    B[53][93] = [6, "Carpark", "Carpark_93%2C53"];
    B[54][93] = [30, "Rake Way", "Rake_Way"];
    B[55][93] = [3, "Edkins Auto Repair", "Edkins_Auto_Repair"];
    B[56][93] = [5, "Kingham Building", "The_Kingham_Building"];
    B[57][93] = [30, "Cowley Walk", "Cowley_Walk"];
    B[58][93] = [17, "Junkyard", "Junkyard_93%2C58"];
    B[59][93] = [30, "Gibbs Avenue", "Gibbs_Avenue"];
    B[50][94] = [16, "Reade Hotel", "The_Reade_Hotel"];
    B[51][94] = [24, "McKay Park", "McKay_Park"];
    B[52][94] = [17, "Junkyard", "Junkyard_94%2C52"];
    B[53][94] = [31, "Denner Towers", "Denner_Towers"];
    B[54][94] = [12, "Factory", "Factory_94%2C54"];
    B[55][94] = [10, "Moorse Cinema", "Moorse_Cinema"];
    B[56][94] = [30, "Toller Lane", "Toller_Lane_%28Dentonside%29"];
    B[57][94] = [5, "Baylis Building", "The_Baylis_Building"];
    B[58][94] = [2, "Rye Arms", "The_Rye_Arms"];
    B[59][94] = [30, "Capron Way", "Capron_Way"];
    B[50][95] = [5, "Hatchard Building", "The_Hatchard_Building"];
    B[51][95] = [21, "Payn Monument", "The_Payn_Monument"];
    B[52][95] = [33, "Wasteland", "Wasteland_95%2C52"];
    B[53][95] = [30, "Harman Square", "Harman_Square"];
    B[54][95] = [30, "Colquhoun Avenue", "Colquhoun_Avenue"];
    B[55][95] = [4, "Slack Bank", "Slack_Bank"];
    B[56][95] = [30, "Darnell Square", "Darnell_Square_%28Dentonside%29"];
    B[57][95] = [30, "Edmonds Boulevard", "Edmonds_Boulevard"];
    B[58][95] = [16, "Pape Motel", "The_Pape_Motel"];
    B[59][95] = [30, "Hood Walk", "Hood_Walk"];
    B[50][96] = [30, "Billing Way", "Billing_Way"];
    B[51][96] = [
      27,
      "Ashbee Boulevard Railway Station",
      "Ashbee_Boulevard_Railway_Station",
    ];
    B[52][96] = [10, "Lax Cinema", "Lax_Cinema"];
    B[53][96] = [24, "Kidner Park", "Kidner_Park"];
    B[54][96] = [30, "Spenser Road", "Spenser_Road"];
    B[55][96] = [3, "Elvins Auto Repair", "Elvins_Auto_Repair"];
    B[56][96] = [
      9,
      "St Irenaeus's Church",
      "St._Irenaeus%27s_Church_%28Dentonside%29",
    ];
    B[57][96] = [24, "Wingate Park", "Wingate_Park"];
    B[58][96] = [30, "Dorlan Drive", "Dorlan_Drive"];
    B[59][96] = [30, "Cowdry Walk", "Cowdry_Walk_%28Dentonside%29"];
    B[50][97] = [5, "Shoebrooks Building", "The_Shoebrooks_Building"];
    B[51][97] = [32, "Warehouse", "Warehouse_97%2C51"];
    B[52][97] = [30, "Shadwick Place", "Shadwick_Place"];
    B[53][97] = [18, "Hebditch Library", "Hebditch_Library"];
    B[54][97] = [
      15,
      "Simplicius General Hospital",
      "Simplicius_General_Hospital",
    ];
    B[55][97] = [21, "Sinnott Monument", "The_Sinnott_Monument"];
    B[56][97] = [21, "Barynes Monument", "The_Barynes_Monument"];
    B[57][97] = [8, "Cemetery", "Cemetery_97%2C57"];
    B[58][97] = [6, "Carpark", "Carpark_97%2C58"];
    B[59][97] = [30, "Uppill Place", "Uppill_Place"];
    B[50][98] = [
      25,
      "Winsley Avenue Police Dept",
      "Winsley_Avenue_Police_Department",
    ];
    B[51][98] = [
      27,
      "Mesney Drive Railway Station",
      "Mesney_Drive_Railway_Station_%28Dentonside%29",
    ];
    B[52][98] = [30, "Horler Crescent", "Horler_Crescent"];
    B[53][98] = [32, "Warehouse", "Warehouse_98%2C53"];
    B[54][98] = [22, "Hawtrey Museum", "The_Hawtrey_Museum_%28Dentonside%29"];
    B[55][98] = [30, "Deny Street", "Deny_Street"];
    B[56][98] = [30, "Martine Avenue", "Martine_Avenue"];
    B[57][98] = [5, "Bransom Building", "The_Bransom_Building"];
    B[58][98] = [31, "Burges Towers", "Burges_Towers"];
    B[59][98] = [28, "Bridgewater Square School", "Bridgewater_Square_School"];
    B[50][99] = [30, "Gwatkin Crescent", "Gwatkin_Crescent"];
    B[51][99] = [18, "Beckwith Library", "Beckwith_Library"];
    B[52][99] = [30, "Hollwey Place", "Hollwey_Place"];
    B[53][99] = [33, "Wasteland", "Wasteland_99%2C53"];
    B[54][99] = [30, "Rowbotham Walk", "Rowbotham_Walk"];
    B[55][99] = [5, "Silcock Building", "The_Silcock_Building"];
    B[56][99] = [5, "Alcock Building", "The_Alcock_Building"];
    B[57][99] = [26, "Tolman Power Station", "Tolman_Power_Station"];
    B[58][99] = [26, "Tolman Power Station", "Tolman_Power_Station"];
    B[59][99] = [2, "Colbourne Arms", "The_Colbourne_Arms"];

    // ------------------------------------------------
    // Chancelwood
    // ------------------------------------------------
    B[60][0] = [8, "Cemetery", "Cemetery_0%2C60"];
    B[61][0] = [30, "Fennell Plaza", "Fennell_Plaza"];
    B[62][0] = [30, "Vann Road", "Vann_Road_%28Crooketon%29"];
    B[63][0] = [17, "Junkyard", "Junkyard_0%2C63"];
    B[64][0] = [5, "Dewberry Building", "The_Dewberry_Building_0%2C64"];
    B[65][0] = [30, "Leggatt Grove", "Leggatt_Grove"];
    B[66][0] = [11, "Club Guyatt", "Club_Guyatt"];
    B[67][0] = [30, "Garton Row", "Garton_Row"];
    B[68][0] = [
      13,
      "Cherington Drive Fire Station",
      "Cherington_Drive_Fire_Station",
    ];
    B[69][0] = [5, "Pasker Building", "The_Pasker_Building"];
    B[60][1] = [21, "Hardin Monument", "The_Hardin_Monument"];
    B[61][1] = [30, "Souden Plaza", "Souden_Plaza"];
    B[62][1] = [33, "Wasteland", "Wasteland_1%2C62"];
    B[63][1] = [6, "Carpark", "Carpark_1%2C63"];
    B[64][1] = [2, "Wensleydale Arms", "The_Wensleydale_Arms"];
    B[65][1] = [28, "Crew Road School", "Crew_Road_School"];
    B[66][1] = [30, "Latcham Square", "Latcham_Square"];
    B[67][1] = [33, "Wasteland", "Wasteland_1%2C67"];
    B[68][1] = [30, "Oland Plaza", "Oland_Plaza"];
    B[69][1] = [30, "Pointing Road", "Pointing_Road"];
    B[60][2] = [30, "Blacktop Way", "Blacktop_Way"];
    B[61][2] = [5, "Dewberry Building", "The_Dewberry_Building_2%2C61"];
    B[62][2] = [12, "Factory", "Factory_2%2C62"];
    B[63][2] = [30, "Dymock Drive", "Dymock_Drive"];
    B[64][2] = [17, "Junkyard", "Junkyard_2%2C64"];
    B[65][2] = [24, "Hame Park", "Hame_Park"];
    B[66][2] = [30, "Moffat Square", "Moffat_Square"];
    B[67][2] = [30, "Derges Drive", "Derges_Drive"];
    B[68][2] = [5, "Woolaway Building", "The_Woolaway_Building"];
    B[69][2] = [10, "Moberly Cinema", "Moberly_Cinema"];
    B[60][3] = [21, "Gillham Monument", "The_Gillham_Monument"];
    B[61][3] = [22, "Lawler Museum", "The_Lawler_Museum"];
    B[62][3] = [30, "Tyler Boulevard", "Tyler_Boulevard"];
    B[63][3] = [30, "Squibbs Crescent", "Squibbs_Crescent"];
    B[64][3] = [15, "Antheros General Hospital", "Antheros_General_Hospital"];
    B[65][3] = [30, "Herick Crescent", "Herick_Crescent"];
    B[66][3] = [5, "Standen Building", "The_Standen_Building"];
    B[67][3] = [30, "Sinclair Walk", "Sinclair_Walk"];
    B[68][3] = [28, "Barker Boulevard School", "Barker_Boulevard_School"];
    B[69][3] = [28, "Willshere Row School", "Willshere_Row_School"];
    B[60][4] = [11, "Club Bolt", "Club_Bolt"];
    B[61][4] = [21, "Farley Monument", "The_Farley_Monument"];
    B[62][4] = [3, "Hayce Auto Repair", "Hayce_Auto_Repair_%28Crooketon%29"];
    B[63][4] = [30, "Devonish Avenue", "Devonish_Avenue"];
    B[64][4] = [5, "Theobald Building", "The_Theobald_Building"];
    B[65][4] = [30, "Eason Drive", "Eason_Drive"];
    B[66][4] = [21, "Ganden Monument", "The_Ganden_Monument"];
    B[67][4] = [30, "Osbert Street", "Osbert_Street_%28Crooketon%29"];
    B[68][4] = [5, "Whitbye Building", "The_Whitbye_Building"];
    B[69][4] = [17, "Junkyard", "Junkyard_4%2C69"];
    B[60][5] = [24, "Coffin Park", "Coffin_Park"];
    B[61][5] = [30, "Gorham Row", "Gorham_Row"];
    B[62][5] = [11, "Club Greswell", "Club_Greswell"];
    B[63][5] = [
      15,
      "Margaret General Hospital",
      "Margaret_General_Hospital_%28Crooketon%29",
    ];
    B[64][5] = [30, "Levy Drive", "Levy_Drive"];
    B[65][5] = [
      13,
      "Furneaux Square Fire Station",
      "Furneaux_Square_Fire_Station",
    ];
    B[66][5] = [5, "Antell Building", "The_Antell_Building"];
    B[67][5] = [28, "Stevenson Crescent School", "Stevenson_Crescent_School"];
    B[68][5] = [25, "Mores Lane Police Dept", "Mores_Lane_Police_Department"];
    B[69][5] = [32, "Warehouse", "Warehouse_5%2C69"];
    B[60][6] = [32, "Warehouse", "Warehouse_6%2C60"];
    B[61][6] = [30, "Foreman Drive", "Foreman_Drive"];
    B[62][6] = [30, "Bampfyld Drive", "Bampfyld_Drive"];
    B[63][6] = [
      27,
      "Mesney Drive Railway Station",
      "Mesney_Drive_Railway_Station_%28Crooketon%29",
    ];
    B[64][6] = [18, "Clement Library", "Clement_Library"];
    B[65][6] = [32, "Warehouse", "Warehouse_6%2C65"];
    B[66][6] = [3, "Kirby Auto Repair", "Kirby_Auto_Repair"];
    B[67][6] = [18, "Harmar Library", "Harmar_Library"];
    B[68][6] = [
      15,
      "Methodius General Hospital",
      "Methodius_General_Hospital_%28Crooketon%29",
    ];
    B[69][6] = [5, "Ketchell Building", "The_Ketchell_Building"];
    B[60][7] = [30, "Henning Alley", "Henning_Alley"];
    B[61][7] = [
      15,
      "St Matheos's Hospital",
      "St._Matheos%27s_Hospital_%28Crooketon%29",
    ];
    B[62][7] = [2, "Breeden Arms", "The_Breeden_Arms"];
    B[63][7] = [10, "Gwilliam Cinema", "Gwilliam_Cinema"];
    B[64][7] = [30, "Hewson Crescent", "Hewson_Crescent"];
    B[65][7] = [30, "Lutman Row", "Lutman_Row"];
    B[66][7] = [28, "Barnicott Walk School", "Barnicott_Walk_School"];
    B[67][7] = [30, "Jefferson Square", "Jefferson_Square"];
    B[68][7] = [5, "Bees Building", "The_Bees_Building"];
    B[69][7] = [4, "MacRae Bank", "MacRae_Bank"];
    B[60][8] = [30, "Mountstevens Boulevard", "Mountstevens_Boulevard"];
    B[61][8] = [
      27,
      "Wakeham Street Railway Station",
      "Wakeham_Street_Railway_Station",
    ];
    B[62][8] = [30, "Youl Drive", "Youl_Drive"];
    B[63][8] = [32, "Warehouse", "Warehouse_8%2C63"];
    B[64][8] = [30, "Herman Square", "Herman_Square"];
    B[65][8] = [30, "Caselley Road", "Caselley_Road"];
    B[66][8] = [30, "Crabbe Street", "Crabbe_Street"];
    B[67][8] = [30, "Atthill Lane", "Atthill_Lane"];
    B[68][8] = [
      9,
      "St Dorotheus's Church",
      "St._Dorotheus%27s_Church_%28Crooketon%29",
    ];
    B[69][8] = [17, "Junkyard", "Junkyard_8%2C69"];
    B[60][9] = [21, "Woolf Monument", "The_Woolf_Monument"];
    B[61][9] = [33, "Wasteland", "Wasteland_9%2C61"];
    B[62][9] = [22, "Shenton Museum", "The_Shenton_Museum"];
    B[63][9] = [30, "MacDonald Square", "MacDonald_Square"];
    B[64][9] = [30, "Deacon Drive", "Deacon_Drive"];
    B[65][9] = [24, "MacRae Park", "MacRae_Park"];
    B[66][9] = [3, "Surmon Auto Repair", "Surmon_Auto_Repair"];
    B[67][9] = [5, "Eelms Building", "The_Eelms_Building"];
    B[68][9] = [12, "Factory", "Factory_9%2C68"];
    B[69][9] = [
      27,
      "Penning Way Railway Station",
      "Penning_Way_Railway_Station",
    ];

    // ------------------------------------------------
    // Raines Hills
    // ------------------------------------------------
    B[60][10] = [32, "Warehouse", "Warehouse_10%2C60"];
    B[61][10] = [30, "Westcott Avenue", "Westcott_Avenue"];
    B[62][10] = [
      25,
      "Ashenden Way Police Dept",
      "Ashenden_Way_Police_Department",
    ];
    B[63][10] = [15, "St Andrew's Hospital", "St._Andrew%27s_Hospital"];
    B[64][10] = [30, "Classey Drive", "Classey_Drive"];
    B[65][10] = [5, "Pullman Building", "The_Pullman_Building"];
    B[66][10] = [16, "Ripley Motel", "The_Ripley_Motel"];
    B[67][10] = [22, "Edgecombe Museum", "The_Edgecombe_Museum"];
    B[68][10] = [24, "Sambone Park", "Sambone_Park"];
    B[69][10] = [3, "Hagger Auto Repair", "Hagger_Auto_Repair"];
    B[60][11] = [
      27,
      "Dye Boulevard Railway Station",
      "Dye_Boulevard_Railway_Station",
    ];
    B[61][11] = [30, "Aylmer Row", "Aylmer_Row"];
    B[62][11] = [30, "Sheridan Street", "Sheridan_Street"];
    B[63][11] = [
      15,
      "Sixtus General Hospital",
      "Sixtus_General_Hospital_%28Mornington%29",
    ];
    B[64][11] = [
      27,
      "Hope Crescent Railway Station",
      "Hope_Crescent_Railway_Station",
    ];
    B[65][11] = [18, "Pincher Library", "Pincher_Library"];
    B[66][11] = [5, "Question Building", "The_Question_Building"];
    B[67][11] = [30, "Edson Alley", "Edson_Alley"];
    B[68][11] = [33, "Wasteland", "Wasteland_11%2C68"];
    B[69][11] = [27, "Buck Road Railway Station", "Buck_Road_Railway_Station"];
    B[60][12] = [5, "Davies Building", "The_Davies_Building"];
    B[61][12] = [4, "Cooksley Bank", "Cooksley_Bank"];
    B[62][12] = [2, "Plummer Arms", "The_Plummer_Arms"];
    B[63][12] = [30, "Linttell Plaza", "Linttell_Plaza"];
    B[64][12] = [30, "Hardstaff Way", "Hardstaff_Way"];
    B[65][12] = [32, "Warehouse", "Warehouse_12%2C65"];
    B[66][12] = [24, "Nancolas Park", "Nancolas_Park"];
    B[67][12] = [24, "Bolson Park", "Bolson_Park"];
    B[68][12] = [15, "St Innocent's Hospital", "St._Innocent%27s_Hospital"];
    B[69][12] = [
      25,
      "Merewether Road Police Dept",
      "Merewether_Road_Police_Department",
    ];
    B[60][13] = [6, "Carpark", "Carpark_13%2C60"];
    B[61][13] = [
      27,
      "Coleridge Crescent Railway Station",
      "Coleridge_Crescent_Railway_Station",
    ];
    B[62][13] = [30, "Rourke Grove", "Rourke_Grove"];
    B[63][13] = [17, "Junkyard", "Junkyard_13%2C63"];
    B[64][13] = [10, "Priscott Cinema", "Priscott_Cinema"];
    B[65][13] = [32, "Warehouse", "Warehouse_13%2C65"];
    B[66][13] = [6, "Carpark", "Carpark_13%2C66"];
    B[67][13] = [30, "Prangnell Plaza", "Prangnell_Plaza"];
    B[68][13] = [3, "Sedgbeer Auto Repair", "Sedgbeer_Auto_Repair"];
    B[69][13] = [30, "Riglar Road", "Riglar_Road"];
    B[60][14] = [30, "Pain Way", "Pain_Way"];
    B[61][14] = [33, "Wasteland", "Wasteland_14%2C61"];
    B[62][14] = [6, "Carpark", "Carpark_14%2C62"];
    B[63][14] = [30, "Hudleston Walk", "Hudleston_Walk"];
    B[64][14] = [15, "St Basil's Hospital", "St._Basil%27s_Hospital"];
    B[65][14] = [6, "Carpark", "Carpark_14%2C65"];
    B[66][14] = [3, "Mainstone Auto Repair", "Mainstone_Auto_Repair"];
    B[67][14] = [30, "Riches Boulevard", "Riches_Boulevard"];
    B[68][14] = [4, "Bently Bank", "Bently_Bank"];
    B[69][14] = [30, "Glister Crescent", "Glister_Crescent"];
    B[60][15] = [30, "Stokes Boulevard", "Stokes_Boulevard"];
    B[61][15] = [30, "Grandier Place", "Grandier_Place"];
    B[62][15] = [10, "Megamax Cinema", "Megamax_Cinema"];
    B[63][15] = [31, "Millington Towers", "Millington_Towers"];
    B[64][15] = [3, "Bulford Auto Repair", "Bulford_Auto_Repair"];
    B[65][15] = [3, "Rodman Auto Repair", "Rodman_Auto_Repair"];
    B[66][15] = [6, "Carpark", "Carpark_15%2C66"];
    B[67][15] = [30, "Lowther Square", "Lowther_Square"];
    B[68][15] = [33, "Wasteland", "Wasteland_15%2C68"];
    B[69][15] = [30, "Becket Lane", "Becket_Lane"];
    B[60][16] = [30, "England Grove", "England_Grove"];
    B[61][16] = [13, "Chidley Row Fire Station", "Chidley_Row_Fire_Station"];
    B[62][16] = [30, "Maunder Walk", "Maunder_Walk"];
    B[63][16] = [
      27,
      "Feltham Place Railway Station",
      "Feltham_Place_Railway_Station",
    ];
    B[64][16] = [2, "Noakes Arms", "The_Noakes_Arms"];
    B[65][16] = [4, "Pring Bank", "Pring_Bank"];
    B[66][16] = [
      9,
      "St Osyth's Church",
      "St._Osyth%27s_Church_%28Mornington%29",
    ];
    B[67][16] = [4, "Leay Bank", "Leay_Bank"];
    B[68][16] = [5, "Delamont Building", "The_Delamont_Building"];
    B[69][16] = [33, "Wasteland", "Wasteland_16%2C69"];
    B[60][17] = [12, "Factory", "Factory_17%2C60"];
    B[61][17] = [22, "Woodyatt Museum", "The_Woodyatt_Museum"];
    B[62][17] = [30, "Craig Drive", "Craig_Drive"];
    B[63][17] = [28, "Luff Way School", "Luff_Way_School"];
    B[64][17] = [5, "Curme Building", "The_Curme_Building_%28Mornington%29"];
    B[65][17] = [
      9,
      "St Tsarevna's Church",
      "St._Tsarevna%27s_Church_%28Mornington%29",
    ];
    B[66][17] = [32, "Warehouse", "Warehouse_17%2C66"];
    B[67][17] = [8, "Cemetery", "Cemetery_17%2C67"];
    B[68][17] = [30, "Jearum Road", "Jearum_Road"];
    B[69][17] = [22, "Olding Museum", "The_Olding_Museum"];
    B[60][18] = [17, "Junkyard", "Junkyard_18%2C60"];
    B[61][18] = [30, "Howord Way", "Howord_Way_%28Mornington%29"];
    B[62][18] = [30, "Farrand Plaza", "Farrand_Plaza"];
    B[63][18] = [
      27,
      "Toley Grove Railway Station",
      "Toley_Grove_Railway_Station",
    ];
    B[64][18] = [28, "Pyle Crescent School", "Pyle_Crescent_School"];
    B[65][18] = [30, "Gilpin Plaza", "Gilpin_Plaza"];
    B[66][18] = [30, "Cupper Walk", "Cupper_Walk"];
    B[67][18] = [11, "Club Perrot", "Club_Perrot"];
    B[68][18] = [5, "Catcott Building", "The_Catcott_Building"];
    B[69][18] = [24, "Maher Park", "Maher_Park"];
    B[60][19] = [30, "Spiers Boulevard", "Spiers_Boulevard"];
    B[61][19] = [30, "Leat Street", "Leat_Street"];
    B[62][19] = [4, "Philips Bank", "Philips_Bank"];
    B[63][19] = [32, "Warehouse", "Warehouse_19%2C63"];
    B[64][19] = [24, "Graver Park", "Graver_Park"];
    B[65][19] = [5, "Perratt Building", "The_Perratt_Building"];
    B[66][19] = [30, "Tanner Crescent", "Tanner_Crescent"];
    B[67][19] = [16, "Shepard Hotel", "The_Shepard_Hotel"];
    B[68][19] = [4, "Turland Bank", "Turland_Bank"];
    B[69][19] = [33, "Wasteland", "Wasteland_19%2C69"];

    // ------------------------------------------------
    // Huntley Heights
    // ------------------------------------------------
    B[60][20] = [30, "Hoy Square", "Hoy_Square"];
    B[61][20] = [28, "Brittan Row School", "Brittan_Row_School"];
    B[62][20] = [24, "Bromwich Park", "Bromwich_Park"];
    B[63][20] = [30, "Leonard Street", "Leonard_Street_%28North_Blythville%29"];
    B[64][20] = [17, "Junkyard", "Junkyard_20%2C64"];
    B[65][20] = [
      15,
      "Neot General Hospital",
      "Neot_General_Hospital_%28North_Blythville%29",
    ];
    B[66][20] = [28, "Horner Avenue School", "Horner_Avenue_School"];
    B[67][20] = [3, "Chubb Auto Repair", "Chubb_Auto_Repair"];
    B[68][20] = [30, "Harold Crescent", "Harold_Crescent"];
    B[69][20] = [30, "Wigglesworth Boulevard", "Wigglesworth_Boulevard"];
    B[60][21] = [18, "Worthington Library", "Worthington_Library"];
    B[61][21] = [30, "Somerfield Drive", "Somerfield_Drive"];
    B[62][21] = [16, "Boddy Motel", "The_Boddy_Motel"];
    B[63][21] = [3, "Bently Auto Repair", "Bently_Auto_Repair"];
    B[64][21] = [30, "Hannam Crescent", "Hannam_Crescent"];
    B[65][21] = [2, "Saul Arms", "The_Saul_Arms"];
    B[66][21] = [6, "Carpark", "Carpark_21%2C66"];
    B[67][21] = [
      3,
      "Hayce Auto Repair",
      "Hayce_Auto_Repair_%28North_Blythville%29",
    ];
    B[68][21] = [30, "Chorley Way", "Chorley_Way"];
    B[69][21] = [15, "St Bruno's Hospital", "St._Bruno%27s_Hospital"];
    B[60][22] = [5, "Gaze Building", "The_Gaze_Building"];
    B[61][22] = [25, "Judge Road Police Dept", "Judge_Road_Police_Department"];
    B[62][22] = [33, "Wasteland", "Wasteland_22%2C62"];
    B[63][22] = [5, "Fear Building", "The_Fear_Building"];
    B[64][22] = [30, "Male Boulevard", "Male_Boulevard"];
    B[65][22] = [21, "Neary Monument", "The_Neary_Monument"];
    B[66][22] = [30, "Matraves Alley", "Matraves_Alley"];
    B[67][22] = [2, "Anglin Arms", "The_Anglin_Arms"];
    B[68][22] = [2, "Way Arms", "The_Way_Arms"];
    B[69][22] = [11, "Club Wricht", "Club_Wricht"];
    B[60][23] = [30, "Nicks Square", "Nicks_Square"];
    B[61][23] = [33, "Wasteland", "Wasteland_23%2C61"];
    B[62][23] = [11, "Club Burney", "Club_Burney"];
    B[63][23] = [5, "Ogborn Building", "The_Ogborn_Building"];
    B[64][23] = [31, "Gatford Towers", "Gatford_Towers"];
    B[65][23] = [
      27,
      "Corbin Alley Railway Station",
      "Corbin_Alley_Railway_Station",
    ];
    B[66][23] = [3, "Krinks Auto Repair", "Krinks_Auto_Repair"];
    B[67][23] = [30, "Smythies Walk", "Smythies_Walk"];
    B[68][23] = [30, "Kennard Drive", "Kennard_Drive"];
    B[69][23] = [15, "St Joseph's Hospital", "St._Joseph%27s_Hospital"];
    B[60][24] = [21, "Kiddell Monument", "The_Kiddell_Monument"];
    B[61][24] = [5, "Bewley Building", "The_Bewley_Building"];
    B[62][24] = [30, "Letham Avenue", "Letham_Avenue"];
    B[63][24] = [16, "Pilgrim Hotel", "The_Pilgrim_Hotel"];
    B[64][24] = [
      15,
      "Julie General Hospital",
      "Julie_General_Hospital_%28North_Blythville%29",
    ];
    B[65][24] = [
      23,
      "Hebditch Building",
      "The_Hebditch_Building_%28North_Blythville%29",
    ];
    B[66][24] = [16, "Snelgrove Motel", "The_Snelgrove_Motel"];
    B[67][24] = [17, "Junkyard", "Junkyard_24%2C67"];
    B[68][24] = [5, "Rugg Building", "The_Rugg_Building"];
    B[69][24] = [22, "Lovel Museum", "The_Lovel_Museum"];
    B[60][25] = [12, "Factory", "Factory_25%2C60"];
    B[61][25] = [30, "Masey Drive", "Masey_Drive_%28North_Blythville%29"];
    B[62][25] = [5, "Backer Building", "The_Backer_Building"];
    B[63][25] = [32, "Warehouse", "Warehouse_25%2C63"];
    B[64][25] = [6, "Carpark", "Carpark_25%2C64"];
    B[65][25] = [12, "Factory", "Factory_25%2C65"];
    B[66][25] = [30, "Shallet Crescent", "Shallet_Crescent"];
    B[67][25] = [6, "Carpark", "Carpark_25%2C67"];
    B[68][25] = [16, "Mardon Hotel", "The_Mardon_Hotel"];
    B[69][25] = [28, "Whyt Plaza School", "Whyt_Plaza_School"];
    B[60][26] = [4, "Bugby Bank", "Bugby_Bank"];
    B[61][26] = [10, "Puckard Cinema", "Puckard_Cinema"];
    B[62][26] = [28, "Pullin Avenue School", "Pullin_Avenue_School"];
    B[63][26] = [
      5,
      "Travers Building",
      "The_Travers_Building_%28North_Blythville%29",
    ];
    B[64][26] = [
      25,
      "Dear Street Police Dept",
      "Dear_Street_Police_Department",
    ];
    B[65][26] = [24, "Empson Park", "Empson_Park"];
    B[66][26] = [32, "Warehouse", "Warehouse_26%2C66"];
    B[67][26] = [30, "Horditch Road", "Horditch_Road"];
    B[68][26] = [31, "Rollason Towers", "Rollason_Towers"];
    B[69][26] = [17, "Junkyard", "Junkyard_26%2C69"];
    B[60][27] = [16, "Kelland Motel", "The_Kelland_Motel"];
    B[61][27] = [5, "Boulting Building", "The_Boulting_Building"];
    B[62][27] = [
      9,
      "St Barnabas's Church",
      "St._Barnabas%27s_Church_%28North_Blythville%29",
    ];
    B[63][27] = [8, "Cemetery", "Cemetery_27%2C63"];
    B[64][27] = [30, "Seage Boulevard", "Seage_Boulevard"];
    B[65][27] = [6, "Carpark", "Carpark_27%2C65"];
    B[66][27] = [10, "Knowles Cinema", "Knowles_Cinema"];
    B[67][27] = [6, "Carpark", "Carpark_27%2C67"];
    B[68][27] = [30, "Coghlan Avenue", "Coghlan_Avenue"];
    B[69][27] = [30, "Mor Street", "Mor_Street"];
    B[60][28] = [13, "Langman Lane Fire Station", "Langman_Lane_Fire_Station"];
    B[61][28] = [33, "Wasteland", "Wasteland_28%2C61"];
    B[62][28] = [
      25,
      "Herbert Road Police Dept",
      "Herbert_Road_Police_Department",
    ];
    B[63][28] = [30, "Bullimore Road", "Bullimore_Road"];
    B[64][28] = [28, "Dawbin Lane School", "Dawbin_Lane_School"];
    B[65][28] = [28, "Shipp Way School", "Shipp_Way_School"];
    B[66][28] = [18, "Blesley Library", "Blesley_Library"];
    B[67][28] = [6, "Carpark", "Carpark_28%2C67"];
    B[68][28] = [24, "Donagan Park", "Donagan_Park"];
    B[69][28] = [22, "Claxton Museum", "The_Claxton_Museum"];
    B[60][29] = [
      27,
      "Gilling Road Railway Station",
      "Gilling_Road_Railway_Station",
    ];
    B[61][29] = [30, "Luttrell Plaza", "Luttrell_Plaza"];
    B[62][29] = [30, "Checketts Walk", "Checketts_Walk"];
    B[63][29] = [16, "Patterson Hotel", "The_Patterson_Hotel"];
    B[64][29] = [30, "Kennington Crescent", "Kennington_Crescent"];
    B[65][29] = [5, "Geldeard Building", "The_Geldeard_Building"];
    B[66][29] = [5, "Dooley Building", "The_Dooley_Building"];
    B[67][29] = [2, "Butson Arms", "The_Butson_Arms"];
    B[68][29] = [
      30,
      "Woodroffe Crescent",
      "Woodroffe_Crescent_%28North_Blythville%29",
    ];
    B[69][29] = [30, "Glass Avenue", "Glass_Avenue"];

    // ------------------------------------------------
    // Randallbank
    // ------------------------------------------------
    B[60][30] = [24, "Bragg Park", "Bragg_Park"];
    B[61][30] = [30, "Montague Alley", "Montague_Alley"];
    B[62][30] = [30, "Heal Walk", "Heal_Walk"];
    B[63][30] = [22, "Hewlet Museum", "The_Hewlet_Museum"];
    B[64][30] = [30, "Tickle Row", "Tickle_Row"];
    B[65][30] = [30, "Ludlow Avenue", "Ludlow_Avenue"];
    B[66][30] = [28, "Rowles Way School", "Rowles_Way_School"];
    B[67][30] = [
      13,
      "Holdsworth Row Fire Station",
      "Holdsworth_Row_Fire_Station",
    ];
    B[68][30] = [5, "Plucknett Building", "The_Plucknett_Building"];
    B[69][30] = [32, "Warehouse", "Warehouse_30%2C69"];
    B[60][31] = [3, "Naisbitt Auto Repair", "Naisbitt_Auto_Repair"];
    B[61][31] = [30, "Spurling Street", "Spurling_Street"];
    B[62][31] = [30, "Wester Boulevard", "Wester_Boulevard"];
    B[63][31] = [
      25,
      "Bidgood Way Police Dept",
      "Bidgood_Way_Police_Department",
    ];
    B[64][31] = [23, "Flooks Building", "The_Flooks_Building"];
    B[65][31] = [12, "Factory", "Factory_31%2C65"];
    B[66][31] = [
      25,
      "Dore Street Police Dept",
      "Dore_Street_Police_Department",
    ];
    B[67][31] = [
      9,
      "St Anastasius's Church",
      "St._Anastasius%27s_Church_%28Brooksville%29",
    ];
    B[68][31] = [10, "Ellison Cinema", "Ellison_Cinema"];
    B[69][31] = [30, "Lambley Square", "Lambley_Square"];
    B[60][32] = [13, "Kippins Row Fire Station", "Kippins_Row_Fire_Station"];
    B[61][32] = [30, "Hellear Alley", "Hellear_Alley_%28Brooksville%29"];
    B[62][32] = [17, "Junkyard", "Junkyard_32%2C62"];
    B[63][32] = [15, "Matthias General Hospital", "Matthias_General_Hospital"];
    B[64][32] = [30, "Nottidge Way", "Nottidge_Way"];
    B[65][32] = [32, "Warehouse", "Warehouse_32%2C65"];
    B[66][32] = [17, "Junkyard", "Junkyard_32%2C66"];
    B[67][32] = [10, "Vaugham Cinema", "Vaugham_Cinema"];
    B[68][32] = [30, "Loweth Avenue", "Loweth_Avenue"];
    B[69][32] = [30, "Gawler Row", "Gawler_Row"];
    B[60][33] = [4, "Dodimead Bank", "Dodimead_Bank"];
    B[61][33] = [31, "Mattick Towers", "Mattick_Towers"];
    B[62][33] = [24, "Hewlet Park", "Hewlet_Park"];
    B[63][33] = [30, "Waggott Grove", "Waggott_Grove"];
    B[64][33] = [32, "Warehouse", "Warehouse_33%2C64"];
    B[65][33] = [30, "Chidzey Way", "Chidzey_Way"];
    B[66][33] = [21, "Tassell Monument", "The_Tassell_Monument"];
    B[67][33] = [30, "Palterman Boulevard", "Palterman_Boulevard"];
    B[68][33] = [18, "Cogle Library", "Cogle_Library"];
    B[69][33] = [30, "Trew Boulevard", "Trew_Boulevard"];
    B[60][34] = [
      15,
      "St John's Hospital",
      "St._John%27s_Hospital_%28Brooksville%29",
    ];
    B[61][34] = [
      25,
      "Robertson Walk Police Dept",
      "Robertson_Walk_Police_Department",
    ];
    B[62][34] = [
      27,
      "Turner Walk Railway Station",
      "Turner_Walk_Railway_Station",
    ];
    B[63][34] = [30, "Aldworth Walk", "Aldworth_Walk"];
    B[64][34] = [
      9,
      "St Callistus's Church",
      "St._Callistus%27s_Church_%28Brooksville%29",
    ];
    B[65][34] = [8, "Cemetery", "Cemetery_34%2C65"];
    B[66][34] = [
      27,
      "Locket Walk Railway Station",
      "Locket_Walk_Railway_Station",
    ];
    B[67][34] = [30, "Strafford Road", "Strafford_Road"];
    B[68][34] = [5, "Piele Building", "The_Piele_Building"];
    B[69][34] = [28, "McCreadie Avenue School", "McCreadie_Avenue_School"];
    B[60][35] = [30, "Langbrick Street", "Langbrick_Street_%28Brooksville%29"];
    B[61][35] = [30, "Gristwood Lane", "Gristwood_Lane"];
    B[62][35] = [24, "Lowndes Park", "Lowndes_Park"];
    B[63][35] = [30, "Langbrick Street", "Langbrick_Street_%28Brooksville%29"];
    B[64][35] = [10, "McNally Cinema", "McNally_Cinema"];
    B[65][35] = [
      27,
      "Piegsa Street Railway Station",
      "Piegsa_Street_Railway_Station",
    ];
    B[66][35] = [30, "Eglen Drive", "Eglen_Drive"];
    B[67][35] = [31, "Horton Towers", "Horton_Towers"];
    B[68][35] = [22, "Burrows Museum", "The_Burrows_Museum"];
    B[69][35] = [4, "Gummer Bank", "Gummer_Bank_%28Brooksville%29"];
    B[60][36] = [30, "Guyatt Plaza", "Guyatt_Plaza"];
    B[61][36] = [2, "Brookman Arms", "The_Brookman_Arms"];
    B[62][36] = [10, "Grills Cinema", "Grills_Cinema"];
    B[63][36] = [5, "Estlin Building", "The_Estlin_Building"];
    B[64][36] = [12, "Factory", "Factory_36%2C64"];
    B[65][36] = [30, "Ludlow Alley", "Ludlow_Alley"];
    B[66][36] = [30, "Hembury Avenue", "Hembury_Avenue"];
    B[67][36] = [33, "Wasteland", "Wasteland_36%2C67"];
    B[68][36] = [13, "Healy Drive Fire Station", "Healy_Drive_Fire_Station"];
    B[69][36] = [
      27,
      "Crespin Grove Railway Station",
      "Crespin_Grove_Railway_Station",
    ];
    B[60][37] = [2, "Revell Arms", "The_Revell_Arms"];
    B[61][37] = [22, "Bridge Museum", "The_Bridge_Museum"];
    B[62][37] = [30, "Rolls Road", "Rolls_Road"];
    B[63][37] = [30, "Beavis Drive", "Beavis_Drive"];
    B[64][37] = [23, "Culling Building", "The_Culling_Building"];
    B[65][37] = [
      13,
      "Mays Boulevard Fire Station",
      "Mays_Boulevard_Fire_Station",
    ];
    B[66][37] = [
      5,
      "Prangnell Building",
      "The_Prangnell_Building_%28Brooksville%29",
    ];
    B[67][37] = [3, "Gamis Auto Repair", "Gamis_Auto_Repair"];
    B[68][37] = [24, "Rhoden Park", "Rhoden_Park"];
    B[69][37] = [16, "Beckley Hotel", "The_Beckley_Hotel"];
    B[60][38] = [11, "Club Spordel", "Club_Spordel"];
    B[61][38] = [30, "Mawdley Avenue", "Mawdley_Avenue"];
    B[62][38] = [22, "Uzzell Museum", "The_Uzzell_Museum"];
    B[63][38] = [12, "Factory", "Factory_38%2C63"];
    B[64][38] = [12, "Factory", "Factory_38%2C64"];
    B[65][38] = [33, "Wasteland", "Wasteland_38%2C65"];
    B[66][38] = [
      9,
      "St Sixtus's Church",
      "St._Sixtus%27s_Church_%28Brooksville%29",
    ];
    B[67][38] = [8, "Cemetery", "Cemetery_38%2C67"];
    B[68][38] = [5, "Charbonnier Building", "The_Charbonnier_Building"];
    B[69][38] = [30, "Thicke Crescent", "Thicke_Crescent"];
    B[60][39] = [16, "Turpin Hotel", "The_Turpin_Hotel"];
    B[61][39] = [6, "Carpark", "Carpark_39%2C61"];
    B[62][39] = [6, "Carpark", "Carpark_39%2C62"];
    B[63][39] = [30, "Banjafield Grove", "Banjafield_Grove"];
    B[64][39] = [22, "Harrold Museum", "The_Harrold_Museum"];
    B[65][39] = [
      28,
      "Chamberlaine Street School",
      "Chamberlaine_Street_School",
    ];
    B[66][39] = [30, "Greig Walk", "Greig_Walk"];
    B[67][39] = [5, "Edmond Building", "The_Edmond_Building"];
    B[68][39] = [31, "Banting Towers", "Banting_Towers"];
    B[69][39] = [23, "Foreman Building", "The_Foreman_Building"];

    // ------------------------------------------------
    // Pimbank
    // ------------------------------------------------
    B[60][40] = [30, "Mapletoft Way", "Mapletoft_Way"];
    B[61][40] = [11, "Club Androwes", "Club_Androwes"];
    B[62][40] = [5, "Saturley Building", "The_Saturley_Building"];
    B[63][40] = [16, "Tulk Motel", "The_Tulk_Motel"];
    B[64][40] = [6, "Carpark", "Carpark_40%2C64"];
    B[65][40] = [30, "Goodson Crescent", "Goodson_Crescent"];
    B[66][40] = [30, "Cane Row", "Cane_Row"];
    B[67][40] = [5, "Bentley Building", "The_Bentley_Building"];
    B[68][40] = [16, "Kening Motel", "The_Kening_Motel"];
    B[69][40] = [30, "Gatley Row", "Gatley_Row"];
    B[60][41] = [5, "Mycock Building", "The_Mycock_Building"];
    B[61][41] = [30, "Eustace Avenue", "Eustace_Avenue"];
    B[62][41] = [30, "Dollen Alley", "Dollen_Alley"];
    B[63][41] = [
      15,
      "Alphege General Hospital",
      "Alphege_General_Hospital_%28Mockridge_Heights%29",
    ];
    B[64][41] = [30, "Daubeney Avenue", "Daubeney_Avenue"];
    B[65][41] = [17, "Junkyard", "Junkyard_41%2C65"];
    B[66][41] = [30, "Braham Lane", "Braham_Lane"];
    B[67][41] = [18, "Howarth Library", "Howarth_Library"];
    B[68][41] = [30, "Mechel Street", "Mechel_Street"];
    B[69][41] = [15, "St Perpetua's Hospital", "St._Perpetua%27s_Hospital"];
    B[60][42] = [22, "Perriott Museum", "The_Perriott_Museum"];
    B[61][42] = [30, "Anstice Avenue", "Anstice_Avenue"];
    B[62][42] = [30, "Yendole Grove", "Yendole_Grove"];
    B[63][42] = [2, "Bratt Arms", "The_Bratt_Arms"];
    B[64][42] = [18, "Cullen Library", "Cullen_Library"];
    B[65][42] = [24, "Tancock Park", "Tancock_Park"];
    B[66][42] = [30, "Gillings Walk", "Gillings_Walk"];
    B[67][42] = [
      25,
      "Grandfield Row Police Dept",
      "Grandfield_Row_Police_Department",
    ];
    B[68][42] = [6, "Carpark", "Carpark_42%2C68"];
    B[69][42] = [21, "Sillence Monument", "The_Sillence_Monument"];
    B[60][43] = [
      15,
      "Anne General Hospital",
      "Anne_General_Hospital_%28Mockridge_Heights%29",
    ];
    B[61][43] = [30, "Stewart Crescent", "Stewart_Crescent"];
    B[62][43] = [33, "Wasteland", "Wasteland_43%2C62"];
    B[63][43] = [18, "Purlewent Library", "Purlewent_Library"];
    B[64][43] = [33, "Wasteland", "Wasteland_43%2C64"];
    B[65][43] = [31, "Strutt Towers", "Strutt_Towers"];
    B[66][43] = [33, "Wasteland", "Wasteland_43%2C66"];
    B[67][43] = [33, "Wasteland", "Wasteland_43%2C67"];
    B[68][43] = [22, "Blabey Museum", "The_Blabey_Museum"];
    B[69][43] = [12, "Factory", "Factory_43%2C69"];
    B[60][44] = [22, "Abraham Museum", "The_Abraham_Museum"];
    B[61][44] = [
      9,
      "St Piran's Church",
      "St._Piran%27s_Church_%28Mockridge_Heights%29",
    ];
    B[62][44] = [21, "Silvester Monument", "The_Silvester_Monument"];
    B[63][44] = [5, "Shuttle Building", "The_Shuttle_Building"];
    B[64][44] = [3, "Ewer Auto Repair", "Ewer_Auto_Repair"];
    B[65][44] = [30, "Haskins Alley", "Haskins_Alley"];
    B[66][44] = [4, "Moxham Bank", "Moxham_Bank"];
    B[67][44] = [3, "Ashley Auto Repair", "Ashley_Auto_Repair"];
    B[68][44] = [24, "Cole Park", "Cole_Park"];
    B[69][44] = [22, "Osment Museum", "The_Osment_Museum"];
    B[60][45] = [
      25,
      "Wheaton Avenue Police Dept",
      "Wheaton_Avenue_Police_Department",
    ];
    B[61][45] = [
      9,
      "St Lucius's Church",
      "St._Lucius%27s_Church_%28Mockridge_Heights%29",
    ];
    B[62][45] = [30, "Rayfield Crescent", "Rayfield_Crescent"];
    B[63][45] = [
      9,
      "St Gall's Church",
      "St._Gall%27s_Church_%28Mockridge_Heights%29",
    ];
    B[64][45] = [18, "Venner Library", "Venner_Library"];
    B[65][45] = [30, "Pantling Crescent", "Pantling_Crescent"];
    B[66][45] = [30, "Cullingford Square", "Cullingford_Square"];
    B[67][45] = [24, "Hendrich Park", "Hendrich_Park"];
    B[68][45] = [
      9,
      "St Ninian's Church",
      "St._Ninian%27s_Church_%28Mockridge_Heights%29",
    ];
    B[69][45] = [8, "Cemetery", "Cemetery_45%2C69"];
    B[60][46] = [30, "Tuckey Crescent", "Tuckey_Crescent"];
    B[61][46] = [2, "Hall Arms", "The_Hall_Arms"];
    B[62][46] = [18, "Chaffie Library", "Chaffie_Library"];
    B[63][46] = [8, "Cemetery", "Cemetery_46%2C63"];
    B[64][46] = [33, "Wasteland", "Wasteland_46%2C64"];
    B[65][46] = [30, "Semple Place", "Semple_Place"];
    B[66][46] = [30, "Luckcraft Drive", "Luckcraft_Drive"];
    B[67][46] = [6, "Carpark", "Carpark_46%2C67"];
    B[68][46] = [30, "Harrington Avenue", "Harrington_Avenue"];
    B[69][46] = [30, "Summers Lane", "Summers_Lane"];
    B[60][47] = [16, "Hort Hotel", "The_Hort_Hotel"];
    B[61][47] = [30, "Harenc Lane", "Harenc_Lane"];
    B[62][47] = [30, "Luckwell Plaza", "Luckwell_Plaza"];
    B[63][47] = [21, "Beable Monument", "The_Beable_Monument"];
    B[64][47] = [33, "Wasteland", "Wasteland_47%2C64"];
    B[65][47] = [30, "Pavey Street", "Pavey_Street_%28Mockridge_Heights%29"];
    B[66][47] = [30, "Whitehart Crescent", "Whitehart_Crescent"];
    B[67][47] = [4, "Boyland Bank", "Boyland_Bank"];
    B[68][47] = [16, "Frognal Motel", "The_Frognal_Motel"];
    B[69][47] = [5, "Bowdich Building", "The_Bowdich_Building"];
    B[60][48] = [25, "Lay Road Police Dept", "Lay_Road_Police_Department"];
    B[61][48] = [5, "Willcocks Building", "The_Willcocks_Building"];
    B[62][48] = [30, "Pickering Boulevard", "Pickering_Boulevard"];
    B[63][48] = [5, "Naper Building", "The_Naper_Building"];
    B[64][48] = [27, "Candy Row Railway Station", "Candy_Row_Railway_Station"];
    B[65][48] = [24, "Hook Park", "Hook_Park"];
    B[66][48] = [
      27,
      "Prentice Alley Railway Station",
      "Prentice_Alley_Railway_Station",
    ];
    B[67][48] = [30, "Hucker Lane", "Hucker_Lane"];
    B[68][48] = [5, "Parker Building", "The_Parker_Building"];
    B[69][48] = [30, "Augarde Lane", "Augarde_Lane_%28Mockridge_Heights%29"];
    B[60][49] = [5, "Vearncombe Building", "The_Vearncombe_Building"];
    B[61][49] = [17, "Junkyard", "Junkyard_49%2C61"];
    B[62][49] = [30, "Landucci Walk", "Landucci_Walk"];
    B[63][49] = [30, "Brookeman Lane", "Brookeman_Lane"];
    B[64][49] = [16, "Loader Motel", "The_Loader_Motel"];
    B[65][49] = [13, "Brockway Row Fire Station", "Brockway_Row_Fire_Station"];
    B[66][49] = [18, "Johnstone Library", "Johnstone_Library"];
    B[67][49] = [6, "Carpark", "Carpark_49%2C67"];
    B[68][49] = [10, "Cockle Cinema", "Cockle_Cinema"];
    B[69][49] = [30, "Graddon Way", "Graddon_Way"];

    // ------------------------------------------------
    // Roftwood
    // ------------------------------------------------
    B[60][50] = [
      3,
      "Finnerty Auto Repair",
      "Finnerty_Auto_Repair_%28Shackleville%29",
    ];
    B[61][50] = [
      27,
      "Calvert Grove Railway Station",
      "Calvert_Grove_Railway_Station",
    ];
    B[62][50] = [
      5,
      "Rayfield Building",
      "The_Rayfield_Building_%28Shackleville%29",
    ];
    B[63][50] = [17, "Junkyard", "Junkyard_50%2C63"];
    B[64][50] = [
      5,
      "Elcomb Building",
      "The_Elcomb_Building_%28Shackleville%29",
    ];
    B[65][50] = [5, "Walter Building", "The_Walter_Building"];
    B[66][50] = [12, "Factory", "Factory_50%2C66"];
    B[67][50] = [6, "Carpark", "Carpark_50%2C67"];
    B[68][50] = [30, "Parris Square", "Parris_Square"];
    B[69][50] = [30, "Snelgrove Walk", "Snelgrove_Walk"];
    B[60][51] = [31, "Jarrett Towers", "Jarrett_Towers"];
    B[61][51] = [30, "Wilcox Crescent", "Wilcox_Crescent"];
    B[62][51] = [33, "Wasteland", "Wasteland_51%2C62"];
    B[63][51] = [21, "Stanbury Monument", "The_Stanbury_Monument"];
    B[64][51] = [30, "Grizel Plaza", "Grizel_Plaza"];
    B[65][51] = [28, "Passco Avenue School", "Passco_Avenue_School"];
    B[66][51] = [13, "Doig Road Fire Station", "Doig_Road_Fire_Station"];
    B[67][51] = [30, "Broadbery Square", "Broadbery_Square"];
    B[68][51] = [
      27,
      "Whittle Street Railway Station",
      "Whittle_Street_Railway_Station",
    ];
    B[69][51] = [9, "St Helier's Church", "St._Helier%27s_Church"];
    B[60][52] = [12, "Factory", "Factory_52%2C60"];
    B[61][52] = [30, "Lunn Lane", "Lunn_Lane"];
    B[62][52] = [18, "Milne Library", "Milne_Library"];
    B[63][52] = [11, "Club Cummings", "Club_Cummings"];
    B[64][52] = [30, "Rodgers Boulevard", "Rodgers_Boulevard"];
    B[65][52] = [30, "Copp Avenue", "Copp_Avenue"];
    B[66][52] = [30, "Brickenden Grove", "Brickenden_Grove_%28Shackleville%29"];
    B[67][52] = [27, "Clark Row Railway Station", "Clark_Row_Railway_Station"];
    B[68][52] = [11, "Club Goodenough", "Club_Goodenough"];
    B[69][52] = [
      25,
      "Sweatman Walk Police Dept",
      "Sweatman_Walk_Police_Department",
    ];
    B[60][53] = [33, "Wasteland", "Wasteland_53%2C60"];
    B[61][53] = [17, "Junkyard", "Junkyard_53%2C61"];
    B[62][53] = [11, "Club Vicary", "Club_Vicary"];
    B[63][53] = [24, "Potter Park", "Potter_Park"];
    B[64][53] = [3, "Dinsdale Auto Repair", "Dinsdale_Auto_Repair"];
    B[65][53] = [21, "Dodd Monument", "The_Dodd_Monument"];
    B[66][53] = [30, "Langmead Way", "Langmead_Way"];
    B[67][53] = [
      25,
      "Luckwell Plaza Police Dept",
      "Luckwell_Plaza_Police_Department",
    ];
    B[68][53] = [30, "Henstridge Avenue", "Henstridge_Avenue"];
    B[69][53] = [30, "Gazzard Way", "Gazzard_Way"];
    B[60][54] = [32, "Warehouse", "Warehouse_54%2C60"];
    B[61][54] = [30, "Pardoe Grove", "Pardoe_Grove"];
    B[62][54] = [30, "Rush Way", "Rush_Way"];
    B[63][54] = [22, "Baskcomb Museum", "The_Baskcomb_Museum"];
    B[64][54] = [
      15,
      "Swithun General Hospital",
      "Swithun_General_Hospital_%28Shackleville%29",
    ];
    B[65][54] = [13, "Dempsey Lane Fire Station", "Dempsey_Lane_Fire_Station"];
    B[66][54] = [
      13,
      "Clarkson Lane Fire Station",
      "Clarkson_Lane_Fire_Station",
    ];
    B[67][54] = [33, "Wasteland", "Wasteland_54%2C67"];
    B[68][54] = [30, "Empson Alley", "Empson_Alley"];
    B[69][54] = [17, "Junkyard", "Junkyard_54%2C69"];
    B[60][55] = [30, "Carye Drive", "Carye_Drive_%28Shackleville%29"];
    B[61][55] = [10, "Lucy Cinema", "Lucy_Cinema"];
    B[62][55] = [30, "Lewington Street", "Lewington_Street"];
    B[63][55] = [18, "Grey Library", "Grey_Library"];
    B[64][55] = [
      5,
      "Williames Building",
      "The_Williames_Building_%28Shackleville%29",
    ];
    B[65][55] = [22, "Horsey Museum", "The_Horsey_Museum"];
    B[66][55] = [23, "Raymond Building", "The_Raymond_Building"];
    B[67][55] = [30, "Swaffield Plaza", "Swaffield_Plaza_%28Shackleville%29"];
    B[68][55] = [16, "Charlesworth Hotel", "The_Charlesworth_Hotel"];
    B[69][55] = [10, "Macaulay Cinema", "Macaulay_Cinema"];
    B[60][56] = [30, "Dugan Way", "Dugan_Way"];
    B[61][56] = [11, "Club Skardon", "Club_Skardon"];
    B[62][56] = [30, "Sletery Row", "Sletery_Row"];
    B[63][56] = [30, "Oliver Alley", "Oliver_Alley"];
    B[64][56] = [30, "Hickey Square", "Hickey_Square"];
    B[65][56] = [3, "Harkness Auto Repair", "Harkness_Auto_Repair"];
    B[66][56] = [10, "Maybee Cinema", "Maybee_Cinema"];
    B[67][56] = [5, "Attle Building", "The_Attle_Building"];
    B[68][56] = [30, "Raggett Plaza", "Raggett_Plaza"];
    B[69][56] = [10, "Terrell Cinema", "Terrell_Cinema"];
    B[60][57] = [5, "Geake Building", "The_Geake_Building"];
    B[61][57] = [18, "Ashcroft Library", "Ashcroft_Library"];
    B[62][57] = [24, "Doman Park", "Doman_Park"];
    B[63][57] = [28, "Dimond Lane School", "Dimond_Lane_School"];
    B[64][57] = [30, "Brocbury Alley", "Brocbury_Alley"];
    B[65][57] = [12, "Factory", "Factory_57%2C65"];
    B[66][57] = [5, "Duggan Building", "The_Duggan_Building"];
    B[67][57] = [30, "Nash Alley", "Nash_Alley"];
    B[68][57] = [9, "St Anselm's Church", "St._Anselm%27s_Church"];
    B[69][57] = [8, "Cemetery", "Cemetery_57%2C69"];
    B[60][58] = [30, "Batting Way", "Batting_Way"];
    B[61][58] = [30, "Doben Square", "Doben_Square"];
    B[62][58] = [
      3,
      "Hemore Auto Repair",
      "Hemore_Auto_Repair_%28Shackleville%29",
    ];
    B[63][58] = [30, "Denty Walk", "Denty_Walk"];
    B[64][58] = [31, "Bengefield Towers", "Bengefield_Towers"];
    B[65][58] = [30, "Heath Drive", "Heath_Drive"];
    B[66][58] = [
      28,
      "Carder Row School",
      "Carder_Row_School_%28Shackleville%29",
    ];
    B[67][58] = [30, "Gilles Drive", "Gilles_Drive"];
    B[68][58] = [30, "Plumley Alley", "Plumley_Alley"];
    B[69][58] = [28, "Vines Plaza School", "Vines_Plaza_School"];
    B[60][59] = [4, "Chalderwood Bank", "Chalderwood_Bank"];
    B[61][59] = [22, "Keane Museum", "The_Keane_Museum"];
    B[62][59] = [30, "Burnley Way", "Burnley_Way"];
    B[63][59] = [33, "Wasteland", "Wasteland_59%2C63"];
    B[64][59] = [30, "Elliot Alley", "Elliot_Alley"];
    B[65][59] = [22, "Bowle Museum", "The_Bowle_Museum"];
    B[66][59] = [5, "Rickard Building", "The_Rickard_Building"];
    B[67][59] = [32, "Warehouse", "Warehouse_59%2C67"];
    B[68][59] = [16, "Willcox Motel", "The_Willcox_Motel"];
    B[69][59] = [30, "Dedeystere Square", "Dedeystere_Square"];

    // ------------------------------------------------
    // Tollyton
    // ------------------------------------------------
    B[60][60] = [30, "Dean Lane", "Dean_Lane"];
    B[61][60] = [5, "Bryant Building", "The_Bryant_Building"];
    B[62][60] = [
      15,
      "Peter General Hospital",
      "Peter_General_Hospital_%28Tollyton%29",
    ];
    B[63][60] = [32, "Warehouse", "Warehouse_60%2C63"];
    B[64][60] = [30, "Zeally Grove", "Zeally_Grove"];
    B[65][60] = [
      27,
      "Basher Row Railway Station",
      "Basher_Row_Railway_Station",
    ];
    B[66][60] = [12, "Factory", "Factory_60%2C66"];
    B[67][60] = [30, "Handel Square", "Handel_Square"];
    B[68][60] = [31, "Keeble Towers", "Keeble_Towers"];
    B[69][60] = [21, "Hellier Monument", "The_Hellier_Monument"];
    B[60][61] = [33, "Wasteland", "Wasteland_61%2C60"];
    B[61][61] = [24, "Sweetapple Park", "Sweetapple_Park"];
    B[62][61] = [30, "Cossins Way", "Cossins_Way"];
    B[63][61] = [24, "Corpe Park", "Corpe_Park"];
    B[64][61] = [12, "Factory", "Factory_61%2C64"];
    B[65][61] = [3, "Sears Auto Repair", "Sears_Auto_Repair"];
    B[66][61] = [30, "Lovering Avenue", "Lovering_Avenue"];
    B[67][61] = [10, "Keys Cinema", "Keys_Cinema"];
    B[68][61] = [
      9,
      "St Ambrose's Church",
      "St._Ambrose%27s_Church_%28Tollyton%29",
    ];
    B[69][61] = [24, "Welsford Park", "Welsford_Park"];
    B[60][62] = [9, "St Oswald's Church", "St._Oswald%27s_Church"];
    B[61][62] = [21, "Starr Monument", "The_Starr_Monument"];
    B[62][62] = [19, "Woodroffe Mall", "Woodroffe_Mall"];
    B[63][62] = [19, "Woodroffe Mall", "Woodroffe_Mall"];
    B[64][62] = [5, "Wakley Building", "The_Wakley_Building"];
    B[65][62] = [21, "Pettey Monument", "The_Pettey_Monument"];
    B[66][62] = [
      25,
      "Winward Avenue Police Dept",
      "Winward_Avenue_Police_Department",
    ];
    B[67][62] = [30, "Tatler Lane", "Tatler_Lane_%28Tollyton%29"];
    B[68][62] = [21, "Mooney Monument", "The_Mooney_Monument"];
    B[69][62] = [8, "Cemetery", "Cemetery_62%2C69"];
    B[60][63] = [8, "Cemetery", "Cemetery_63%2C60"];
    B[61][63] = [
      13,
      "Wimbridge Boulevard Fire Station",
      "Wimbridge_Boulevard_Fire_Station",
    ];
    B[62][63] = [19, "Woodroffe Mall", "Woodroffe_Mall"];
    B[63][63] = [19, "Woodroffe Mall", "Woodroffe_Mall"];
    B[64][63] = [30, "Powsell Road", "Powsell_Road"];
    B[65][63] = [32, "Warehouse", "Warehouse_63%2C65"];
    B[66][63] = [5, "Sidoli Building", "The_Sidoli_Building"];
    B[67][63] = [21, "Wisby Monument", "The_Wisby_Monument"];
    B[68][63] = [30, "Pattmore Road", "Pattmore_Road"];
    B[69][63] = [30, "Norvell Crescent", "Norvell_Crescent"];
    B[60][64] = [30, "Candy Avenue", "Candy_Avenue"];
    B[61][64] = [21, "Fielding Monument", "The_Fielding_Monument"];
    B[62][64] = [17, "Junkyard", "Junkyard_64%2C62"];
    B[63][64] = [13, "Conolly Row Fire Station", "Conolly_Row_Fire_Station"];
    B[64][64] = [2, "Prangnell Arms", "The_Prangnell_Arms"];
    B[65][64] = [5, "Sherren Building", "The_Sherren_Building"];
    B[66][64] = [
      25,
      "Friend Plaza Police Dept",
      "Friend_Plaza_Police_Department",
    ];
    B[67][64] = [4, "Reeves Bank", "Reeves_Bank"];
    B[68][64] = [5, "Wells Building", "The_Wells_Building"];
    B[69][64] = [9, "St Odile's Church", "St._Odile%27s_Church_%28Tollyton%29"];
    B[60][65] = [30, "Wyche Plaza", "Wyche_Plaza"];
    B[61][65] = [10, "Coy Cinema", "Coy_Cinema"];
    B[62][65] = [32, "Warehouse", "Warehouse_65%2C62"];
    B[63][65] = [15, "St Joachim's Hospital", "St._Joachim%27s_Hospital"];
    B[64][65] = [18, "Tavener Library", "Tavener_Library"];
    B[65][65] = [30, "Kingslake Way", "Kingslake_Way"];
    B[66][65] = [30, "Vann Road", "Vann_Road_%28Tollyton%29"];
    B[67][65] = [33, "Wasteland", "Wasteland_65%2C67"];
    B[68][65] = [21, "Chetwynd Monument", "The_Chetwynd_Monument"];
    B[69][65] = [30, "Cheal Street", "Cheal_Street"];
    B[60][66] = [31, "Power Towers", "Power_Towers"];
    B[61][66] = [31, "Kemys Towers", "Kemys_Towers"];
    B[62][66] = [32, "Warehouse", "Warehouse_66%2C62"];
    B[63][66] = [30, "Prowse Way", "Prowse_Way"];
    B[64][66] = [5, "Pearson Building", "The_Pearson_Building"];
    B[65][66] = [
      15,
      "St Boniface's Hospital",
      "St._Boniface%27s_Hospital_%28Tollyton%29",
    ];
    B[66][66] = [30, "Errington Crescent", "Errington_Crescent"];
    B[67][66] = [
      23,
      "Rayfield Building",
      "The_Rayfield_Building_%28Tollyton%29",
    ];
    B[68][66] = [13, "Lake Street Fire Station", "Lake_Street_Fire_Station"];
    B[69][66] = [15, "Marcus General Hospital", "Marcus_General_Hospital"];
    B[60][67] = [17, "Junkyard", "Junkyard_67%2C60"];
    B[61][67] = [28, "Godwin Square School", "Godwin_Square_School"];
    B[62][67] = [30, "Burnham Way", "Burnham_Way"];
    B[63][67] = [30, "Cunningham Street", "Cunningham_Street"];
    B[64][67] = [18, "Diaper Library", "Diaper_Library"];
    B[65][67] = [30, "Bailward Way", "Bailward_Way"];
    B[66][67] = [30, "Cowing Walk", "Cowing_Walk"];
    B[67][67] = [33, "Wasteland", "Wasteland_67%2C67"];
    B[68][67] = [30, "Augarde Lane", "Augarde_Lane_%28Tollyton%29"];
    B[69][67] = [31, "Bawden Towers", "Bawden_Towers"];
    B[60][68] = [13, "Garrow Drive Fire Station", "Garrow_Drive_Fire_Station"];
    B[61][68] = [30, "Kelher Walk", "Kelher_Walk"];
    B[62][68] = [30, "Annesley Way", "Annesley_Way"];
    B[63][68] = [16, "Sequeira Motel", "The_Sequeira_Motel"];
    B[64][68] = [11, "Club Shearly", "Club_Shearly"];
    B[65][68] = [31, "Collis Towers", "Collis_Towers"];
    B[66][68] = [30, "Turford Street", "Turford_Street"];
    B[67][68] = [30, "Martine Plaza", "Martine_Plaza"];
    B[68][68] = [2, "Ferguson Arms", "The_Ferguson_Arms"];
    B[69][68] = [30, "Priestly Grove", "Priestly_Grove"];
    B[60][69] = [
      13,
      "Paskin Square Fire Station",
      "Paskin_Square_Fire_Station",
    ];
    B[61][69] = [30, "Dotin Walk", "Dotin_Walk"];
    B[62][69] = [30, "Witheroll Crescent", "Witheroll_Crescent"];
    B[63][69] = [30, "Humpfries Walk", "Humpfries_Walk"];
    B[64][69] = [32, "Warehouse", "Warehouse_69%2C64"];
    B[65][69] = [6, "Carpark", "Carpark_69%2C65"];
    B[66][69] = [33, "Wasteland", "Wasteland_69%2C66"];
    B[67][69] = [30, "Hamlyn Lane", "Hamlyn_Lane"];
    B[68][69] = [30, "Vann Lane", "Vann_Lane"];
    B[69][69] = [5, "Southcott Building", "The_Southcott_Building"];

    // ------------------------------------------------
    // Wray Heights
    // ------------------------------------------------
    B[60][70] = [33, "Wasteland", "Wasteland_70%2C60"];
    B[61][70] = [5, "Grinham Building", "The_Grinham_Building"];
    B[62][70] = [11, "Club Head", "Club_Head"];
    B[63][70] = [
      9,
      "St Emelia's Church",
      "St._Emelia%27s_Church_%28Crowbank%29",
    ];
    B[64][70] = [
      27,
      "Gajewski Boulevard Railway Station",
      "Gajewski_Boulevard_Railway_Station",
    ];
    B[65][70] = [30, "Wine Street", "Wine_Street"];
    B[66][70] = [
      9,
      "St Eugene's Church",
      "St._Eugene%27s_Church_%28Crowbank%29",
    ];
    B[67][70] = [11, "Club Ravenhill", "Club_Ravenhill"];
    B[68][70] = [30, "Curdel Street", "Curdel_Street"];
    B[69][70] = [16, "Horwill Hotel", "The_Horwill_Hotel"];
    B[60][71] = [30, "Lindsey Square", "Lindsey_Square"];
    B[61][71] = [12, "Factory", "Factory_71%2C61"];
    B[62][71] = [30, "Willshire Boulevard", "Willshire_Boulevard"];
    B[63][71] = [24, "Harewood Park", "Harewood_Park"];
    B[64][71] = [28, "Beer Place School", "Beer_Place_School_%28Crowbank%29"];
    B[65][71] = [5, "Lathom Building", "The_Lathom_Building"];
    B[66][71] = [31, "Style Towers", "Style_Towers"];
    B[67][71] = [30, "Frauley Row", "Frauley_Row"];
    B[68][71] = [30, "Floyde Walk", "Floyde_Walk"];
    B[69][71] = [3, "Peryer Auto Repair", "Peryer_Auto_Repair"];
    B[60][72] = [23, "Blocksidge Building", "The_Blocksidge_Building"];
    B[61][72] = [4, "Whitesides Bank", "Whitesides_Bank"];
    B[62][72] = [15, "St Gregory's Hospital", "St._Gregory%27s_Hospital"];
    B[63][72] = [30, "Gear Alley", "Gear_Alley"];
    B[64][72] = [30, "Kening Walk", "Kening_Walk"];
    B[65][72] = [16, "Lawley Motel", "The_Lawley_Motel"];
    B[66][72] = [9, "St Piran's Church", "St._Piran%27s_Church_%28Crowbank%29"];
    B[67][72] = [30, "Hely Avenue", "Hely_Avenue"];
    B[68][72] = [30, "MacLaverty Road", "MacLaverty_Road"];
    B[69][72] = [30, "Chambers Alley", "Chambers_Alley"];
    B[60][73] = [16, "Burfield Motel", "The_Burfield_Motel"];
    B[61][73] = [30, "Willington Plaza", "Willington_Plaza"];
    B[62][73] = [22, "Nott Museum", "The_Nott_Museum"];
    B[63][73] = [30, "Wootton Square", "Wootton_Square_%28Crowbank%29"];
    B[64][73] = [24, "Blight Park", "Blight_Park_%28Crowbank%29"];
    B[65][73] = [23, "Spragge Building", "The_Spragge_Building"];
    B[66][73] = [24, "Reay Park", "Reay_Park"];
    B[67][73] = [8, "Cemetery", "Cemetery_73%2C67"];
    B[68][73] = [18, "Gayler Library", "Gayler_Library"];
    B[69][73] = [31, "Anstee Towers", "Anstee_Towers"];
    B[60][74] = [5, "Curtice Building", "The_Curtice_Building_%28Crowbank%29"];
    B[61][74] = [
      28,
      "Hepplethwaite Place School",
      "Hepplethwaite_Place_School",
    ];
    B[62][74] = [
      9,
      "St Lorenzo's Church",
      "St._Lorenzo%27s_Church_%28Crowbank%29",
    ];
    B[63][74] = [11, "Club Dowdall", "Club_Dowdall"];
    B[64][74] = [30, "Templar Place", "Templar_Place"];
    B[65][74] = [
      13,
      "Gerrish Square Fire Station",
      "Gerrish_Square_Fire_Station",
    ];
    B[66][74] = [11, "Club Ainslie", "Club_Ainslie"];
    B[67][74] = [30, "Manaton Way", "Manaton_Way"];
    B[68][74] = [
      9,
      "St Birinus's Church",
      "St._Birinus%27s_Church_%28Crowbank%29",
    ];
    B[69][74] = [30, "Waish Plaza", "Waish_Plaza"];
    B[60][75] = [30, "Scallon Lane", "Scallon_Lane"];
    B[61][75] = [
      25,
      "Dane Street Police Dept",
      "Dane_Street_Police_Department",
    ];
    B[62][75] = [24, "Stickling Park", "Stickling_Park"];
    B[63][75] = [30, "Nickols Drive", "Nickols_Drive"];
    B[64][75] = [30, "Whitehorn Grove", "Whitehorn_Grove"];
    B[65][75] = [30, "Pearse Grove", "Pearse_Grove"];
    B[66][75] = [30, "Lavour Row", "Lavour_Row"];
    B[67][75] = [24, "Pennecard Park", "Pennecard_Park"];
    B[68][75] = [
      3,
      "Blockwood Auto Repair",
      "Blockwood_Auto_Repair_%28Crowbank%29",
    ];
    B[69][75] = [30, "Hitchfield Alley", "Hitchfield_Alley"];
    B[60][76] = [16, "Leggetter Motel", "The_Leggetter_Motel"];
    B[61][76] = [
      3,
      "Pullinger Auto Repair",
      "Pullinger_Auto_Repair_%28Crowbank%29",
    ];
    B[62][76] = [
      25,
      "Burt Square Police Dept",
      "Burt_Square_Police_Department",
    ];
    B[63][76] = [23, "Mydleham Building", "The_Mydleham_Building"];
    B[64][76] = [
      27,
      "Exon Alley Railway Station",
      "Exon_Alley_Railway_Station",
    ];
    B[65][76] = [30, "Kerby Street", "Kerby_Street"];
    B[66][76] = [30, "Shore Grove", "Shore_Grove"];
    B[67][76] = [33, "Wasteland", "Wasteland_76%2C67"];
    B[68][76] = [23, "Doubting Building", "The_Doubting_Building"];
    B[69][76] = [6, "Carpark", "Carpark_76%2C69"];
    B[60][77] = [6, "Carpark", "Carpark_77%2C60"];
    B[61][77] = [4, "Morrell Bank", "Morrell_Bank"];
    B[62][77] = [2, "Elsbury Arms", "The_Elsbury_Arms"];
    B[63][77] = [30, "Plummer Avenue", "Plummer_Avenue"];
    B[64][77] = [30, "Brely Avenue", "Brely_Avenue"];
    B[65][77] = [4, "Commins Bank", "Commins_Bank"];
    B[66][77] = [25, "Clinch Way Police Dept", "Clinch_Way_Police_Department"];
    B[67][77] = [5, "Mahon Building", "The_Mahon_Building"];
    B[68][77] = [30, "Rankin Grove", "Rankin_Grove"];
    B[69][77] = [17, "Junkyard", "Junkyard_77%2C69"];
    B[60][78] = [3, "Dinwoodie Auto Repair", "Dinwoodie_Auto_Repair"];
    B[61][78] = [30, "Court Street", "Court_Street"];
    B[62][78] = [5, "Rishton Building", "The_Rishton_Building"];
    B[63][78] = [30, "Bruton Lane", "Bruton_Lane"];
    B[64][78] = [30, "Billings Way", "Billings_Way"];
    B[65][78] = [16, "Toop Motel", "The_Toop_Motel"];
    B[66][78] = [10, "Farbrother Cinema", "Farbrother_Cinema"];
    B[67][78] = [28, "Brogan Boulevard School", "Brogan_Boulevard_School"];
    B[68][78] = [6, "Carpark", "Carpark_78%2C68"];
    B[69][78] = [5, "Crape Building", "The_Crape_Building"];
    B[60][79] = [
      15,
      "Peter General Hospital",
      "Peter_General_Hospital_%28Crowbank%29",
    ];
    B[61][79] = [10, "Rillie Cinema", "Rillie_Cinema"];
    B[62][79] = [30, "Birkbeck Alley", "Birkbeck_Alley"];
    B[63][79] = [28, "Vautier Place School", "Vautier_Place_School"];
    B[64][79] = [16, "Beville Hotel", "The_Beville_Hotel"];
    B[65][79] = [30, "Billett Way", "Billett_Way"];
    B[66][79] = [22, "Meade Museum", "The_Meade_Museum"];
    B[67][79] = [30, "Huttenbach Drive", "Huttenbach_Drive_%28Crowbank%29"];
    B[68][79] = [24, "Brickenden Park", "Brickenden_Park"];
    B[69][79] = [
      13,
      "Spinney Alley Fire Station",
      "Spinney_Alley_Fire_Station",
    ];

    // ------------------------------------------------
    // East Grayside
    // ------------------------------------------------
    B[60][80] = [11, "Club Threadgould", "Club_Threadgould"];
    B[61][80] = [33, "Wasteland", "Wasteland_80%2C61"];
    B[62][80] = [22, "Godfry Museum", "The_Godfry_Museum"];
    B[63][80] = [33, "Wasteland", "Wasteland_80%2C63"];
    B[64][80] = [30, "Bickley Street", "Bickley_Street"];
    B[65][80] = [12, "Factory", "Factory_80%2C65"];
    B[66][80] = [6, "Carpark", "Carpark_80%2C66"];
    B[67][80] = [30, "Clitsome Square", "Clitsome_Square"];
    B[68][80] = [30, "Challenger Street", "Challenger_Street"];
    B[69][80] = [5, "Shortis Building", "The_Shortis_Building"];
    B[60][81] = [10, "Shyar Cinema", "Shyar_Cinema"];
    B[61][81] = [30, "Goddard Way", "Goddard_Way"];
    B[62][81] = [5, "Buckett Building", "The_Buckett_Building"];
    B[63][81] = [21, "Pearson Monument", "The_Pearson_Monument"];
    B[64][81] = [30, "Stanbury Lane", "Stanbury_Lane_%28Vinetown%29"];
    B[65][81] = [30, "Culling Drive", "Culling_Drive"];
    B[66][81] = [24, "Dudd Park", "Dudd_Park"];
    B[67][81] = [4, "Hartland Bank", "Hartland_Bank"];
    B[68][81] = [30, "Sartain Row", "Sartain_Row"];
    B[69][81] = [28, "Podger Avenue School", "Podger_Avenue_School"];
    B[60][82] = [18, "Chatwin Library", "Chatwin_Library"];
    B[61][82] = [11, "Club Atthill", "Club_Atthill"];
    B[62][82] = [30, "Boulter Way", "Boulter_Way"];
    B[63][82] = [
      25,
      "Ling Boulevard Police Dept",
      "Ling_Boulevard_Police_Department",
    ];
    B[64][82] = [30, "Blabey Drive", "Blabey_Drive"];
    B[65][82] = [30, "Waite Plaza", "Waite_Plaza"];
    B[66][82] = [5, "Tynte Building", "The_Tynte_Building_%28Vinetown%29"];
    B[67][82] = [
      25,
      "Caunt Street Police Dept",
      "Caunt_Street_Police_Department",
    ];
    B[68][82] = [30, "Druce Walk", "Druce_Walk"];
    B[69][82] = [33, "Wasteland", "Wasteland_82%2C69"];
    B[60][83] = [
      15,
      "Gelasius General Hospital",
      "Gelasius_General_Hospital_%28Vinetown%29",
    ];
    B[61][83] = [7, "St John's Cathedral", "St._John%27s_Cathedral"];
    B[62][83] = [7, "St John's Cathedral", "St._John%27s_Cathedral"];
    B[63][83] = [4, "Attrill Bank", "Attrill_Bank"];
    B[64][83] = [31, "Bubcar Towers", "Bubcar_Towers"];
    B[65][83] = [33, "Wasteland", "Wasteland_83%2C65"];
    B[66][83] = [21, "Bhore Monument", "The_Bhore_Monument"];
    B[67][83] = [30, "Shaft Grove", "Shaft_Grove"];
    B[68][83] = [
      25,
      "Hartleys Boulevard Police Dept",
      "Hartleys_Boulevard_Police_Department",
    ];
    B[69][83] = [22, "Salisbury Museum", "The_Salisbury_Museum"];
    B[60][84] = [21, "Dinovan Monument", "The_Dinovan_Monument"];
    B[61][84] = [7, "St John's Cathedral", "St._John%27s_Cathedral"];
    B[62][84] = [7, "St John's Cathedral", "St._John%27s_Cathedral"];
    B[63][84] = [30, "Lister Alley", "Lister_Alley"];
    B[64][84] = [16, "Pilyer Hotel", "The_Pilyer_Hotel"];
    B[65][84] = [32, "Warehouse", "Warehouse_84%2C65"];
    B[66][84] = [4, "Corless Bank", "Corless_Bank"];
    B[67][84] = [33, "Wasteland", "Wasteland_84%2C67"];
    B[68][84] = [33, "Wasteland", "Wasteland_84%2C68"];
    B[69][84] = [33, "Wasteland", "Wasteland_84%2C69"];
    B[60][85] = [5, "Cork Building", "The_Cork_Building"];
    B[61][85] = [
      25,
      "Goodford Road Police Dept",
      "Goodford_Road_Police_Department",
    ];
    B[62][85] = [22, "Daniels Museum", "The_Daniels_Museum"];
    B[63][85] = [30, "Baker Walk", "Baker_Walk"];
    B[64][85] = [17, "Junkyard", "Junkyard_85%2C64"];
    B[65][85] = [19, "Mitchem Mall", "Mitchem_Mall"];
    B[66][85] = [19, "Mitchem Mall", "Mitchem_Mall"];
    B[67][85] = [31, "Doddington Towers", "Doddington_Towers"];
    B[68][85] = [30, "Paul Plaza", "Paul_Plaza"];
    B[69][85] = [5, "Kirk Building", "The_Kirk_Building"];
    B[60][86] = [17, "Junkyard", "Junkyard_86%2C60"];
    B[61][86] = [33, "Wasteland", "Wasteland_86%2C61"];
    B[62][86] = [32, "Warehouse", "Warehouse_86%2C62"];
    B[63][86] = [5, "Yapp Building", "The_Yapp_Building"];
    B[64][86] = [11, "Club Izzard", "Club_Izzard"];
    B[65][86] = [19, "Mitchem Mall", "Mitchem_Mall"];
    B[66][86] = [19, "Mitchem Mall", "Mitchem_Mall"];
    B[67][86] = [31, "Taswell Towers", "Taswell_Towers"];
    B[68][86] = [21, "Durand Monument", "The_Durand_Monument"];
    B[69][86] = [16, "Lees Hotel", "The_Lees_Hotel"];
    B[60][87] = [33, "Wasteland", "Wasteland_87%2C60"];
    B[61][87] = [30, "Pearson Road", "Pearson_Road"];
    B[62][87] = [17, "Junkyard", "Junkyard_87%2C62"];
    B[63][87] = [28, "Cureton Lane School", "Cureton_Lane_School"];
    B[64][87] = [
      27,
      "Beall Boulevard Railway Station",
      "Beall_Boulevard_Railway_Station",
    ];
    B[65][87] = [30, "Ludlam Drive", "Ludlam_Drive"];
    B[66][87] = [30, "Gregory Crescent", "Gregory_Crescent"];
    B[67][87] = [11, "Club Quarman", "Club_Quarman"];
    B[68][87] = [30, "Sperril Lane", "Sperril_Lane"];
    B[69][87] = [12, "Factory", "Factory_87%2C69"];
    B[60][88] = [3, "Monck Auto Repair", "Monck_Auto_Repair"];
    B[61][88] = [33, "Wasteland", "Wasteland_88%2C61"];
    B[62][88] = [30, "Copperthwaite Street", "Copperthwaite_Street"];
    B[63][88] = [28, "Pople Place School", "Pople_Place_School"];
    B[64][88] = [30, "Kidner Walk", "Kidner_Walk"];
    B[65][88] = [3, "Loveiband Auto Repair", "Loveiband_Auto_Repair"];
    B[66][88] = [31, "Reason Towers", "Reason_Towers"];
    B[67][88] = [30, "Dibsdale Avenue", "Dibsdale_Avenue"];
    B[68][88] = [32, "Warehouse", "Warehouse_88%2C68"];
    B[69][88] = [30, "Brien Place", "Brien_Place"];
    B[60][89] = [31, "Standfield Towers", "Standfield_Towers"];
    B[61][89] = [33, "Wasteland", "Wasteland_89%2C61"];
    B[62][89] = [33, "Wasteland", "Wasteland_89%2C62"];
    B[63][89] = [
      27,
      "Colwill Grove Railway Station",
      "Colwill_Grove_Railway_Station",
    ];
    B[64][89] = [30, "Chidgey Avenue", "Chidgey_Avenue"];
    B[65][89] = [30, "Feldstein Place", "Feldstein_Place"];
    B[66][89] = [30, "Hodgkins Lane", "Hodgkins_Lane"];
    B[67][89] = [31, "Whish Towers", "Whish_Towers"];
    B[68][89] = [17, "Junkyard", "Junkyard_89%2C68"];
    B[69][89] = [30, "Vellacott Road", "Vellacott_Road"];

    // ------------------------------------------------
    // Hollomstown
    // ------------------------------------------------
    B[60][90] = [4, "Trett Bank", "Trett_Bank"];
    B[61][90] = [30, "Yeandill Way", "Yeandill_Way"];
    B[62][90] = [31, "Pettyfer Towers", "Pettyfer_Towers"];
    B[63][90] = [30, "Essell Road", "Essell_Road"];
    B[64][90] = [30, "Cunliffe Lane", "Cunliffe_Lane"];
    B[65][90] = [30, "Firminger Alley", "Firminger_Alley"];
    B[66][90] = [30, "Shearstone Boulevard", "Shearstone_Boulevard"];
    B[67][90] = [32, "Warehouse", "Warehouse_90%2C67"];
    B[68][90] = [
      9,
      "St John's Church",
      "St._John%27s_Church_%28Houldenbank%29",
    ];
    B[69][90] = [30, "Hyde Avenue", "Hyde_Avenue"];
    B[60][91] = [
      27,
      "Hembury Boulevard Railway Station",
      "Hembury_Boulevard_Railway_Station",
    ];
    B[61][91] = [12, "Factory", "Factory_91%2C61"];
    B[62][91] = [28, "Bowell Boulevard School", "Bowell_Boulevard_School"];
    B[63][91] = [12, "Factory", "Factory_91%2C63"];
    B[64][91] = [6, "Carpark", "Carpark_91%2C64"];
    B[65][91] = [30, "Ripley Grove", "Ripley_Grove"];
    B[66][91] = [22, "Ramsay Museum", "The_Ramsay_Museum"];
    B[67][91] = [30, "Lavour Alley", "Lavour_Alley"];
    B[68][91] = [21, "Banks Monument", "The_Banks_Monument"];
    B[69][91] = [8, "Cemetery", "Cemetery_91%2C69"];
    B[60][92] = [16, "Pirie Motel", "The_Pirie_Motel"];
    B[61][92] = [31, "Wharam Towers", "Wharam_Towers"];
    B[62][92] = [28, "Ralph Street School", "Ralph_Street_School"];
    B[63][92] = [4, "Routh Bank", "Routh_Bank"];
    B[64][92] = [9, "St Willibrord's Church", "St._Willibrord%27s_Church"];
    B[65][92] = [32, "Warehouse", "Warehouse_92%2C65"];
    B[66][92] = [30, "Knoyle Walk", "Knoyle_Walk"];
    B[67][92] = [6, "Carpark", "Carpark_92%2C67"];
    B[68][92] = [16, "Frappell Motel", "The_Frappell_Motel"];
    B[69][92] = [
      9,
      "St Lorenzo's Church",
      "St._Lorenzo%27s_Church_%28Houldenbank%29",
    ];
    B[60][93] = [13, "Vallis Plaza Fire Station", "Vallis_Plaza_Fire_Station"];
    B[61][93] = [21, "Grisewood Monument", "The_Grisewood_Monument"];
    B[62][93] = [30, "Owen Lane", "Owen_Lane"];
    B[63][93] = [30, "Ford Drive", "Ford_Drive"];
    B[64][93] = [18, "Caldecott Library", "Caldecott_Library"];
    B[65][93] = [5, "Pitney Building", "The_Pitney_Building"];
    B[66][93] = [3, "Hemmings Auto Repair", "Hemmings_Auto_Repair"];
    B[67][93] = [30, "Isgar Square", "Isgar_Square"];
    B[68][93] = [15, "St Maurice's Hospital", "St._Maurice%27s_Hospital"];
    B[69][93] = [8, "Cemetery", "Cemetery_93%2C69"];
    B[60][94] = [33, "Wasteland", "Wasteland_94%2C60"];
    B[61][94] = [33, "Wasteland", "Wasteland_94%2C61"];
    B[62][94] = [30, "Peake Drive", "Peake_Drive"];
    B[63][94] = [17, "Junkyard", "Junkyard_94%2C63"];
    B[64][94] = [23, "Owsley Building", "The_Owsley_Building"];
    B[65][94] = [16, "Meacham Motel", "The_Meacham_Motel"];
    B[66][94] = [22, "Kitting Museum", "The_Kitting_Museum"];
    B[67][94] = [31, "Mace Towers", "Mace_Towers"];
    B[68][94] = [30, "Hagopian Lane", "Hagopian_Lane"];
    B[69][94] = [33, "Wasteland", "Wasteland_94%2C69"];
    B[60][95] = [23, "Tribe Building", "The_Tribe_Building"];
    B[61][95] = [30, "Bending Walk", "Bending_Walk"];
    B[62][95] = [30, "Mounty Street", "Mounty_Street"];
    B[63][95] = [30, "Blatchly Avenue", "Blatchly_Avenue"];
    B[64][95] = [4, "Hooker Bank", "Hooker_Bank"];
    B[65][95] = [12, "Factory", "Factory_95%2C65"];
    B[66][95] = [12, "Factory", "Factory_95%2C66"];
    B[67][95] = [5, "Ridyard Building", "The_Ridyard_Building"];
    B[68][95] = [30, "Grey Road", "Grey_Road"];
    B[69][95] = [30, "Cawley Square", "Cawley_Square"];
    B[60][96] = [5, "Wellstead Building", "The_Wellstead_Building"];
    B[61][96] = [30, "Bellhouse Road", "Bellhouse_Road"];
    B[62][96] = [17, "Junkyard", "Junkyard_96%2C62"];
    B[63][96] = [30, "Bendell Walk", "Bendell_Walk"];
    B[64][96] = [4, "Gummer Bank", "Gummer_Bank_%28Houldenbank%29"];
    B[65][96] = [
      25,
      "Solomon Lane Police Dept",
      "Solomon_Lane_Police_Department_%28Houldenbank%29",
    ];
    B[66][96] = [30, "Tancock Walk", "Tancock_Walk"];
    B[67][96] = [
      5,
      "Wrigley Building",
      "The_Wrigley_Building_%28Houldenbank%29",
    ];
    B[68][96] = [30, "Colles Street", "Colles_Street"];
    B[69][96] = [5, "Chicke Building", "The_Chicke_Building"];
    B[60][97] = [30, "Elford Lane", "Elford_Lane"];
    B[61][97] = [30, "Hubbard Avenue", "Hubbard_Avenue_%28Houldenbank%29"];
    B[62][97] = [5, "Tibbotts Building", "The_Tibbotts_Building"];
    B[63][97] = [30, "Wagstaff Lane", "Wagstaff_Lane"];
    B[64][97] = [5, "Hawarden Building", "The_Hawarden_Building"];
    B[65][97] = [
      27,
      "Sellwood Drive Railway Station",
      "Sellwood_Drive_Railway_Station",
    ];
    B[66][97] = [
      27,
      "Barens Row Railway Station",
      "Barens_Row_Railway_Station",
    ];
    B[67][97] = [30, "Organ Avenue", "Organ_Avenue"];
    B[68][97] = [32, "Warehouse", "Warehouse_97%2C68"];
    B[69][97] = [30, "Laurel Drive", "Laurel_Drive"];
    B[60][98] = [18, "Potenger Library", "Potenger_Library"];
    B[61][98] = [30, "Newstead Place", "Newstead_Place"];
    B[62][98] = [15, "Richard General Hospital", "Richard_General_Hospital"];
    B[63][98] = [31, "Mallett Towers", "Mallett_Towers"];
    B[64][98] = [30, "Guppy Boulevard", "Guppy_Boulevard"];
    B[65][98] = [10, "Waggott Cinema", "Waggott_Cinema"];
    B[66][98] = [30, "Gifford Way", "Gifford_Way"];
    B[67][98] = [2, "Ogborn Arms", "The_Ogborn_Arms"];
    B[68][98] = [24, "Rabbitts Park", "Rabbitts_Park"];
    B[69][98] = [30, "Parfet Grove", "Parfet_Grove"];
    B[60][99] = [30, "Hossam Crescent", "Hossam_Crescent"];
    B[61][99] = [3, "Drury Auto Repair", "Drury_Auto_Repair"];
    B[62][99] = [30, "Philips Plaza", "Philips_Plaza"];
    B[63][99] = [12, "Factory", "Factory_99%2C63"];
    B[64][99] = [
      23,
      "Hosken Building",
      "The_Hosken_Building_%28Houldenbank%29",
    ];
    B[65][99] = [
      23,
      "Greatorex Building",
      "The_Greatorex_Building_%28Houldenbank%29",
    ];
    B[66][99] = [30, "Marsh Avenue", "Marsh_Avenue_%28Houldenbank%29"];
    B[67][99] = [22, "Richard Museum", "The_Richard_Museum"];
    B[68][99] = [6, "Carpark", "Carpark_99%2C68"];
    B[69][99] = [
      15,
      "Lucius General Hospital",
      "Lucius_General_Hospital_%28Houldenbank%29",
    ];

    // ------------------------------------------------
    // Earletown
    // ------------------------------------------------
    B[70][0] = [18, "Castle Library", "Castle_Library"];
    B[71][0] = [16, "Rickard Hotel", "The_Rickard_Hotel"];
    B[72][0] = [33, "Wasteland", "Wasteland_0%2C72"];
    B[73][0] = [33, "Wasteland", "Wasteland_0%2C73"];
    B[74][0] = [18, "Starcy Library", "Starcy_Library"];
    B[75][0] = [28, "Carder Row School", "Carder_Row_School_%28Nixbank%29"];
    B[76][0] = [21, "Hellard Monument", "The_Hellard_Monument"];
    B[77][0] = [22, "Lord Museum", "The_Lord_Museum"];
    B[78][0] = [30, "Lafone Alley", "Lafone_Alley"];
    B[79][0] = [5, "Brower Building", "The_Brower_Building"];
    B[70][1] = [30, "Harvey Lane", "Harvey_Lane"];
    B[71][1] = [22, "Seaman Museum", "The_Seaman_Museum"];
    B[72][1] = [32, "Warehouse", "Warehouse_1%2C72"];
    B[73][1] = [33, "Wasteland", "Wasteland_1%2C73"];
    B[74][1] = [3, "Swallow Auto Repair", "Swallow_Auto_Repair"];
    B[75][1] = [23, "Harbord Building", "The_Harbord_Building"];
    B[76][1] = [30, "Christopher Lane", "Christopher_Lane"];
    B[77][1] = [13, "Lindsey Lane Fire Station", "Lindsey_Lane_Fire_Station"];
    B[78][1] = [25, "Brandon Way Police Dept", "Brandon_Way_Police_Department"];
    B[79][1] = [33, "Wasteland", "Wasteland_1%2C79"];
    B[70][2] = [2, "Woolmonton Arms", "The_Woolmonton_Arms"];
    B[71][2] = [17, "Junkyard", "Junkyard_2%2C71"];
    B[72][2] = [31, "Mapson Towers", "Mapson_Towers"];
    B[73][2] = [10, "Chenery Cinema", "Chenery_Cinema_%28Nixbank%29"];
    B[74][2] = [6, "Carpark", "Carpark_2%2C74"];
    B[75][2] = [33, "Wasteland", "Wasteland_2%2C75"];
    B[76][2] = [31, "Galpin Towers", "Galpin_Towers"];
    B[77][2] = [30, "Sugar Boulevard", "Sugar_Boulevard"];
    B[78][2] = [30, "Forde Road", "Forde_Road"];
    B[79][2] = [12, "Factory", "Factory_2%2C79"];
    B[70][3] = [30, "Clapp Lane", "Clapp_Lane"];
    B[71][3] = [30, "Waddon Boulevard", "Waddon_Boulevard"];
    B[72][3] = [30, "Chetwind Alley", "Chetwind_Alley"];
    B[73][3] = [4, "Mugford Bank", "Mugford_Bank"];
    B[74][3] = [6, "Carpark", "Carpark_3%2C74"];
    B[75][3] = [30, "Heale Drive", "Heale_Drive"];
    B[76][3] = [30, "Meacham Way", "Meacham_Way"];
    B[77][3] = [25, "Page Plaza Police Dept", "Page_Plaza_Police_Department"];
    B[78][3] = [30, "Forward Plaza", "Forward_Plaza"];
    B[79][3] = [30, "Mapey Avenue", "Mapey_Avenue"];
    B[70][4] = [21, "Jeandle Monument", "The_Jeandle_Monument"];
    B[71][4] = [6, "Carpark", "Carpark_4%2C71"];
    B[72][4] = [30, "Muttlebury Road", "Muttlebury_Road"];
    B[73][4] = [30, "Haggie Square", "Haggie_Square"];
    B[74][4] = [11, "Club Staley", "Club_Staley"];
    B[75][4] = [30, "Bowles Avenue", "Bowles_Avenue"];
    B[76][4] = [30, "Holmshaw Lane", "Holmshaw_Lane"];
    B[77][4] = [5, "Buskin Building", "The_Buskin_Building"];
    B[78][4] = [
      27,
      "Meloney Square Railway Station",
      "Meloney_Square_Railway_Station",
    ];
    B[79][4] = [9, "St Ninian's Church", "St._Ninian%27s_Church_%28Nixbank%29"];
    B[70][5] = [9, "St Patriarch's Church", "St._Patriarch%27s_Church"];
    B[71][5] = [30, "Castlehow Boulevard", "Castlehow_Boulevard"];
    B[72][5] = [33, "Wasteland", "Wasteland_5%2C72"];
    B[73][5] = [33, "Wasteland", "Wasteland_5%2C73"];
    B[74][5] = [30, "Sambone Lane", "Sambone_Lane"];
    B[75][5] = [30, "Stelling Lane", "Stelling_Lane"];
    B[76][5] = [30, "Ennitt Square", "Ennitt_Square"];
    B[77][5] = [30, "Kensington Alley", "Kensington_Alley"];
    B[78][5] = [30, "Fenner Walk", "Fenner_Walk"];
    B[79][5] = [28, "Codrington Square School", "Codrington_Square_School"];
    B[70][6] = [30, "Gawen Avenue", "Gawen_Avenue"];
    B[71][6] = [30, "Dolbridge Plaza", "Dolbridge_Plaza"];
    B[72][6] = [6, "Carpark", "Carpark_6%2C72"];
    B[73][6] = [16, "Edghill Hotel", "The_Edghill_Hotel"];
    B[74][6] = [30, "Prye Walk", "Prye_Walk"];
    B[75][6] = [32, "Warehouse", "Warehouse_6%2C75"];
    B[76][6] = [30, "Grinstead Drive", "Grinstead_Drive"];
    B[77][6] = [33, "Wasteland", "Wasteland_6%2C77"];
    B[78][6] = [30, "Morrel Grove", "Morrel_Grove"];
    B[79][6] = [4, "Chicke Bank", "Chicke_Bank"];
    B[70][7] = [30, "Lawrance Way", "Lawrance_Way"];
    B[71][7] = [
      15,
      "St Daniel's Hospital",
      "St._Daniel%27s_Hospital_%28Nixbank%29",
    ];
    B[72][7] = [
      25,
      "Deakin Alley Police Dept",
      "Deakin_Alley_Police_Department",
    ];
    B[73][7] = [11, "Club Shelley", "Club_Shelley_%28Nixbank%29"];
    B[74][7] = [32, "Warehouse", "Warehouse_7%2C74"];
    B[75][7] = [30, "Stewart Road", "Stewart_Road"];
    B[76][7] = [23, "Penning Building", "The_Penning_Building"];
    B[77][7] = [9, "St Eugene's Church", "St._Eugene%27s_Church_%28Nixbank%29"];
    B[78][7] = [30, "Mullins Avenue", "Mullins_Avenue"];
    B[79][7] = [5, "Byfield Building", "The_Byfield_Building"];
    B[70][8] = [17, "Junkyard", "Junkyard_8%2C70"];
    B[71][8] = [31, "Mellish Towers", "Mellish_Towers"];
    B[72][8] = [30, "Pyatt Crescent", "Pyatt_Crescent"];
    B[73][8] = [30, "Meany Avenue", "Meany_Avenue"];
    B[74][8] = [4, "Ripper Bank", "Ripper_Bank"];
    B[75][8] = [33, "Wasteland", "Wasteland_8%2C75"];
    B[76][8] = [30, "Monro Row", "Monro_Row"];
    B[77][8] = [8, "Cemetery", "Cemetery_8%2C77"];
    B[78][8] = [4, "Bissell Bank", "Bissell_Bank"];
    B[79][8] = [24, "Estmond Park", "Estmond_Park"];
    B[70][9] = [12, "Factory", "Factory_9%2C70"];
    B[71][9] = [33, "Wasteland", "Wasteland_9%2C71"];
    B[72][9] = [30, "Poddy Street", "Poddy_Street"];
    B[73][9] = [
      27,
      "Foulkes Place Railway Station",
      "Foulkes_Place_Railway_Station",
    ];
    B[74][9] = [21, "Grandfield Monument", "The_Grandfield_Monument"];
    B[75][9] = [4, "Rossiter Bank", "Rossiter_Bank"];
    B[76][9] = [3, "Evershed Auto Repair", "Evershed_Auto_Repair"];
    B[77][9] = [
      27,
      "Thomson Drive Railway Station",
      "Thomson_Drive_Railway_Station",
    ];
    B[78][9] = [5, "Lettey Building", "The_Lettey_Building"];
    B[79][9] = [23, "Delay Building", "The_Delay_Building"];

    // ------------------------------------------------
    // Pashenton
    // ------------------------------------------------
    B[70][10] = [30, "Bristol Way", "Bristol_Way"];
    B[71][10] = [18, "Norvell Library", "Norvell_Library"];
    B[72][10] = [30, "Hillburn Road", "Hillburn_Road"];
    B[73][10] = [2, "Fearnsides Arms", "The_Fearnsides_Arms"];
    B[74][10] = [16, "Poynter Hotel", "The_Poynter_Hotel"];
    B[75][10] = [30, "Dix Row", "Dix_Row_%28Wykewood%29"];
    B[76][10] = [4, "Crabbe Bank", "Crabbe_Bank"];
    B[77][10] = [24, "Braund Park", "Braund_Park"];
    B[78][10] = [30, "Lawford Lane", "Lawford_Lane"];
    B[79][10] = [
      25,
      "Lavington Crescent Police Dept",
      "Lavington_Crescent_Police_Department",
    ];
    B[70][11] = [4, "Moon Bank", "Moon_Bank"];
    B[71][11] = [18, "Line Library", "Line_Library"];
    B[72][11] = [30, "Kelloway Grove", "Kelloway_Grove_%28Wykewood%29"];
    B[73][11] = [10, "Pretor Cinema", "Pretor_Cinema"];
    B[74][11] = [24, "Samuel Park", "Samuel_Park"];
    B[75][11] = [16, "Paris Motel", "The_Paris_Motel"];
    B[76][11] = [
      15,
      "Josephine General Hospital",
      "Josephine_General_Hospital_%28Wykewood%29",
    ];
    B[77][11] = [24, "Merryweather Park", "Merryweather_Park"];
    B[78][11] = [
      3,
      "Chilcott Auto Repair",
      "Chilcott_Auto_Repair_%28Wykewood%29",
    ];
    B[79][11] = [5, "Fursman Building", "The_Fursman_Building"];
    B[70][12] = [30, "Rudman Boulevard", "Rudman_Boulevard"];
    B[71][12] = [4, "Casson Bank", "Casson_Bank"];
    B[72][12] = [6, "Carpark", "Carpark_12%2C72"];
    B[73][12] = [5, "Godfry Building", "The_Godfry_Building"];
    B[74][12] = [6, "Carpark", "Carpark_12%2C74"];
    B[75][12] = [18, "Mather Library", "Mather_Library"];
    B[76][12] = [
      15,
      "Adalbert General Hospital",
      "Adalbert_General_Hospital_%28Wykewood%29",
    ];
    B[77][12] = [16, "McDonald Motel", "The_McDonald_Motel"];
    B[78][12] = [30, "Haggard Alley", "Haggard_Alley"];
    B[79][12] = [30, "Chaning Drive", "Chaning_Drive"];
    B[70][13] = [
      27,
      "Massey Drive Railway Station",
      "Massey_Drive_Railway_Station",
    ];
    B[71][13] = [12, "Factory", "Factory_13%2C71"];
    B[72][13] = [21, "Boston Monument", "The_Boston_Monument"];
    B[73][13] = [10, "Banger Cinema", "Banger_Cinema"];
    B[74][13] = [30, "Salter Place", "Salter_Place"];
    B[75][13] = [5, "Dufferin Building", "The_Dufferin_Building"];
    B[76][13] = [30, "Ellacott Plaza", "Ellacott_Plaza"];
    B[77][13] = [30, "Willson Place", "Willson_Place"];
    B[78][13] = [10, "Amatt Cinema", "Amatt_Cinema"];
    B[79][13] = [24, "Westway Park", "Westway_Park"];
    B[70][14] = [10, "Frederick Cinema", "Frederick_Cinema"];
    B[71][14] = [2, "Smithfield Arms", "The_Smithfield_Arms"];
    B[72][14] = [
      13,
      "Castleman Walk Fire Station",
      "Castleman_Walk_Fire_Station",
    ];
    B[73][14] = [30, "Semple Plaza", "Semple_Plaza"];
    B[74][14] = [30, "Toller Lane", "Toller_Lane_%28Wykewood%29"];
    B[75][14] = [16, "Skilliter Motel", "The_Skilliter_Motel"];
    B[76][14] = [30, "Smith Boulevard", "Smith_Boulevard"];
    B[77][14] = [30, "Ware Walk", "Ware_Walk_%28Wykewood%29"];
    B[78][14] = [30, "Mudford Walk", "Mudford_Walk"];
    B[79][14] = [17, "Junkyard", "Junkyard_14%2C79"];
    B[70][15] = [6, "Carpark", "Carpark_15%2C70"];
    B[71][15] = [30, "Maul Walk", "Maul_Walk"];
    B[72][15] = [30, "Halberry Lane", "Halberry_Lane"];
    B[73][15] = [30, "Haile Street", "Haile_Street_%28Wykewood%29"];
    B[74][15] = [30, "Rusher Boulevard", "Rusher_Boulevard"];
    B[75][15] = [28, "Garde Drive School", "Garde_Drive_School"];
    B[76][15] = [30, "Wilton Drive", "Wilton_Drive_%28Wykewood%29"];
    B[77][15] = [6, "Carpark", "Carpark_15%2C77"];
    B[78][15] = [28, "Barwood Row School", "Barwood_Row_School"];
    B[79][15] = [
      25,
      "Samborne Walk Police Dept",
      "Samborne_Walk_Police_Department",
    ];
    B[70][16] = [30, "Gilling Lane", "Gilling_Lane"];
    B[71][16] = [5, "Ross Building", "The_Ross_Building"];
    B[72][16] = [9, "St Fabian's Church", "St._Fabian%27s_Church"];
    B[73][16] = [
      27,
      "Spraggon Drive Railway Station",
      "Spraggon_Drive_Railway_Station",
    ];
    B[74][16] = [30, "Bunstone Way", "Bunstone_Way"];
    B[75][16] = [
      9,
      "St Egbert's Church",
      "St._Egbert%27s_Church_%28Wykewood%29",
    ];
    B[76][16] = [22, "Dement Museum", "The_Dement_Museum"];
    B[77][16] = [30, "Townshend Crescent", "Townshend_Crescent"];
    B[78][16] = [28, "Strong Alley School", "Strong_Alley_School"];
    B[79][16] = [30, "Fir Street", "Fir_Street_%28Wykewood%29"];
    B[70][17] = [32, "Warehouse", "Warehouse_17%2C70"];
    B[71][17] = [30, "Adler Boulevard", "Adler_Boulevard"];
    B[72][17] = [8, "Cemetery", "Cemetery_17%2C72"];
    B[73][17] = [32, "Warehouse", "Warehouse_17%2C73"];
    B[74][17] = [2, "Curtis Arms", "The_Curtis_Arms"];
    B[75][17] = [8, "Cemetery", "Cemetery_17%2C75"];
    B[76][17] = [5, "Maguire Building", "The_Maguire_Building"];
    B[77][17] = [30, "Hogue Street", "Hogue_Street_%28Wykewood%29"];
    B[78][17] = [33, "Wasteland", "Wasteland_17%2C78"];
    B[79][17] = [13, "Catcott Row Fire Station", "Catcott_Row_Fire_Station"];
    B[70][18] = [6, "Carpark", "Carpark_18%2C70"];
    B[71][18] = [18, "Martland Library", "Martland_Library"];
    B[72][18] = [6, "Carpark", "Carpark_18%2C72"];
    B[73][18] = [28, "Trott Alley School", "Trott_Alley_School"];
    B[74][18] = [30, "Colmer Street", "Colmer_Street"];
    B[75][18] = [30, "Holt Walk", "Holt_Walk"];
    B[76][18] = [30, "Skuse Crescent", "Skuse_Crescent"];
    B[77][18] = [9, "St Julie's Church", "St._Julie%27s_Church_%28Wykewood%29"];
    B[78][18] = [30, "Ogbourn Way", "Ogbourn_Way"];
    B[79][18] = [30, "Cull Walk", "Cull_Walk"];
    B[70][19] = [30, "Retter Crescent", "Retter_Crescent"];
    B[71][19] = [16, "Quaney Hotel", "The_Quaney_Hotel"];
    B[72][19] = [30, "Pegg Plaza", "Pegg_Plaza"];
    B[73][19] = [5, "Snaydon Building", "The_Snaydon_Building"];
    B[74][19] = [30, "Mallack Walk", "Mallack_Walk_%28Wykewood%29"];
    B[75][19] = [30, "Blight Street", "Blight_Street"];
    B[76][19] = [28, "Oldroyd Avenue School", "Oldroyd_Avenue_School"];
    B[77][19] = [30, "Lawes Way", "Lawes_Way"];
    B[78][19] = [10, "McNamara Cinema", "McNamara_Cinema"];
    B[79][19] = [30, "Defrates Walk", "Defrates_Walk"];

    // ------------------------------------------------
    // Santlerville
    // ------------------------------------------------
    B[70][20] = [24, "Marton Park", "Marton_Park"];
    B[71][20] = [6, "Carpark", "Carpark_20%2C71"];
    B[72][20] = [
      25,
      "Mudford Plaza Police Dept",
      "Mudford_Plaza_Police_Department",
    ];
    B[73][20] = [9, "St Caius's Church", "St._Caius%27s_Church"];
    B[74][20] = [8, "Cemetery", "Cemetery_20%2C74"];
    B[75][20] = [30, "Purchell Road", "Purchell_Road"];
    B[76][20] = [30, "Bertrand Avenue", "Bertrand_Avenue"];
    B[77][20] = [22, "Dommett Museum", "The_Dommett_Museum"];
    B[78][20] = [2, "Lawrie Arms", "The_Lawrie_Arms"];
    B[79][20] = [30, "Rudduck Row", "Rudduck_Row"];
    B[70][21] = [4, "Munckton Bank", "Munckton_Bank"];
    B[71][21] = [33, "Wasteland", "Wasteland_21%2C71"];
    B[72][21] = [24, "Gregory Park", "Gregory_Park"];
    B[73][21] = [5, "Veel Building", "The_Veel_Building"];
    B[74][21] = [33, "Wasteland", "Wasteland_21%2C74"];
    B[75][21] = [4, "Linck Bank", "Linck_Bank"];
    B[76][21] = [30, "Cridlin Avenue", "Cridlin_Avenue"];
    B[77][21] = [28, "Lutterell Place School", "Lutterell_Place_School"];
    B[78][21] = [21, "Simkins Monument", "The_Simkins_Monument"];
    B[79][21] = [6, "Carpark", "Carpark_21%2C79"];
    B[70][22] = [30, "Slocombe Street", "Slocombe_Street"];
    B[71][22] = [
      13,
      "Deverell Walk Fire Station",
      "Deverell_Walk_Fire_Station",
    ];
    B[72][22] = [31, "Obern Towers", "Obern_Towers_%28South_Blythville%29"];
    B[73][22] = [30, "Galbraith Lane", "Galbraith_Lane"];
    B[74][22] = [10, "Bennet Cinema", "Bennet_Cinema"];
    B[75][22] = [5, "Crawley Building", "The_Crawley_Building"];
    B[76][22] = [30, "Park Walk", "Park_Walk"];
    B[77][22] = [30, "Brownsey Alley", "Brownsey_Alley"];
    B[78][22] = [30, "Ridley Crescent", "Ridley_Crescent"];
    B[79][22] = [4, "Sankey Bank", "Sankey_Bank"];
    B[70][23] = [3, "Atway Auto Repair", "Atway_Auto_Repair"];
    B[71][23] = [16, "Honeyfield Motel", "The_Honeyfield_Motel"];
    B[72][23] = [18, "Dabinett Library", "Dabinett_Library"];
    B[73][23] = [30, "Bobbett Street", "Bobbett_Street"];
    B[74][23] = [30, "Rome Grove", "Rome_Grove"];
    B[75][23] = [16, "Tomkyns Motel", "The_Tomkyns_Motel"];
    B[76][23] = [23, "Nich Building", "The_Nich_Building"];
    B[77][23] = [30, "Marshalsea Plaza", "Marshalsea_Plaza"];
    B[78][23] = [30, "Morton Square", "Morton_Square"];
    B[79][23] = [30, "Burdwood Alley", "Burdwood_Alley"];
    B[70][24] = [30, "Elson Way", "Elson_Way"];
    B[71][24] = [31, "Busfield Towers", "Busfield_Towers"];
    B[72][24] = [32, "Warehouse", "Warehouse_24%2C72"];
    B[73][24] = [16, "Rutter Motel", "The_Rutter_Motel"];
    B[74][24] = [18, "Dingley Library", "Dingley_Library"];
    B[75][24] = [21, "Seager Monument", "The_Seager_Monument"];
    B[76][24] = [30, "Doswell Lane", "Doswell_Lane_%28South_Blythville%29"];
    B[77][24] = [21, "Harington Monument", "The_Harington_Monument"];
    B[78][24] = [30, "Bastable Alley", "Bastable_Alley_%28South_Blythville%29"];
    B[79][24] = [33, "Wasteland", "Wasteland_24%2C79"];
    B[70][25] = [
      5,
      "Panes Building",
      "The_Panes_Building_%28South_Blythville%29",
    ];
    B[71][25] = [3, "Porcher Auto Repair", "Porcher_Auto_Repair"];
    B[72][25] = [22, "Moodborn Museum", "The_Moodborn_Museum"];
    B[73][25] = [3, "Brymer Auto Repair", "Brymer_Auto_Repair"];
    B[74][25] = [17, "Junkyard", "Junkyard_25%2C74"];
    B[75][25] = [18, "Shiplow Library", "Shiplow_Library"];
    B[76][25] = [
      25,
      "Lovelock Plaza Police Dept",
      "Lovelock_Plaza_Police_Department",
    ];
    B[77][25] = [33, "Wasteland", "Wasteland_25%2C77"];
    B[78][25] = [30, "Fearey Avenue", "Fearey_Avenue"];
    B[79][25] = [11, "Club Balchin", "Club_Balchin"];
    B[70][26] = [23, "Hazeldine Building", "The_Hazeldine_Building"];
    B[71][26] = [5, "Lawrance Building", "The_Lawrance_Building"];
    B[72][26] = [30, "Gee Avenue", "Gee_Avenue"];
    B[73][26] = [4, "Harnap Bank", "Harnap_Bank"];
    B[74][26] = [
      9,
      "St Ethelbert's Church",
      "St._Ethelbert%27s_Church_%28South_Blythville%29",
    ];
    B[75][26] = [31, "Isgar Towers", "Isgar_Towers"];
    B[76][26] = [30, "Folaquier Place", "Folaquier_Place"];
    B[77][26] = [30, "Gibb Road", "Gibb_Road"];
    B[78][26] = [30, "Matcham Way", "Matcham_Way"];
    B[79][26] = [30, "Nurton Avenue", "Nurton_Avenue"];
    B[70][27] = [30, "Woolfry Row", "Woolfry_Row"];
    B[71][27] = [30, "Ebbutt Square", "Ebbutt_Square"];
    B[72][27] = [4, "Land Bank", "Land_Bank"];
    B[73][27] = [24, "Sedgbeer Park", "Sedgbeer_Park"];
    B[74][27] = [23, "Preston Building", "The_Preston_Building"];
    B[75][27] = [11, "Club Penfold", "Club_Penfold"];
    B[76][27] = [
      25,
      "Gotch Plaza Police Dept",
      "Gotch_Plaza_Police_Department",
    ];
    B[77][27] = [33, "Wasteland", "Wasteland_27%2C77"];
    B[78][27] = [30, "Staddon Crescent", "Staddon_Crescent"];
    B[79][27] = [30, "Shinner Row", "Shinner_Row"];
    B[70][28] = [30, "Lenthall Plaza", "Lenthall_Plaza"];
    B[71][28] = [10, "Robins Cinema", "Robins_Cinema"];
    B[72][28] = [30, "Driscoll Avenue", "Driscoll_Avenue"];
    B[73][28] = [30, "Studley Row", "Studley_Row"];
    B[74][28] = [11, "Club Doran", "Club_Doran"];
    B[75][28] = [30, "Somerside Plaza", "Somerside_Plaza"];
    B[76][28] = [19, "Marven Mall", "Marven_Mall"];
    B[77][28] = [19, "Marven Mall", "Marven_Mall"];
    B[78][28] = [
      27,
      "Voules Square Railway Station",
      "Voules_Square_Railway_Station",
    ];
    B[79][28] = [2, "Brinklow Arms", "The_Brinklow_Arms"];
    B[70][29] = [10, "Smallwood Cinema", "Smallwood_Cinema"];
    B[71][29] = [30, "Athay Boulevard", "Athay_Boulevard"];
    B[72][29] = [
      23,
      "Pippard Building",
      "The_Pippard_Building_%28South_Blythville%29",
    ];
    B[73][29] = [10, "Mear Cinema", "Mear_Cinema"];
    B[74][29] = [5, "Brely Building", "The_Brely_Building"];
    B[75][29] = [24, "Pattison Park", "Pattison_Park"];
    B[76][29] = [19, "Marven Mall", "Marven_Mall"];
    B[77][29] = [19, "Marven Mall", "Marven_Mall"];
    B[78][29] = [30, "Duckett Lane", "Duckett_Lane"];
    B[79][29] = [12, "Factory", "Factory_29%2C79"];

    // ------------------------------------------------
    // Heytown
    // ------------------------------------------------
    B[70][30] = [24, "Tribe Park", "Tribe_Park"];
    B[71][30] = [32, "Warehouse", "Warehouse_30%2C71"];
    B[72][30] = [30, "Nicols Avenue", "Nicols_Avenue"];
    B[73][30] = [21, "Anderson Monument", "The_Anderson_Monument"];
    B[74][30] = [30, "Hayes Plaza", "Hayes_Plaza"];
    B[75][30] = [30, "Sloper Plaza", "Sloper_Plaza"];
    B[76][30] = [9, "St Holy's Church", "St._Holy%27s_Church_%28Greentown%29"];
    B[77][30] = [32, "Warehouse", "Warehouse_30%2C77"];
    B[78][30] = [12, "Factory", "Factory_30%2C78"];
    B[79][30] = [5, "Storke Building", "The_Storke_Building"];
    B[70][31] = [33, "Wasteland", "Wasteland_31%2C70"];
    B[71][31] = [
      15,
      "St George's Hospital",
      "St._George%27s_Hospital_%28Greentown%29",
    ];
    B[72][31] = [30, "Seeney Row", "Seeney_Row"];
    B[73][31] = [22, "Deed Museum", "The_Deed_Museum"];
    B[74][31] = [2, "Turrell Arms", "The_Turrell_Arms"];
    B[75][31] = [33, "Wasteland", "Wasteland_31%2C75"];
    B[76][31] = [30, "Seaman Boulevard", "Seaman_Boulevard_%28Greentown%29"];
    B[77][31] = [9, "St Simeon's Church", "St._Simeon%27s_Church"];
    B[78][31] = [32, "Warehouse", "Warehouse_31%2C78"];
    B[79][31] = [4, "Puckle Bank", "Puckle_Bank"];
    B[70][32] = [24, "Denton Park", "Denton_Park"];
    B[71][32] = [30, "Blomberg Drive", "Blomberg_Drive"];
    B[72][32] = [30, "Churchous Avenue", "Churchous_Avenue_%28Greentown%29"];
    B[73][32] = [30, "Ewerne Lane", "Ewerne_Lane"];
    B[74][32] = [
      27,
      "Milton Drive Railway Station",
      "Milton_Drive_Railway_Station",
    ];
    B[75][32] = [24, "Schonlau Park", "Schonlau_Park"];
    B[76][32] = [2, "Chafy Arms", "The_Chafy_Arms"];
    B[77][32] = [30, "Newland Crescent", "Newland_Crescent"];
    B[78][32] = [22, "Maudslay Museum", "The_Maudslay_Museum"];
    B[79][32] = [13, "Branagan Row Fire Station", "Branagan_Row_Fire_Station"];
    B[70][33] = [32, "Warehouse", "Warehouse_33%2C70"];
    B[71][33] = [6, "Carpark", "Carpark_33%2C71"];
    B[72][33] = [30, "English Boulevard", "English_Boulevard"];
    B[73][33] = [11, "Club Harnap", "Club_Harnap"];
    B[74][33] = [30, "Llewellin Alley", "Llewellin_Alley"];
    B[75][33] = [30, "Morey Alley", "Morey_Alley"];
    B[76][33] = [33, "Wasteland", "Wasteland_33%2C76"];
    B[77][33] = [4, "Olsen Bank", "Olsen_Bank"];
    B[78][33] = [
      9,
      "St Dionysius's Church",
      "St._Dionysius%27s_Church_%28Greentown%29",
    ];
    B[79][33] = [25, "Eley Way Police Dept", "Eley_Way_Police_Department"];
    B[70][34] = [33, "Wasteland", "Wasteland_34%2C70"];
    B[71][34] = [25, "Dixon Way Police Dept", "Dixon_Way_Police_Department"];
    B[72][34] = [30, "Teasdale Plaza", "Teasdale_Plaza"];
    B[73][34] = [28, "Mist Alley School", "Mist_Alley_School"];
    B[74][34] = [31, "Lerwill Towers", "Lerwill_Towers"];
    B[75][34] = [30, "Borland Square", "Borland_Square"];
    B[76][34] = [30, "North Square", "North_Square"];
    B[77][34] = [32, "Warehouse", "Warehouse_34%2C77"];
    B[78][34] = [
      9,
      "St Etheldreda's Church",
      "St._Etheldreda%27s_Church_%28Greentown%29",
    ];
    B[79][34] = [30, "Tomlin Crescent", "Tomlin_Crescent"];
    B[70][35] = [30, "Bellhouse Alley", "Bellhouse_Alley"];
    B[71][35] = [30, "Skilliter Way", "Skilliter_Way"];
    B[72][35] = [11, "Club Antell", "Club_Antell"];
    B[73][35] = [28, "Whitcherell Walk School", "Whitcherell_Walk_School"];
    B[74][35] = [
      13,
      "Polwhiele Way Fire Station",
      "Polwhiele_Way_Fire_Station",
    ];
    B[75][35] = [28, "Pankhurst Alley School", "Pankhurst_Alley_School"];
    B[76][35] = [30, "Hemburrow Square", "Hemburrow_Square"];
    B[77][35] = [
      27,
      "Ainslie Row Railway Station",
      "Ainslie_Row_Railway_Station",
    ];
    B[78][35] = [9, "St Gelasius's Church", "St._Gelasius%27s_Church"];
    B[79][35] = [30, "Dibsdall Grove", "Dibsdall_Grove"];
    B[70][36] = [5, "Ayling Building", "The_Ayling_Building"];
    B[71][36] = [30, "Wicks Plaza", "Wicks_Plaza"];
    B[72][36] = [30, "Hathaway Drive", "Hathaway_Drive"];
    B[73][36] = [30, "Seekins Row", "Seekins_Row"];
    B[74][36] = [2, "Bannister Arms", "The_Bannister_Arms"];
    B[75][36] = [18, "Cleal Library", "Cleal_Library"];
    B[76][36] = [16, "Heddington Motel", "The_Heddington_Motel"];
    B[77][36] = [30, "Hames Drive", "Hames_Drive"];
    B[78][36] = [30, "Daley Street", "Daley_Street"];
    B[79][36] = [6, "Carpark", "Carpark_36%2C79"];
    B[70][37] = [30, "Perryman Grove", "Perryman_Grove"];
    B[71][37] = [21, "Lynch Monument", "The_Lynch_Monument"];
    B[72][37] = [4, "Mounty Bank", "Mounty_Bank"];
    B[73][37] = [5, "Becky Building", "The_Becky_Building"];
    B[74][37] = [33, "Wasteland", "Wasteland_37%2C74"];
    B[75][37] = [
      13,
      "Weightman Boulevard Fire Station",
      "Weightman_Boulevard_Fire_Station",
    ];
    B[76][37] = [16, "Bruton Hotel", "The_Bruton_Hotel"];
    B[77][37] = [33, "Wasteland", "Wasteland_37%2C77"];
    B[78][37] = [22, "Cornelius Museum", "The_Cornelius_Museum"];
    B[79][37] = [2, "Francois Arms", "The_Francois_Arms"];
    B[70][38] = [
      25,
      "Rounds Boulevard Police Dept",
      "Rounds_Boulevard_Police_Department",
    ];
    B[71][38] = [30, "Whithed Row", "Whithed_Row"];
    B[72][38] = [
      9,
      "St Sixtus's Church",
      "St._Sixtus%27s_Church_%28Greentown%29",
    ];
    B[73][38] = [8, "Cemetery", "Cemetery_38%2C73"];
    B[74][38] = [30, "Riggs Road", "Riggs_Road"];
    B[75][38] = [30, "Waddington Way", "Waddington_Way"];
    B[76][38] = [30, "Frekee Grove", "Frekee_Grove"];
    B[77][38] = [30, "Staples Road", "Staples_Road"];
    B[78][38] = [
      27,
      "Stroud Grove Railway Station",
      "Stroud_Grove_Railway_Station",
    ];
    B[79][38] = [
      27,
      "Dadson Grove Railway Station",
      "Dadson_Grove_Railway_Station",
    ];
    B[70][39] = [30, "Swanton Row", "Swanton_Row"];
    B[71][39] = [30, "Lush Lane", "Lush_Lane"];
    B[72][39] = [21, "Colyer Monument", "The_Colyer_Monument"];
    B[73][39] = [30, "Morle Row", "Morle_Row"];
    B[74][39] = [30, "Cassell Way", "Cassell_Way"];
    B[75][39] = [30, "Marcary Way", "Marcary_Way"];
    B[76][39] = [30, "Tyley Boulevard", "Tyley_Boulevard"];
    B[77][39] = [21, "Febrey Monument", "The_Febrey_Monument"];
    B[78][39] = [3, "Kerswill Auto Repair", "Kerswill_Auto_Repair"];
    B[79][39] = [12, "Factory", "Factory_39%2C79"];

    // ------------------------------------------------
    // Peppardville
    // ------------------------------------------------
    B[70][40] = [12, "Factory", "Factory_40%2C70"];
    B[71][40] = [10, "Bragge Cinema", "Bragge_Cinema"];
    B[72][40] = [5, "Bruford Building", "The_Bruford_Building"];
    B[73][40] = [
      15,
      "St Matheos's Hospital",
      "St._Matheos%27s_Hospital_%28Tapton%29",
    ];
    B[74][40] = [30, "Millbanks Way", "Millbanks_Way"];
    B[75][40] = [
      13,
      "Sherston Grove Fire Station",
      "Sherston_Grove_Fire_Station",
    ];
    B[76][40] = [30, "Prankhard Plaza", "Prankhard_Plaza"];
    B[77][40] = [12, "Factory", "Factory_40%2C77"];
    B[78][40] = [30, "Laverton Walk", "Laverton_Walk"];
    B[79][40] = [16, "Ikiff Motel", "The_Ikiff_Motel"];
    B[70][41] = [5, "Stoate Building", "The_Stoate_Building"];
    B[71][41] = [5, "Streets Building", "The_Streets_Building"];
    B[72][41] = [5, "Honeybone Building", "The_Honeybone_Building"];
    B[73][41] = [24, "Rhodes Park", "Rhodes_Park"];
    B[74][41] = [5, "Boobyer Building", "The_Boobyer_Building"];
    B[75][41] = [33, "Wasteland", "Wasteland_41%2C75"];
    B[76][41] = [12, "Factory", "Factory_41%2C76"];
    B[77][41] = [30, "Fearns Grove", "Fearns_Grove"];
    B[78][41] = [23, "Chaffin Building", "The_Chaffin_Building"];
    B[79][41] = [21, "Waggott Monument", "The_Waggott_Monument"];
    B[70][42] = [12, "Factory", "Factory_42%2C70"];
    B[71][42] = [30, "Clelford Square", "Clelford_Square"];
    B[72][42] = [30, "Attkings Square", "Attkings_Square"];
    B[73][42] = [
      27,
      "Cullingford Road Railway Station",
      "Cullingford_Road_Railway_Station",
    ];
    B[74][42] = [30, "Gilson Plaza", "Gilson_Plaza"];
    B[75][42] = [4, "Zuryk Bank", "Zuryk_Bank"];
    B[76][42] = [30, "Clay Place", "Clay_Place"];
    B[77][42] = [30, "Kenworthy Plaza", "Kenworthy_Plaza"];
    B[78][42] = [30, "Hills Drive", "Hills_Drive"];
    B[79][42] = [30, "Humphreys Boulevard", "Humphreys_Boulevard"];
    B[70][43] = [30, "Moxham Grove", "Moxham_Grove"];
    B[71][43] = [30, "Gawen Grove", "Gawen_Grove"];
    B[72][43] = [
      15,
      "Swithun General Hospital",
      "Swithun_General_Hospital_%28Tapton%29",
    ];
    B[73][43] = [30, "Durand Drive", "Durand_Drive_%28Tapton%29"];
    B[74][43] = [5, "Sayce Building", "The_Sayce_Building"];
    B[75][43] = [5, "Crang Building", "The_Crang_Building"];
    B[76][43] = [21, "Passant Monument", "The_Passant_Monument"];
    B[77][43] = [30, "Bonfield Alley", "Bonfield_Alley"];
    B[78][43] = [30, "Clanfield Boulevard", "Clanfield_Boulevard"];
    B[79][43] = [11, "Club Townsend", "Club_Townsend"];
    B[70][44] = [4, "Pearcy Bank", "Pearcy_Bank"];
    B[71][44] = [24, "Dineen Park", "Dineen_Park"];
    B[72][44] = [31, "Earle Towers", "Earle_Towers"];
    B[73][44] = [30, "Hibbert Place", "Hibbert_Place"];
    B[74][44] = [21, "Shartman Monument", "The_Shartman_Monument"];
    B[75][44] = [30, "Brimacombe Grove", "Brimacombe_Grove"];
    B[76][44] = [30, "Beastall Drive", "Beastall_Drive"];
    B[77][44] = [9, "St Piran's Church", "St._Piran%27s_Church_%28Tapton%29"];
    B[78][44] = [30, "Garven Drive", "Garven_Drive"];
    B[79][44] = [11, "Club Broadbelt", "Club_Broadbelt"];
    B[70][45] = [21, "Merewether Monument", "The_Merewether_Monument"];
    B[71][45] = [30, "Chetwind Lane", "Chetwind_Lane"];
    B[72][45] = [30, "Thomson Lane", "Thomson_Lane"];
    B[73][45] = [30, "Longmate Walk", "Longmate_Walk"];
    B[74][45] = [2, "Bainton Arms", "The_Bainton_Arms"];
    B[75][45] = [32, "Warehouse", "Warehouse_45%2C75"];
    B[76][45] = [4, "Osbert Bank", "Osbert_Bank"];
    B[77][45] = [30, "Snelgrove Way", "Snelgrove_Way"];
    B[78][45] = [24, "Merewether Park", "Merewether_Park"];
    B[79][45] = [5, "Winwright Building", "The_Winwright_Building"];
    B[70][46] = [30, "Marston Way", "Marston_Way"];
    B[71][46] = [30, "Reid Square", "Reid_Square"];
    B[72][46] = [5, "Wagner Building", "The_Wagner_Building_%28Tapton%29"];
    B[73][46] = [
      15,
      "St Luke's Hospital",
      "St._Luke%27s_Hospital_%28Tapton%29",
    ];
    B[74][46] = [
      13,
      "Morrhall Drive Fire Station",
      "Morrhall_Drive_Fire_Station",
    ];
    B[75][46] = [30, "Dix Place", "Dix_Place"];
    B[76][46] = [32, "Warehouse", "Warehouse_46%2C76"];
    B[77][46] = [9, "St Emelia's Church", "St._Emelia%27s_Church_%28Tapton%29"];
    B[78][46] = [3, "Templeman Auto Repair", "Templeman_Auto_Repair"];
    B[79][46] = [22, "Lewen Museum", "The_Lewen_Museum"];
    B[70][47] = [32, "Warehouse", "Warehouse_47%2C70"];
    B[71][47] = [5, "Osler Building", "The_Osler_Building"];
    B[72][47] = [
      13,
      "Whittaker Boulevard Fire Station",
      "Whittaker_Boulevard_Fire_Station",
    ];
    B[73][47] = [22, "Byfield Museum", "The_Byfield_Museum"];
    B[74][47] = [30, "Brookman Alley", "Brookman_Alley"];
    B[75][47] = [31, "Sabine Towers", "Sabine_Towers"];
    B[76][47] = [24, "Compton Park", "Compton_Park"];
    B[77][47] = [5, "Kene Building", "The_Kene_Building"];
    B[78][47] = [
      13,
      "Priestly Street Fire Station",
      "Priestly_Street_Fire_Station",
    ];
    B[79][47] = [6, "Carpark", "Carpark_47%2C79"];
    B[70][48] = [9, "St Paul's Church", "St._Paul%27s_Church_%28Tapton%29"];
    B[71][48] = [30, "Larkins Square", "Larkins_Square"];
    B[72][48] = [30, "Kentisber Plaza", "Kentisber_Plaza"];
    B[73][48] = [24, "Douglass Park", "Douglass_Park"];
    B[74][48] = [25, "Haag Plaza Police Dept", "Haag_Plaza_Police_Department"];
    B[75][48] = [30, "Florence Lane", "Florence_Lane"];
    B[76][48] = [3, "Beville Auto Repair", "Beville_Auto_Repair"];
    B[77][48] = [30, "Pester Square", "Pester_Square"];
    B[78][48] = [3, "Triggs Auto Repair", "Triggs_Auto_Repair"];
    B[79][48] = [30, "Tutcher Place", "Tutcher_Place"];
    B[70][49] = [5, "Jenys Building", "The_Jenys_Building"];
    B[71][49] = [6, "Carpark", "Carpark_49%2C71"];
    B[72][49] = [30, "Bythesea Drive", "Bythesea_Drive"];
    B[73][49] = [28, "Cread Boulevard School", "Cread_Boulevard_School"];
    B[74][49] = [30, "Hobbs Row", "Hobbs_Row"];
    B[75][49] = [30, "Gullifer Walk", "Gullifer_Walk"];
    B[76][49] = [3, "Rugg Auto Repair", "Rugg_Auto_Repair"];
    B[77][49] = [18, "Hayte Library", "Hayte_Library"];
    B[78][49] = [
      9,
      "St Cyprian's Church",
      "St._Cyprian%27s_Church_%28Tapton%29",
    ];
    B[79][49] = [16, "Deny Hotel", "The_Deny_Hotel_%28Tapton%29"];

    // ------------------------------------------------
    // Edgecombe
    // ------------------------------------------------
    B[70][50] = [10, "Isherwood Cinema", "Isherwood_Cinema"];
    B[71][50] = [30, "Rodd Square", "Rodd_Square"];
    B[72][50] = [31, "Sanford Towers", "Sanford_Towers"];
    B[73][50] = [30, "Cave Walk", "Cave_Walk"];
    B[74][50] = [3, "Bramwell Auto Repair", "Bramwell_Auto_Repair"];
    B[75][50] = [5, "Dobbs Building", "The_Dobbs_Building"];
    B[76][50] = [21, "Rawle Monument", "The_Rawle_Monument"];
    B[77][50] = [30, "Cridlin Drive", "Cridlin_Drive"];
    B[78][50] = [30, "Cayley Walk", "Cayley_Walk"];
    B[79][50] = [4, "Carpendale Bank", "Carpendale_Bank"];
    B[70][51] = [30, "Haynes Square", "Haynes_Square"];
    B[71][51] = [30, "Tipper Crescent", "Tipper_Crescent"];
    B[72][51] = [28, "Beatty Boulevard School", "Beatty_Boulevard_School"];
    B[73][51] = [30, "Crampton Road", "Crampton_Road"];
    B[74][51] = [30, "Ware Walk", "Ware_Walk_%28Kempsterbank%29"];
    B[75][51] = [12, "Factory", "Factory_51%2C75"];
    B[76][51] = [
      27,
      "Pattemore Grove Railway Station",
      "Pattemore_Grove_Railway_Station",
    ];
    B[77][51] = [31, "Crawford Towers", "Crawford_Towers"];
    B[78][51] = [30, "Nunn Alley", "Nunn_Alley"];
    B[79][51] = [30, "Cundham Drive", "Cundham_Drive_%28Kempsterbank%29"];
    B[70][52] = [12, "Factory", "Factory_52%2C70"];
    B[71][52] = [17, "Junkyard", "Junkyard_52%2C71"];
    B[72][52] = [28, "Spreat Alley School", "Spreat_Alley_School"];
    B[73][52] = [2, "Bearns Arms", "The_Bearns_Arms"];
    B[74][52] = [30, "Furneaux Lane", "Furneaux_Lane"];
    B[75][52] = [17, "Junkyard", "Junkyard_52%2C75"];
    B[76][52] = [30, "Mundy Alley", "Mundy_Alley"];
    B[77][52] = [31, "Whittern Towers", "Whittern_Towers"];
    B[78][52] = [30, "Cheal Lane", "Cheal_Lane_%28Kempsterbank%29"];
    B[79][52] = [13, "Purt Walk Fire Station", "Purt_Walk_Fire_Station"];
    B[70][53] = [30, "Elliott Grove", "Elliott_Grove"];
    B[71][53] = [2, "Shortland Arms", "The_Shortland_Arms"];
    B[72][53] = [
      15,
      "Neot General Hospital",
      "Neot_General_Hospital_%28Kempsterbank%29",
    ];
    B[73][53] = [31, "McNeil Towers", "McNeil_Towers"];
    B[74][53] = [30, "Doran Square", "Doran_Square"];
    B[75][53] = [11, "Club Blackburn", "Club_Blackburn"];
    B[76][53] = [33, "Wasteland", "Wasteland_53%2C76"];
    B[77][53] = [33, "Wasteland", "Wasteland_53%2C77"];
    B[78][53] = [32, "Warehouse", "Warehouse_53%2C78"];
    B[79][53] = [30, "Keppel Boulevard", "Keppel_Boulevard"];
    B[70][54] = [30, "Boorman Walk", "Boorman_Walk"];
    B[71][54] = [
      15,
      "St George's Hospital",
      "St._George%27s_Hospital_%28Kempsterbank%29",
    ];
    B[72][54] = [21, "Kitchen Monument", "The_Kitchen_Monument"];
    B[73][54] = [10, "Courage Cinema", "Courage_Cinema"];
    B[74][54] = [30, "Tyack Plaza", "Tyack_Plaza"];
    B[75][54] = [13, "Penni Drive Fire Station", "Penni_Drive_Fire_Station"];
    B[76][54] = [
      25,
      "Barnerd Way Police Dept",
      "Barnerd_Way_Police_Department",
    ];
    B[77][54] = [6, "Carpark", "Carpark_54%2C77"];
    B[78][54] = [24, "Bant Park", "Bant_Park"];
    B[79][54] = [11, "Club Tremlett", "Club_Tremlett"];
    B[70][55] = [16, "Vigors Motel", "The_Vigors_Motel"];
    B[71][55] = [5, "Norwood Building", "The_Norwood_Building"];
    B[72][55] = [30, "Laimbeer Plaza", "Laimbeer_Plaza"];
    B[73][55] = [
      13,
      "Barnett Boulevard Fire Station",
      "Barnett_Boulevard_Fire_Station",
    ];
    B[74][55] = [32, "Warehouse", "Warehouse_55%2C74"];
    B[75][55] = [32, "Warehouse", "Warehouse_55%2C75"];
    B[76][55] = [30, "Boggis Avenue", "Boggis_Avenue_%28Kempsterbank%29"];
    B[77][55] = [30, "Pipe Plaza", "Pipe_Plaza"];
    B[78][55] = [18, "Rowson Library", "Rowson_Library"];
    B[79][55] = [10, "Wawer Cinema", "Wawer_Cinema"];
    B[70][56] = [
      15,
      "St Matheos's Hospital",
      "St._Matheos%27s_Hospital_%28Kempsterbank%29",
    ];
    B[71][56] = [30, "Hensler Walk", "Hensler_Walk"];
    B[72][56] = [11, "Club Crook", "Club_Crook"];
    B[73][56] = [15, "Titus General Hospital", "Titus_General_Hospital"];
    B[74][56] = [23, "Bornard Building", "The_Bornard_Building"];
    B[75][56] = [23, "Jillard Building", "The_Jillard_Building"];
    B[76][56] = [
      15,
      "Julie General Hospital",
      "Julie_General_Hospital_%28Kempsterbank%29",
    ];
    B[77][56] = [30, "Southall Place", "Southall_Place"];
    B[78][56] = [30, "Otto Square", "Otto_Square"];
    B[79][56] = [30, "Alsoop Avenue", "Alsoop_Avenue"];
    B[70][57] = [30, "Minchington Crescent", "Minchington_Crescent"];
    B[71][57] = [21, "Kilminster Monument", "The_Kilminster_Monument"];
    B[72][57] = [
      15,
      "St Ferreol's Hospital",
      "St._Ferreol%27s_Hospital_%28Kempsterbank%29",
    ];
    B[73][57] = [13, "Nunn Row Fire Station", "Nunn_Row_Fire_Station"];
    B[74][57] = [17, "Junkyard", "Junkyard_57%2C74"];
    B[75][57] = [5, "Whitenoll Building", "The_Whitenoll_Building"];
    B[76][57] = [30, "Ebbutt Road", "Ebbutt_Road"];
    B[77][57] = [30, "Firth Alley", "Firth_Alley"];
    B[78][57] = [4, "Styles Bank", "Styles_Bank"];
    B[79][57] = [33, "Wasteland", "Wasteland_57%2C79"];
    B[70][58] = [30, "Hosken Crescent", "Hosken_Crescent"];
    B[71][58] = [30, "Leader Avenue", "Leader_Avenue"];
    B[72][58] = [30, "Chalk Street", "Chalk_Street"];
    B[73][58] = [4, "Byewell Bank", "Byewell_Bank"];
    B[74][58] = [30, "Barne Place", "Barne_Place"];
    B[75][58] = [
      25,
      "Burdett Way Police Dept",
      "Burdett_Way_Police_Department",
    ];
    B[76][58] = [17, "Junkyard", "Junkyard_58%2C76"];
    B[77][58] = [33, "Wasteland", "Wasteland_58%2C77"];
    B[78][58] = [30, "Wheaton Square", "Wheaton_Square_%28Kempsterbank%29"];
    B[79][58] = [24, "Galloway Park", "Galloway_Park"];
    B[70][59] = [30, "Hook Avenue", "Hook_Avenue_%28Kempsterbank%29"];
    B[71][59] = [30, "Knapman Row", "Knapman_Row"];
    B[72][59] = [30, "Huckle Way", "Huckle_Way"];
    B[73][59] = [30, "Sheldrake Road", "Sheldrake_Road"];
    B[74][59] = [33, "Wasteland", "Wasteland_59%2C74"];
    B[75][59] = [30, "Jenys Place", "Jenys_Place"];
    B[76][59] = [18, "Rolle Library", "Rolle_Library"];
    B[77][59] = [5, "Dike Building", "The_Dike_Building"];
    B[78][59] = [
      9,
      "St Luke's Church",
      "St._Luke%27s_Church_%28Kempsterbank%29",
    ];
    B[79][59] = [8, "Cemetery", "Cemetery_59%2C79"];

    // ------------------------------------------------
    // Crowbank
    // ------------------------------------------------
    B[70][60] = [
      9,
      "St Danilo's Church",
      "St._Danilo%27s_Church_%28Wray_Heights%29",
    ];
    B[71][60] = [30, "Bewsey Lane", "Bewsey_Lane"];
    B[72][60] = [3, "Jukes Auto Repair", "Jukes_Auto_Repair"];
    B[73][60] = [33, "Wasteland", "Wasteland_60%2C73"];
    B[74][60] = [33, "Wasteland", "Wasteland_60%2C74"];
    B[75][60] = [
      27,
      "Norris Square Railway Station",
      "Norris_Square_Railway_Station",
    ];
    B[76][60] = [5, "Uncles Building", "The_Uncles_Building"];
    B[77][60] = [30, "Lerwill Square", "Lerwill_Square"];
    B[78][60] = [17, "Junkyard", "Junkyard_60%2C78"];
    B[79][60] = [22, "Sonven Museum", "The_Sonven_Museum"];
    B[70][61] = [10, "Whitchurch Cinema", "Whitchurch_Cinema"];
    B[71][61] = [8, "Cemetery", "Cemetery_61%2C71"];
    B[72][61] = [5, "Setter Building", "The_Setter_Building"];
    B[73][61] = [
      25,
      "Hudson Place Police Dept",
      "Hudson_Place_Police_Department",
    ];
    B[74][61] = [28, "Hocknell Way School", "Hocknell_Way_School"];
    B[75][61] = [
      30,
      "Whitemore Boulevard",
      "Whitemore_Boulevard_%28Wray_Heights%29",
    ];
    B[76][61] = [30, "Notton Avenue", "Notton_Avenue"];
    B[77][61] = [28, "Pyne Crescent School", "Pyne_Crescent_School"];
    B[78][61] = [5, "Pincott Building", "The_Pincott_Building"];
    B[79][61] = [23, "Darnell Building", "The_Darnell_Building"];
    B[70][62] = [
      5,
      "Bourder Building",
      "The_Bourder_Building_%28Wray_Heights%29",
    ];
    B[71][62] = [30, "Fairclough Drive", "Fairclough_Drive"];
    B[72][62] = [3, "Lewyes Auto Repair", "Lewyes_Auto_Repair"];
    B[73][62] = [5, "Hickey Building", "The_Hickey_Building"];
    B[74][62] = [16, "Counter Motel", "The_Counter_Motel"];
    B[75][62] = [30, "Keirle Walk", "Keirle_Walk"];
    B[76][62] = [
      15,
      "St Wolfgang's Hospital",
      "St._Wolfgang%27s_Hospital_%28Wray_Heights%29",
    ];
    B[77][62] = [10, "Bailey Cinema", "Bailey_Cinema"];
    B[78][62] = [18, "Eason Library", "Eason_Library_%28Wray_Heights%29"];
    B[79][62] = [15, "St Hilarion's Hospital", "St._Hilarion%27s_Hospital"];
    B[70][63] = [4, "Beagly Bank", "Beagly_Bank"];
    B[71][63] = [24, "Turnock Park", "Turnock_Park"];
    B[72][63] = [6, "Carpark", "Carpark_63%2C72"];
    B[73][63] = [3, "Diaper Auto Repair", "Diaper_Auto_Repair"];
    B[74][63] = [30, "Standlick Walk", "Standlick_Walk"];
    B[75][63] = [31, "Silvey Towers", "Silvey_Towers"];
    B[76][63] = [28, "Domet Row School", "Domet_Row_School"];
    B[77][63] = [5, "Willment Building", "The_Willment_Building"];
    B[78][63] = [30, "Last Road", "Last_Road"];
    B[79][63] = [3, "Weeks Auto Repair", "Weeks_Auto_Repair"];
    B[70][64] = [18, "Blaxall Library", "Blaxall_Library"];
    B[71][64] = [23, "Fram Building", "The_Fram_Building"];
    B[72][64] = [30, "Trivola Street", "Trivola_Street"];
    B[73][64] = [30, "Clevely Way", "Clevely_Way"];
    B[74][64] = [5, "Golde Building", "The_Golde_Building"];
    B[75][64] = [10, "Colborne Cinema", "Colborne_Cinema"];
    B[76][64] = [
      25,
      "Brancker Alley Police Dept",
      "Brancker_Alley_Police_Department",
    ];
    B[77][64] = [33, "Wasteland", "Wasteland_64%2C77"];
    B[78][64] = [9, "St Polycarp's Church", "St._Polycarp%27s_Church"];
    B[79][64] = [30, "Shufflebotham Street", "Shufflebotham_Street"];
    B[70][65] = [33, "Wasteland", "Wasteland_65%2C70"];
    B[71][65] = [18, "Beviss Library", "Beviss_Library"];
    B[72][65] = [5, "Byers Building", "The_Byers_Building"];
    B[73][65] = [5, "Cherington Building", "The_Cherington_Building"];
    B[74][65] = [30, "John Way", "John_Way"];
    B[75][65] = [30, "Flynn Alley", "Flynn_Alley"];
    B[76][65] = [13, "Cheek Road Fire Station", "Cheek_Road_Fire_Station"];
    B[77][65] = [28, "Hutton Avenue School", "Hutton_Avenue_School"];
    B[78][65] = [10, "Mayer Cinema", "Mayer_Cinema"];
    B[79][65] = [30, "Davey Way", "Davey_Way"];
    B[70][66] = [33, "Wasteland", "Wasteland_66%2C70"];
    B[71][66] = [33, "Wasteland", "Wasteland_66%2C71"];
    B[72][66] = [17, "Junkyard", "Junkyard_66%2C72"];
    B[73][66] = [17, "Junkyard", "Junkyard_66%2C73"];
    B[74][66] = [23, "Silwood Building", "The_Silwood_Building"];
    B[75][66] = [30, "Bingham Walk", "Bingham_Walk"];
    B[76][66] = [30, "Newborough Road", "Newborough_Road"];
    B[77][66] = [2, "Bagot Arms", "The_Bagot_Arms"];
    B[78][66] = [3, "Meany Auto Repair", "Meany_Auto_Repair"];
    B[79][66] = [10, "Sollas Cinema", "Sollas_Cinema"];
    B[70][67] = [30, "Kennea Way", "Kennea_Way"];
    B[71][67] = [13, "Gentle Drive Fire Station", "Gentle_Drive_Fire_Station"];
    B[72][67] = [30, "Broderip Avenue", "Broderip_Avenue"];
    B[73][67] = [5, "Gooch Building", "The_Gooch_Building"];
    B[74][67] = [
      15,
      "St Seraphim's Hospital",
      "St._Seraphim%27s_Hospital_%28Wray_Heights%29",
    ];
    B[75][67] = [30, "Firminger Walk", "Firminger_Walk_%28Wray_Heights%29"];
    B[76][67] = [17, "Junkyard", "Junkyard_67%2C76"];
    B[77][67] = [30, "Tresidder Alley", "Tresidder_Alley"];
    B[78][67] = [
      28,
      "Braham Boulevard School",
      "Braham_Boulevard_School_%28Wray_Heights%29",
    ];
    B[79][67] = [30, "Steed Road", "Steed_Road"];
    B[70][68] = [3, "Crossman Auto Repair", "Crossman_Auto_Repair"];
    B[71][68] = [
      30,
      "Trevelyan Crescent",
      "Trevelyan_Crescent_%28Wray_Heights%29",
    ];
    B[72][68] = [18, "Ennever Library", "Ennever_Library"];
    B[73][68] = [18, "Sinkins Library", "Sinkins_Library"];
    B[74][68] = [6, "Carpark", "Carpark_68%2C74"];
    B[75][68] = [30, "Monck Avenue", "Monck_Avenue"];
    B[76][68] = [11, "Club Tinney", "Club_Tinney"];
    B[77][68] = [
      9,
      "St Margaret's Church",
      "St._Margaret%27s_Church_%28Wray_Heights%29",
    ];
    B[78][68] = [4, "Whitcherell Bank", "Whitcherell_Bank"];
    B[79][68] = [30, "Dallaway Avenue", "Dallaway_Avenue"];
    B[70][69] = [4, "Oates Bank", "Oates_Bank"];
    B[71][69] = [24, "Stapleton Park", "Stapleton_Park"];
    B[72][69] = [30, "McInerney Grove", "McInerney_Grove"];
    B[73][69] = [
      27,
      "Shearston Square Railway Station",
      "Shearston_Square_Railway_Station",
    ];
    B[74][69] = [30, "Daunt Square", "Daunt_Square"];
    B[75][69] = [
      25,
      "Broad Avenue Police Dept",
      "Broad_Avenue_Police_Department",
    ];
    B[76][69] = [10, "Solomon Cinema", "Solomon_Cinema"];
    B[77][69] = [
      9,
      "St John's Church",
      "St._John%27s_Church_%28Wray_Heights%29",
    ];
    B[78][69] = [8, "Cemetery", "Cemetery_69%2C78"];
    B[79][69] = [5, "Burdekin Building", "The_Burdekin_Building"];

    // ------------------------------------------------
    // Gulsonside
    // ------------------------------------------------
    B[70][70] = [30, "Rabbage Place", "Rabbage_Place"];
    B[71][70] = [10, "Spire Cinema", "Spire_Cinema"];
    B[72][70] = [2, "Belbin Arms", "The_Belbin_Arms"];
    B[73][70] = [24, "Gurney Park", "Gurney_Park"];
    B[74][70] = [30, "Budgett Walk", "Budgett_Walk"];
    B[75][70] = [30, "Kingdom Row", "Kingdom_Row"];
    B[76][70] = [16, "Pledger Hotel", "The_Pledger_Hotel"];
    B[77][70] = [2, "Brien Arms", "The_Brien_Arms"];
    B[78][70] = [8, "Cemetery", "Cemetery_70%2C78"];
    B[79][70] = [30, "Gullifer Avenue", "Gullifer_Avenue"];
    B[70][71] = [4, "Chown Bank", "Chown_Bank"];
    B[71][71] = [30, "Cundham Drive", "Cundham_Drive_%28Gulsonside%29"];
    B[72][71] = [
      9,
      "St Lazarus's Church",
      "St._Lazarus%27s_Church_%28Gulsonside%29",
    ];
    B[73][71] = [33, "Wasteland", "Wasteland_71%2C73"];
    B[74][71] = [30, "Mosedale Crescent", "Mosedale_Crescent"];
    B[75][71] = [31, "Veale Towers", "Veale_Towers"];
    B[76][71] = [2, "Perrior Arms", "The_Perrior_Arms"];
    B[77][71] = [
      9,
      "St Francis's Church",
      "St._Francis%27s_Church_%28Gulsonside%29",
    ];
    B[78][71] = [23, "Creek Building", "The_Creek_Building"];
    B[79][71] = [17, "Junkyard", "Junkyard_71%2C79"];
    B[70][72] = [30, "Dike Lane", "Dike_Lane"];
    B[71][72] = [28, "McInerney Avenue School", "McInerney_Avenue_School"];
    B[72][72] = [30, "Minall Square", "Minall_Square"];
    B[73][72] = [30, "Dinovan Alley", "Dinovan_Alley_%28Gulsonside%29"];
    B[74][72] = [13, "Billings Row Fire Station", "Billings_Row_Fire_Station"];
    B[75][72] = [30, "Eaton Drive", "Eaton_Drive"];
    B[76][72] = [30, "Wolseley Lane", "Wolseley_Lane"];
    B[77][72] = [30, "Butt Boulevard", "Butt_Boulevard"];
    B[78][72] = [30, "Durand Drive", "Durand_Drive_%28Gulsonside%29"];
    B[79][72] = [
      15,
      "Zacharias General Hospital",
      "Zacharias_General_Hospital",
    ];
    B[70][73] = [5, "Podger Building", "The_Podger_Building"];
    B[71][73] = [
      27,
      "Hutchin Boulevard Railway Station",
      "Hutchin_Boulevard_Railway_Station",
    ];
    B[72][73] = [5, "Conybear Building", "The_Conybear_Building"];
    B[73][73] = [32, "Warehouse", "Warehouse_73%2C73"];
    B[74][73] = [5, "Gollop Building", "The_Gollop_Building"];
    B[75][73] = [30, "Tatchel Street", "Tatchel_Street"];
    B[76][73] = [31, "Welsford Towers", "Welsford_Towers"];
    B[77][73] = [33, "Wasteland", "Wasteland_73%2C77"];
    B[78][73] = [17, "Junkyard", "Junkyard_73%2C78"];
    B[79][73] = [31, "Stanbury Towers", "Stanbury_Towers"];
    B[70][74] = [30, "Cottrill Square", "Cottrill_Square_%28Gulsonside%29"];
    B[71][74] = [15, "St Polycarp's Hospital", "St._Polycarp%27s_Hospital"];
    B[72][74] = [30, "Biddlecom Road", "Biddlecom_Road"];
    B[73][74] = [30, "Shearley Place", "Shearley_Place"];
    B[74][74] = [22, "Crump Museum", "The_Crump_Museum"];
    B[75][74] = [30, "Jewell Lane", "Jewell_Lane"];
    B[76][74] = [6, "Carpark", "Carpark_74%2C76"];
    B[77][74] = [4, "Allan Bank", "Allan_Bank"];
    B[78][74] = [32, "Warehouse", "Warehouse_74%2C78"];
    B[79][74] = [30, "Bowditch Avenue", "Bowditch_Avenue"];
    B[70][75] = [28, "Lea Street School", "Lea_Street_School"];
    B[71][75] = [5, "Cockell Building", "The_Cockell_Building"];
    B[72][75] = [30, "Huttenbach Drive", "Huttenbach_Drive_%28Gulsonside%29"];
    B[73][75] = [22, "Bane Museum", "The_Bane_Museum"];
    B[74][75] = [30, "Ponder Grove", "Ponder_Grove"];
    B[75][75] = [
      27,
      "Shean Alley Railway Station",
      "Shean_Alley_Railway_Station",
    ];
    B[76][75] = [30, "Methringham Boulevard", "Methringham_Boulevard"];
    B[77][75] = [32, "Warehouse", "Warehouse_75%2C77"];
    B[78][75] = [30, "Eliot Avenue", "Eliot_Avenue"];
    B[79][75] = [
      27,
      "Furzer Crescent Railway Station",
      "Furzer_Crescent_Railway_Station",
    ];
    B[70][76] = [10, "Pavitt Cinema", "Pavitt_Cinema"];
    B[71][76] = [24, "Stephens Park", "Stephens_Park"];
    B[72][76] = [9, "St Holy's Church", "St._Holy%27s_Church_%28Gulsonside%29"];
    B[73][76] = [9, "St Patrick's Church", "St._Patrick%27s_Church"];
    B[74][76] = [30, "Train Boulevard", "Train_Boulevard"];
    B[75][76] = [22, "Wybrants Museum", "The_Wybrants_Museum"];
    B[76][76] = [16, "Hemphill Hotel", "The_Hemphill_Hotel"];
    B[77][76] = [
      27,
      "Hame Crescent Railway Station",
      "Hame_Crescent_Railway_Station",
    ];
    B[78][76] = [16, "Mapledoram Hotel", "The_Mapledoram_Hotel"];
    B[79][76] = [30, "Beagly Lane", "Beagly_Lane_%28Gulsonside%29"];
    B[70][77] = [3, "Genin Auto Repair", "Genin_Auto_Repair"];
    B[71][77] = [3, "Doble Auto Repair", "Doble_Auto_Repair"];
    B[72][77] = [24, "Showers Park", "Showers_Park"];
    B[73][77] = [8, "Cemetery", "Cemetery_77%2C73"];
    B[74][77] = [11, "Club Wadman", "Club_Wadman_%28Gulsonside%29"];
    B[75][77] = [33, "Wasteland", "Wasteland_77%2C75"];
    B[76][77] = [23, "Perryn Building", "The_Perryn_Building_%28Gulsonside%29"];
    B[77][77] = [5, "Bullen Building", "The_Bullen_Building"];
    B[78][77] = [32, "Warehouse", "Warehouse_77%2C78"];
    B[79][77] = [30, "Simister Street", "Simister_Street"];
    B[70][78] = [33, "Wasteland", "Wasteland_78%2C70"];
    B[71][78] = [30, "Mather Lane", "Mather_Lane"];
    B[72][78] = [33, "Wasteland", "Wasteland_78%2C72"];
    B[73][78] = [19, "Blesley Mall", "Blesley_Mall"];
    B[74][78] = [19, "Blesley Mall", "Blesley_Mall"];
    B[75][78] = [
      13,
      "Northcote Avenue Fire Station",
      "Northcote_Avenue_Fire_Station",
    ];
    B[76][78] = [
      27,
      "Howarth Boulevard Railway Station",
      "Howarth_Boulevard_Railway_Station",
    ];
    B[77][78] = [18, "Eason Library", "Eason_Library_%28Gulsonside%29"];
    B[78][78] = [30, "Prinn Alley", "Prinn_Alley"];
    B[79][78] = [4, "Tipney Bank", "Tipney_Bank"];
    B[70][79] = [23, "Wetherall Building", "The_Wetherall_Building"];
    B[71][79] = [30, "Hooke Row", "Hooke_Row"];
    B[72][79] = [22, "Menhennet Museum", "The_Menhennet_Museum"];
    B[73][79] = [19, "Blesley Mall", "Blesley_Mall"];
    B[74][79] = [19, "Blesley Mall", "Blesley_Mall"];
    B[75][79] = [21, "Broadbear Monument", "The_Broadbear_Monument"];
    B[76][79] = [30, "Ivens Lane", "Ivens_Lane"];
    B[77][79] = [30, "Case Row", "Case_Row"];
    B[78][79] = [21, "Markes Monument", "The_Markes_Monument"];
    B[79][79] = [11, "Club Emes", "Club_Emes"];

    // ------------------------------------------------
    // Scarletwood
    // ------------------------------------------------
    B[70][80] = [30, "Nicols Way", "Nicols_Way"];
    B[71][80] = [30, "Drury Street", "Drury_Street_%28Osmondville%29"];
    B[72][80] = [30, "Malcolm Avenue", "Malcolm_Avenue"];
    B[73][80] = [11, "Club Simpson", "Club_Simpson"];
    B[74][80] = [30, "Mechel Grove", "Mechel_Grove"];
    B[75][80] = [5, "Pimm Building", "The_Pimm_Building"];
    B[76][80] = [33, "Wasteland", "Wasteland_80%2C76"];
    B[77][80] = [30, "Sabine Place", "Sabine_Place"];
    B[78][80] = [
      25,
      "Brockliss Grove Police Dept",
      "Brockliss_Grove_Police_Department",
    ];
    B[79][80] = [
      27,
      "Mountstephen Grove Railway Station",
      "Mountstephen_Grove_Railway_Station",
    ];
    B[70][81] = [33, "Wasteland", "Wasteland_81%2C70"];
    B[71][81] = [33, "Wasteland", "Wasteland_81%2C71"];
    B[72][81] = [25, "Vawer Walk Police Dept", "Vawer_Walk_Police_Department"];
    B[73][81] = [30, "Hagger Square", "Hagger_Square_%28Osmondville%29"];
    B[74][81] = [30, "Godolphin Drive", "Godolphin_Drive"];
    B[75][81] = [11, "Club Adam", "Club_Adam"];
    B[76][81] = [3, "Clive Auto Repair", "Clive_Auto_Repair"];
    B[77][81] = [30, "Glyde Avenue", "Glyde_Avenue"];
    B[78][81] = [30, "Slowley Lane", "Slowley_Lane"];
    B[79][81] = [32, "Warehouse", "Warehouse_81%2C79"];
    B[70][82] = [30, "Radbourne Walk", "Radbourne_Walk"];
    B[71][82] = [
      27,
      "Cording Grove Railway Station",
      "Cording_Grove_Railway_Station",
    ];
    B[72][82] = [
      25,
      "Grylls Crescent Police Dept",
      "Grylls_Crescent_Police_Department",
    ];
    B[73][82] = [32, "Warehouse", "Warehouse_82%2C73"];
    B[74][82] = [33, "Wasteland", "Wasteland_82%2C74"];
    B[75][82] = [28, "Hole Drive School", "Hole_Drive_School"];
    B[76][82] = [28, "Millard Crescent School", "Millard_Crescent_School"];
    B[77][82] = [30, "Justice Walk", "Justice_Walk"];
    B[78][82] = [28, "Tempest Plaza School", "Tempest_Plaza_School"];
    B[79][82] = [4, "Bythese Bank", "Bythese_Bank"];
    B[70][83] = [30, "Skyrme Plaza", "Skyrme_Plaza"];
    B[71][83] = [16, "Dibben Motel", "The_Dibben_Motel"];
    B[72][83] = [32, "Warehouse", "Warehouse_83%2C72"];
    B[73][83] = [31, "Mallows Towers", "Mallows_Towers"];
    B[74][83] = [30, "Pyke Way", "Pyke_Way"];
    B[75][83] = [11, "Club Single", "Club_Single"];
    B[76][83] = [30, "Cowlin Street", "Cowlin_Street"];
    B[77][83] = [5, "Hollwey Building", "The_Hollwey_Building"];
    B[78][83] = [30, "Doe Place", "Doe_Place"];
    B[79][83] = [30, "Bennett Way", "Bennett_Way_%28Osmondville%29"];
    B[70][84] = [31, "Mabey Towers", "Mabey_Towers"];
    B[71][84] = [32, "Warehouse", "Warehouse_84%2C71"];
    B[72][84] = [
      9,
      "St Isidore's Church",
      "St._Isidore%27s_Church_%28Osmondville%29",
    ];
    B[73][84] = [30, "Panton Place", "Panton_Place"];
    B[74][84] = [
      9,
      "St Spyridon's Church",
      "St._Spyridon%27s_Church_%28Osmondville%29",
    ];
    B[75][84] = [
      21,
      "Pepperell Monument",
      "The_Pepperell_Monument_%28Osmondville%29",
    ];
    B[76][84] = [23, "Axtence Building", "The_Axtence_Building"];
    B[77][84] = [30, "Barrington Walk", "Barrington_Walk"];
    B[78][84] = [17, "Junkyard", "Junkyard_84%2C78"];
    B[79][84] = [12, "Factory", "Factory_84%2C79"];
    B[70][85] = [30, "Hounsell Street", "Hounsell_Street"];
    B[71][85] = [24, "Lea Park", "Lea_Park"];
    B[72][85] = [8, "Cemetery", "Cemetery_85%2C72"];
    B[73][85] = [22, "Ayliffee Museum", "The_Ayliffee_Museum"];
    B[74][85] = [8, "Cemetery", "Cemetery_85%2C74"];
    B[75][85] = [22, "Salsbury Museum", "The_Salsbury_Museum"];
    B[76][85] = [13, "Burden Road Fire Station", "Burden_Road_Fire_Station"];
    B[77][85] = [17, "Junkyard", "Junkyard_85%2C77"];
    B[78][85] = [30, "Bastable Alley", "Bastable_Alley_%28Osmondville%29"];
    B[79][85] = [30, "Piper Alley", "Piper_Alley"];
    B[70][86] = [30, "Denman Alley", "Denman_Alley"];
    B[71][86] = [10, "Pickford Cinema", "Pickford_Cinema"];
    B[72][86] = [24, "Clerck Park", "Clerck_Park"];
    B[73][86] = [31, "Doveton Towers", "Doveton_Towers"];
    B[74][86] = [30, "Dymock Avenue", "Dymock_Avenue"];
    B[75][86] = [32, "Warehouse", "Warehouse_86%2C75"];
    B[76][86] = [11, "Club Kidder", "Club_Kidder"];
    B[77][86] = [30, "English Avenue", "English_Avenue"];
    B[78][86] = [9, "St Deusdedit's Church", "St._Deusdedit%27s_Church"];
    B[79][86] = [8, "Cemetery", "Cemetery_86%2C79"];
    B[70][87] = [3, "Bythese Auto Repair", "Bythese_Auto_Repair"];
    B[71][87] = [12, "Factory", "Factory_87%2C71"];
    B[72][87] = [
      27,
      "Fifoot Crescent Railway Station",
      "Fifoot_Crescent_Railway_Station",
    ];
    B[73][87] = [30, "Brailey Walk", "Brailey_Walk"];
    B[74][87] = [33, "Wasteland", "Wasteland_87%2C74"];
    B[75][87] = [10, "Wornel Cinema", "Wornel_Cinema"];
    B[76][87] = [5, "Graddon Building", "The_Graddon_Building"];
    B[77][87] = [31, "Spragge Towers", "Spragge_Towers"];
    B[78][87] = [33, "Wasteland", "Wasteland_87%2C78"];
    B[79][87] = [30, "Chetle Way", "Chetle_Way"];
    B[70][88] = [4, "Burne Bank", "Burne_Bank"];
    B[71][88] = [30, "Woolmonton Row", "Woolmonton_Row"];
    B[72][88] = [24, "Manuel Park", "Manuel_Park_%28Osmondville%29"];
    B[73][88] = [
      30,
      "Trevelyan Crescent",
      "Trevelyan_Crescent_%28Osmondville%29",
    ];
    B[74][88] = [16, "Goldney Motel", "The_Goldney_Motel"];
    B[75][88] = [5, "Dallimore Building", "The_Dallimore_Building"];
    B[76][88] = [
      9,
      "St Aloysius's Church",
      "St._Aloysius%27s_Church_%28Osmondville%29",
    ];
    B[77][88] = [11, "Club Fortescue", "Club_Fortescue"];
    B[78][88] = [5, "Buttle Building", "The_Buttle_Building_%28Osmondville%29"];
    B[79][88] = [5, "Spong Building", "The_Spong_Building"];
    B[70][89] = [5, "Lapwood Building", "The_Lapwood_Building"];
    B[71][89] = [30, "Dufall Drive", "Dufall_Drive"];
    B[72][89] = [30, "Connor Street", "Connor_Street"];
    B[73][89] = [16, "Cundham Motel", "The_Cundham_Motel"];
    B[74][89] = [30, "Laurence Walk", "Laurence_Walk"];
    B[75][89] = [30, "Jago Way", "Jago_Way"];
    B[76][89] = [8, "Cemetery", "Cemetery_89%2C76"];
    B[77][89] = [30, "Neyens Avenue", "Neyens_Avenue_%28Osmondville%29"];
    B[78][89] = [
      21,
      "Norgate Monument",
      "The_Norgate_Monument_%28Osmondville%29",
    ];
    B[79][89] = [28, "Rumler Way School", "Rumler_Way_School"];

    // ------------------------------------------------
    // Danversbank
    // ------------------------------------------------
    B[70][90] = [
      5,
      "Gracewood Building",
      "The_Gracewood_Building_%28Penny_Heights%29",
    ];
    B[71][90] = [30, "Stuart Boulevard", "Stuart_Boulevard"];
    B[72][90] = [16, "Murtaugh Motel", "The_Murtaugh_Motel"];
    B[73][90] = [30, "Carye Drive", "Carye_Drive_%28Penny_Heights%29"];
    B[74][90] = [30, "Wyatt Way", "Wyatt_Way"];
    B[75][90] = [
      25,
      "Normandare Boulevard Police Dept",
      "Normandare_Boulevard_Police_Department",
    ];
    B[76][90] = [30, "Sargent Row", "Sargent_Row"];
    B[77][90] = [5, "Cholmondeley Building", "The_Cholmondeley_Building"];
    B[78][90] = [3, "Neave Auto Repair", "Neave_Auto_Repair"];
    B[79][90] = [19, "Joachim Mall", "Joachim_Mall"];
    B[70][91] = [33, "Wasteland", "Wasteland_91%2C70"];
    B[71][91] = [30, "Coome Lane", "Coome_Lane"];
    B[72][91] = [30, "Digby Walk", "Digby_Walk_%28Penny_Heights%29"];
    B[73][91] = [18, "Coombe Library", "Coombe_Library"];
    B[74][91] = [24, "Naish Park", "Naish_Park"];
    B[75][91] = [
      30,
      "Churchous Avenue",
      "Churchous_Avenue_%28Penny_Heights%29",
    ];
    B[76][91] = [
      13,
      "Hagger Square Fire Station",
      "Hagger_Square_Fire_Station",
    ];
    B[77][91] = [
      25,
      "Deacon Alley Police Dept",
      "Deacon_Alley_Police_Department",
    ];
    B[78][91] = [33, "Wasteland", "Wasteland_91%2C78"];
    B[79][91] = [19, "Joachim Mall", "Joachim_Mall"];
    B[70][92] = [30, "Derham Alley", "Derham_Alley"];
    B[71][92] = [24, "Saltrow Park", "Saltrow_Park"];
    B[72][92] = [13, "Tuxill Alley Fire Station", "Tuxill_Alley_Fire_Station"];
    B[73][92] = [
      27,
      "Shillito Drive Railway Station",
      "Shillito_Drive_Railway_Station",
    ];
    B[74][92] = [30, "Halfacree Square", "Halfacree_Square"];
    B[75][92] = [18, "Fairfield Library", "Fairfield_Library"];
    B[76][92] = [23, "Craddy Building", "The_Craddy_Building"];
    B[77][92] = [
      13,
      "Adler Crescent Fire Station",
      "Adler_Crescent_Fire_Station",
    ];
    B[78][92] = [2, "Orome Arms", "The_Orome_Arms"];
    B[79][92] = [30, "Earlham Walk", "Earlham_Walk"];
    B[70][93] = [17, "Junkyard", "Junkyard_93%2C70"];
    B[71][93] = [
      9,
      "St Danilo's Church",
      "St._Danilo%27s_Church_%28Penny_Heights%29",
    ];
    B[72][93] = [30, "Pike Plaza", "Pike_Plaza"];
    B[73][93] = [3, "Milard Auto Repair", "Milard_Auto_Repair"];
    B[74][93] = [30, "Buteby Avenue", "Buteby_Avenue"];
    B[75][93] = [17, "Junkyard", "Junkyard_93%2C75"];
    B[76][93] = [3, "Rundle Auto Repair", "Rundle_Auto_Repair"];
    B[77][93] = [2, "Roger Arms", "The_Roger_Arms"];
    B[78][93] = [31, "Windey Towers", "Windey_Towers"];
    B[79][93] = [30, "Grist Grove", "Grist_Grove"];
    B[70][94] = [30, "Isherwood Avenue", "Isherwood_Avenue"];
    B[71][94] = [6, "Carpark", "Carpark_94%2C71"];
    B[72][94] = [30, "Akehurst Walk", "Akehurst_Walk"];
    B[73][94] = [12, "Factory", "Factory_94%2C73"];
    B[74][94] = [5, "Tomkyns Building", "The_Tomkyns_Building"];
    B[75][94] = [9, "St Martha's Church", "St._Martha%27s_Church"];
    B[76][94] = [5, "Humphrys Building", "The_Humphrys_Building"];
    B[77][94] = [3, "Brimblecombe Auto Repair", "Brimblecombe_Auto_Repair"];
    B[78][94] = [5, "Browton Building", "The_Browton_Building"];
    B[79][94] = [22, "Hazeldine Museum", "The_Hazeldine_Museum"];
    B[70][95] = [30, "Eeles Way", "Eeles_Way_%28Penny_Heights%29"];
    B[71][95] = [32, "Warehouse", "Warehouse_95%2C71"];
    B[72][95] = [30, "Rossiter Crescent", "Rossiter_Crescent"];
    B[73][95] = [23, "Rothwell Building", "The_Rothwell_Building"];
    B[74][95] = [17, "Junkyard", "Junkyard_95%2C74"];
    B[75][95] = [17, "Junkyard", "Junkyard_95%2C75"];
    B[76][95] = [3, "Gannett Auto Repair", "Gannett_Auto_Repair"];
    B[77][95] = [21, "Willmington Monument", "The_Willmington_Monument"];
    B[78][95] = [17, "Junkyard", "Junkyard_95%2C78"];
    B[79][95] = [
      27,
      "Shickell Drive Railway Station",
      "Shickell_Drive_Railway_Station",
    ];
    B[70][96] = [
      27,
      "Keeling Walk Railway Station",
      "Keeling_Walk_Railway_Station",
    ];
    B[71][96] = [22, "Voules Museum", "The_Voules_Museum"];
    B[72][96] = [30, "Kettner Drive", "Kettner_Drive"];
    B[73][96] = [4, "Dunlap Bank", "Dunlap_Bank"];
    B[74][96] = [
      30,
      "Maddaford Square",
      "Maddaford_Square_%28Penny_Heights%29",
    ];
    B[75][96] = [28, "Shelley Grove School", "Shelley_Grove_School"];
    B[76][96] = [21, "Coker Monument", "The_Coker_Monument"];
    B[77][96] = [
      13,
      "Langsford Drive Fire Station",
      "Langsford_Drive_Fire_Station",
    ];
    B[78][96] = [30, "Murless Way", "Murless_Way"];
    B[79][96] = [30, "War Crescent", "War_Crescent"];
    B[70][97] = [5, "Sevier Building", "The_Sevier_Building"];
    B[71][97] = [28, "Buglar Boulevard School", "Buglar_Boulevard_School"];
    B[72][97] = [24, "Manuel Park", "Manuel_Park_%28Penny_Heights%29"];
    B[73][97] = [30, "Dredge Alley", "Dredge_Alley"];
    B[74][97] = [11, "Club Crosland", "Club_Crosland"];
    B[75][97] = [18, "Roberson Library", "Roberson_Library"];
    B[76][97] = [
      30,
      "Sargent Crescent",
      "Sargent_Crescent_%28Penny_Heights%29",
    ];
    B[77][97] = [
      15,
      "Josephine General Hospital",
      "Josephine_General_Hospital_%28Penny_Heights%29",
    ];
    B[78][97] = [15, "Odo General Hospital", "Odo_General_Hospital"];
    B[79][97] = [30, "Oakley Drive", "Oakley_Drive"];
    B[70][98] = [3, "Peterson Auto Repair", "Peterson_Auto_Repair"];
    B[71][98] = [30, "Stacey Plaza", "Stacey_Plaza"];
    B[72][98] = [13, "Fowke Lane Fire Station", "Fowke_Lane_Fire_Station"];
    B[73][98] = [12, "Factory", "Factory_98%2C73"];
    B[74][98] = [5, "Pester Building", "The_Pester_Building"];
    B[75][98] = [3, "Pyncombes Auto Repair", "Pyncombes_Auto_Repair"];
    B[76][98] = [17, "Junkyard", "Junkyard_98%2C76"];
    B[77][98] = [31, "Cracknell Towers", "Cracknell_Towers"];
    B[78][98] = [4, "Sulley Bank", "Sulley_Bank"];
    B[79][98] = [30, "Chedgey Drive", "Chedgey_Drive"];
    B[70][99] = [30, "Vaughan Drive", "Vaughan_Drive"];
    B[71][99] = [11, "Club Croxford", "Club_Croxford"];
    B[72][99] = [4, "Leekey Bank", "Leekey_Bank"];
    B[73][99] = [24, "Jordan Park", "Jordan_Park"];
    B[74][99] = [5, "Baggaley Building", "The_Baggaley_Building"];
    B[75][99] = [24, "Oakeley Park", "Oakeley_Park"];
    B[76][99] = [5, "Shalle Building", "The_Shalle_Building"];
    B[77][99] = [19, "Lumber Mall", "Lumber_Mall"];
    B[78][99] = [19, "Lumber Mall", "Lumber_Mall"];
    B[79][99] = [11, "Club Frossard", "Club_Frossard"];

    // ------------------------------------------------
    // Rhodenbank
    // ------------------------------------------------
    B[80][0] = [
      5,
      "Buttle Building",
      "The_Buttle_Building_%28Foulkes_Village%29",
    ];
    B[81][0] = [16, "Deny Hotel", "The_Deny_Hotel_%28Foulkes_Village%29"];
    B[82][0] = [2, "Dement Arms", "The_Dement_Arms"];
    B[83][0] = [33, "Wasteland", "Wasteland_0%2C83"];
    B[84][0] = [32, "Warehouse", "Warehouse_0%2C84"];
    B[85][0] = [13, "Whittard Road Fire Station", "Whittard_Road_Fire_Station"];
    B[86][0] = [16, "Brindle Hotel", "The_Brindle_Hotel"];
    B[87][0] = [3, "Warren Auto Repair", "Warren_Auto_Repair"];
    B[88][0] = [6, "Carpark", "Carpark_0%2C88"];
    B[89][0] = [10, "Marton Cinema", "Marton_Cinema"];
    B[80][1] = [10, "Stephens Cinema", "Stephens_Cinema"];
    B[81][1] = [10, "Mockridge Cinema", "Mockridge_Cinema"];
    B[82][1] = [30, "Ryan Grove", "Ryan_Grove"];
    B[83][1] = [28, "Fuller Drive School", "Fuller_Drive_School"];
    B[84][1] = [24, "Alsoop Park", "Alsoop_Park"];
    B[85][1] = [33, "Wasteland", "Wasteland_1%2C85"];
    B[86][1] = [30, "McTier Grove", "McTier_Grove"];
    B[87][1] = [30, "Ketnor Walk", "Ketnor_Walk"];
    B[88][1] = [
      15,
      "Etheldreda General Hospital",
      "Etheldreda_General_Hospital_%28Foulkes_Village%29",
    ];
    B[89][1] = [32, "Warehouse", "Warehouse_1%2C89"];
    B[80][2] = [30, "Clipper Drive", "Clipper_Drive"];
    B[81][2] = [6, "Carpark", "Carpark_2%2C81"];
    B[82][2] = [30, "Finlay Boulevard", "Finlay_Boulevard"];
    B[83][2] = [3, "Syms Auto Repair", "Syms_Auto_Repair"];
    B[84][2] = [25, "Crew Avenue Police Dept", "Crew_Avenue_Police_Department"];
    B[85][2] = [30, "Vigar Walk", "Vigar_Walk"];
    B[86][2] = [30, "Threadgould Road", "Threadgould_Road"];
    B[87][2] = [4, "Faraker Bank", "Faraker_Bank"];
    B[88][2] = [30, "Rollason Row", "Rollason_Row"];
    B[89][2] = [2, "Stancomb Arms", "The_Stancomb_Arms"];
    B[80][3] = [5, "Powlet Building", "The_Powlet_Building"];
    B[81][3] = [30, "Ryse Place", "Ryse_Place"];
    B[82][3] = [32, "Warehouse", "Warehouse_3%2C82"];
    B[83][3] = [
      15,
      "Cyril General Hospital",
      "Cyril_General_Hospital_%28Foulkes_Village%29",
    ];
    B[84][3] = [22, "Boon Museum", "The_Boon_Museum"];
    B[85][3] = [30, "Lorgh Walk", "Lorgh_Walk_%28Foulkes_Village%29"];
    B[86][3] = [16, "Dudoc Hotel", "The_Dudoc_Hotel_%28Foulkes_Village%29"];
    B[87][3] = [22, "Gullis Museum", "The_Gullis_Museum"];
    B[88][3] = [22, "Kirwan Museum", "The_Kirwan_Museum"];
    B[89][3] = [28, "Sansbury Plaza School", "Sansbury_Plaza_School"];
    B[80][4] = [33, "Wasteland", "Wasteland_4%2C80"];
    B[81][4] = [30, "Raines Grove", "Raines_Grove"];
    B[82][4] = [30, "Fyfhyde Plaza", "Fyfhyde_Plaza"];
    B[83][4] = [12, "Factory", "Factory_4%2C83"];
    B[84][4] = [12, "Factory", "Factory_4%2C84"];
    B[85][4] = [10, "Punnett Cinema", "Punnett_Cinema"];
    B[86][4] = [21, "Feaver Monument", "The_Feaver_Monument"];
    B[87][4] = [30, "Connery Drive", "Connery_Drive"];
    B[88][4] = [16, "Grundy Motel", "The_Grundy_Motel"];
    B[89][4] = [12, "Factory", "Factory_4%2C89"];
    B[80][5] = [8, "Cemetery", "Cemetery_5%2C80"];
    B[81][5] = [21, "Potter Monument", "The_Potter_Monument"];
    B[82][5] = [9, "St Aelred's Church", "St._Aelred%27s_Church"];
    B[83][5] = [3, "Paget Auto Repair", "Paget_Auto_Repair"];
    B[84][5] = [5, "Freeguard Building", "The_Freeguard_Building"];
    B[85][5] = [17, "Junkyard", "Junkyard_5%2C85"];
    B[86][5] = [28, "Elsworth Square School", "Elsworth_Square_School"];
    B[87][5] = [30, "Rendall Plaza", "Rendall_Plaza"];
    B[88][5] = [31, "Perrye Towers", "Perrye_Towers"];
    B[89][5] = [21, "Carr Monument", "The_Carr_Monument"];
    B[80][6] = [30, "Capes Street", "Capes_Street"];
    B[81][6] = [30, "Wimbridge Crescent", "Wimbridge_Crescent"];
    B[82][6] = [12, "Factory", "Factory_6%2C82"];
    B[83][6] = [30, "Reakes Grove", "Reakes_Grove"];
    B[84][6] = [30, "Davy Drive", "Davy_Drive"];
    B[85][6] = [30, "Scudamore Road", "Scudamore_Road"];
    B[86][6] = [6, "Carpark", "Carpark_6%2C86"];
    B[87][6] = [30, "Richings Crescent", "Richings_Crescent"];
    B[88][6] = [25, "Frye Alley Police Dept", "Frye_Alley_Police_Department"];
    B[89][6] = [24, "Daunt Park", "Daunt_Park"];
    B[80][7] = [11, "Club Clement", "Club_Clement"];
    B[81][7] = [5, "Dadson Building", "The_Dadson_Building"];
    B[82][7] = [21, "Dwyer Monument", "The_Dwyer_Monument"];
    B[83][7] = [5, "Ffych Building", "The_Ffych_Building"];
    B[84][7] = [30, "Biffen Lane", "Biffen_Lane_%28Foulkes_Village%29"];
    B[85][7] = [30, "Gully Grove", "Gully_Grove"];
    B[86][7] = [5, "Laurence Building", "The_Laurence_Building"];
    B[87][7] = [10, "Ayers Cinema", "Ayers_Cinema"];
    B[88][7] = [30, "Swonnell Place", "Swonnell_Place"];
    B[89][7] = [30, "Quekett Road", "Quekett_Road"];
    B[80][8] = [24, "Chalker Park", "Chalker_Park"];
    B[81][8] = [2, "Fone Arms", "The_Fone_Arms_%28Foulkes_Village%29"];
    B[82][8] = [17, "Junkyard", "Junkyard_8%2C82"];
    B[83][8] = [18, "Naisbitt Library", "Naisbitt_Library"];
    B[84][8] = [30, "Holdoway Drive", "Holdoway_Drive"];
    B[85][8] = [32, "Warehouse", "Warehouse_8%2C85"];
    B[86][8] = [33, "Wasteland", "Wasteland_8%2C86"];
    B[87][8] = [6, "Carpark", "Carpark_8%2C87"];
    B[88][8] = [23, "Henley Building", "The_Henley_Building"];
    B[89][8] = [28, "Woolford Boulevard School", "Woolford_Boulevard_School"];
    B[80][9] = [
      25,
      "Vincent Square Police Dept",
      "Vincent_Square_Police_Department",
    ];
    B[81][9] = [6, "Carpark", "Carpark_9%2C81"];
    B[82][9] = [18, "Darnell Library", "Darnell_Library"];
    B[83][9] = [21, "Barnefield Monument", "The_Barnefield_Monument"];
    B[84][9] = [5, "Hinckesman Building", "The_Hinckesman_Building"];
    B[85][9] = [5, "Burdett Building", "The_Burdett_Building"];
    B[86][9] = [24, "Woollacott Park", "Woollacott_Park"];
    B[87][9] = [6, "Carpark", "Carpark_9%2C87"];
    B[88][9] = [
      27,
      "Loader Walk Railway Station",
      "Loader_Walk_Railway_Station",
    ];
    B[89][9] = [17, "Junkyard", "Junkyard_9%2C89"];

    // ------------------------------------------------
    // Rolt Heights
    // ------------------------------------------------
    B[80][10] = [21, "Bozon Monument", "The_Bozon_Monument"];
    B[81][10] = [30, "Grabham Square", "Grabham_Square"];
    B[82][10] = [2, "McLellan Arms", "The_McLellan_Arms"];
    B[83][10] = [
      9,
      "St Maximillian's Church",
      "St._Maximillian%27s_Church_%28Ruddlebank%29",
    ];
    B[84][10] = [5, "Rees Building", "The_Rees_Building"];
    B[85][10] = [5, "Hobby Building", "The_Hobby_Building"];
    B[86][10] = [6, "Carpark", "Carpark_10%2C86"];
    B[87][10] = [31, "Ralfe Towers", "Ralfe_Towers"];
    B[88][10] = [
      13,
      "Strange Alley Fire Station",
      "Strange_Alley_Fire_Station",
    ];
    B[89][10] = [22, "Dobson Museum", "The_Dobson_Museum"];
    B[80][11] = [16, "Hansell Hotel", "The_Hansell_Hotel"];
    B[81][11] = [33, "Wasteland", "Wasteland_11%2C81"];
    B[82][11] = [30, "Latcham Street", "Latcham_Street"];
    B[83][11] = [30, "Breeze Street", "Breeze_Street"];
    B[84][11] = [23, "Selway Building", "The_Selway_Building"];
    B[85][11] = [30, "Dirkinson Street", "Dirkinson_Street"];
    B[86][11] = [30, "Biffen Lane", "Biffen_Lane_%28Ruddlebank%29"];
    B[87][11] = [4, "Rodeney Bank", "Rodeney_Bank"];
    B[88][11] = [30, "Greenleaves Alley", "Greenleaves_Alley"];
    B[89][11] = [30, "Wellington Way", "Wellington_Way"];
    B[80][12] = [11, "Club Meteyard", "Club_Meteyard"];
    B[81][12] = [13, "Wyke Grove Fire Station", "Wyke_Grove_Fire_Station"];
    B[82][12] = [30, "Clough Way", "Clough_Way"];
    B[83][12] = [30, "Carpenter Avenue", "Carpenter_Avenue"];
    B[84][12] = [30, "Delay Way", "Delay_Way"];
    B[85][12] = [
      27,
      "Duport Grove Railway Station",
      "Duport_Grove_Railway_Station",
    ];
    B[86][12] = [33, "Wasteland", "Wasteland_12%2C86"];
    B[87][12] = [5, "Bhore Building", "The_Bhore_Building"];
    B[88][12] = [3, "Cosens Auto Repair", "Cosens_Auto_Repair"];
    B[89][12] = [
      15,
      "Tikhon General Hospital",
      "Tikhon_General_Hospital_%28Ruddlebank%29",
    ];
    B[80][13] = [30, "Jack Way", "Jack_Way"];
    B[81][13] = [17, "Junkyard", "Junkyard_13%2C81"];
    B[82][13] = [30, "Tuckwood Walk", "Tuckwood_Walk"];
    B[83][13] = [33, "Wasteland", "Wasteland_13%2C83"];
    B[84][13] = [25, "Sly Place Police Dept", "Sly_Place_Police_Department"];
    B[85][13] = [30, "Combs Lane", "Combs_Lane"];
    B[86][13] = [
      5,
      "Greatorex Building",
      "The_Greatorex_Building_%28Ruddlebank%29",
    ];
    B[87][13] = [4, "Gover Bank", "Gover_Bank"];
    B[88][13] = [22, "Honeybone Museum", "The_Honeybone_Museum"];
    B[89][13] = [11, "Club Rodham", "Club_Rodham"];
    B[80][14] = [5, "Dudden Building", "The_Dudden_Building"];
    B[81][14] = [30, "Jarman Lane", "Jarman_Lane"];
    B[82][14] = [30, "Pember Grove", "Pember_Grove"];
    B[83][14] = [
      15,
      "Edward General Hospital",
      "Edward_General_Hospital_%28Ruddlebank%29",
    ];
    B[84][14] = [4, "Puckard Bank", "Puckard_Bank"];
    B[85][14] = [
      9,
      "St Piran's Church",
      "St._Piran%27s_Church_%28Ruddlebank%29",
    ];
    B[86][14] = [4, "Hind Bank", "Hind_Bank"];
    B[87][14] = [10, "Lynham Cinema", "Lynham_Cinema"];
    B[88][14] = [13, "Hulin Drive Fire Station", "Hulin_Drive_Fire_Station"];
    B[89][14] = [30, "Brocbury Drive", "Brocbury_Drive"];
    B[80][15] = [5, "Connelley Building", "The_Connelley_Building"];
    B[81][15] = [
      27,
      "Corp Boulevard Railway Station",
      "Corp_Boulevard_Railway_Station_%28Ruddlebank%29",
    ];
    B[82][15] = [31, "Handley Towers", "Handley_Towers"];
    B[83][15] = [30, "Ashbee Avenue", "Ashbee_Avenue"];
    B[84][15] = [30, "Dungey Way", "Dungey_Way"];
    B[85][15] = [8, "Cemetery", "Cemetery_15%2C85"];
    B[86][15] = [28, "Green Drive School", "Green_Drive_School"];
    B[87][15] = [32, "Warehouse", "Warehouse_15%2C87"];
    B[88][15] = [5, "Dufty Building", "The_Dufty_Building"];
    B[89][15] = [30, "Marke Avenue", "Marke_Avenue"];
    B[80][16] = [30, "Roncoroni Place", "Roncoroni_Place"];
    B[81][16] = [2, "Holmes Arms", "The_Holmes_Arms"];
    B[82][16] = [16, "Rabjohns Hotel", "The_Rabjohns_Hotel"];
    B[83][16] = [5, "Coopey Building", "The_Coopey_Building"];
    B[84][16] = [5, "Furzer Building", "The_Furzer_Building"];
    B[85][16] = [4, "Dudden Bank", "Dudden_Bank"];
    B[86][16] = [30, "Atwood Row", "Atwood_Row"];
    B[87][16] = [32, "Warehouse", "Warehouse_16%2C87"];
    B[88][16] = [30, "Baldwin Square", "Baldwin_Square"];
    B[89][16] = [33, "Wasteland", "Wasteland_16%2C89"];
    B[80][17] = [30, "Dolbridge Street", "Dolbridge_Street_%28Ruddlebank%29"];
    B[81][17] = [
      25,
      "Suter Boulevard Police Dept",
      "Suter_Boulevard_Police_Department",
    ];
    B[82][17] = [9, "St Emma's Church", "St._Emma%27s_Church"];
    B[83][17] = [8, "Cemetery", "Cemetery_17%2C83"];
    B[84][17] = [12, "Factory", "Factory_17%2C84"];
    B[85][17] = [23, "Panes Building", "The_Panes_Building_%28Ruddlebank%29"];
    B[86][17] = [30, "Mico Boulevard", "Mico_Boulevard"];
    B[87][17] = [30, "Brabner Square", "Brabner_Square_%28Ruddlebank%29"];
    B[88][17] = [15, "Hugh General Hospital", "Hugh_General_Hospital"];
    B[89][17] = [2, "Lawson Arms", "The_Lawson_Arms"];
    B[80][18] = [30, "Hammond Place", "Hammond_Place"];
    B[81][18] = [
      25,
      "Knapp Boulevard Police Dept",
      "Knapp_Boulevard_Police_Department",
    ];
    B[82][18] = [16, "Baillie Hotel", "The_Baillie_Hotel"];
    B[83][18] = [10, "Major Cinema", "Major_Cinema"];
    B[84][18] = [30, "Horditch Lane", "Horditch_Lane"];
    B[85][18] = [24, "Jerrad Park", "Jerrad_Park"];
    B[86][18] = [33, "Wasteland", "Wasteland_18%2C86"];
    B[87][18] = [5, "Shearn Building", "The_Shearn_Building"];
    B[88][18] = [32, "Warehouse", "Warehouse_18%2C88"];
    B[89][18] = [23, "Sainders Building", "The_Sainders_Building"];
    B[80][19] = [30, "Poncione Grove", "Poncione_Grove_%28Ruddlebank%29"];
    B[81][19] = [33, "Wasteland", "Wasteland_19%2C81"];
    B[82][19] = [23, "Cheeke Building", "The_Cheeke_Building_%28Ruddlebank%29"];
    B[83][19] = [4, "Hinckesman Bank", "Hinckesman_Bank"];
    B[84][19] = [21, "Broadway Monument", "The_Broadway_Monument"];
    B[85][19] = [12, "Factory", "Factory_19%2C85"];
    B[86][19] = [24, "Peppe Park", "Peppe_Park"];
    B[87][19] = [30, "Argent Place", "Argent_Place"];
    B[88][19] = [30, "Haslam Crescent", "Haslam_Crescent"];
    B[89][19] = [
      15,
      "Etheldreda General Hospital",
      "Etheldreda_General_Hospital_%28Ruddlebank%29",
    ];

    // ------------------------------------------------
    // Gibsonton
    // ------------------------------------------------
    B[80][20] = [15, "St Alexander's Hospital", "St._Alexander%27s_Hospital"];
    B[81][20] = [19, "Tompson Mall", "Tompson_Mall"];
    B[82][20] = [19, "Tompson Mall", "Tompson_Mall"];
    B[83][20] = [30, "Butler Avenue", "Butler_Avenue_%28Lockettside%29"];
    B[84][20] = [
      27,
      "Guppey Place Railway Station",
      "Guppey_Place_Railway_Station",
    ];
    B[85][20] = [
      27,
      "Brooks Row Railway Station",
      "Brooks_Row_Railway_Station",
    ];
    B[86][20] = [28, "Rodford Alley School", "Rodford_Alley_School"];
    B[87][20] = [
      25,
      "Frossard Place Police Dept",
      "Frossard_Place_Police_Department",
    ];
    B[88][20] = [30, "Quarles Grove", "Quarles_Grove"];
    B[89][20] = [30, "Preston Avenue", "Preston_Avenue"];
    B[80][21] = [30, "Ingram Avenue", "Ingram_Avenue"];
    B[81][21] = [19, "Tompson Mall", "Tompson_Mall"];
    B[82][21] = [19, "Tompson Mall", "Tompson_Mall"];
    B[83][21] = [33, "Wasteland", "Wasteland_21%2C83"];
    B[84][21] = [30, "Boteley Square", "Boteley_Square"];
    B[85][21] = [30, "Tompsett Plaza", "Tompsett_Plaza"];
    B[86][21] = [
      15,
      "St John's Hospital",
      "St._John%27s_Hospital_%28Lockettside%29",
    ];
    B[87][21] = [6, "Carpark", "Carpark_21%2C87"];
    B[88][21] = [4, "Brent Bank", "Brent_Bank"];
    B[89][21] = [30, "Harrill Avenue", "Harrill_Avenue"];
    B[80][22] = [30, "Jenner Lane", "Jenner_Lane"];
    B[81][22] = [5, "Beer Building", "The_Beer_Building"];
    B[82][22] = [
      9,
      "St Irenaeus's Church",
      "St._Irenaeus%27s_Church_%28Lockettside%29",
    ];
    B[83][22] = [
      27,
      "Hind Crescent Railway Station",
      "Hind_Crescent_Railway_Station",
    ];
    B[84][22] = [5, "Craske Building", "The_Craske_Building"];
    B[85][22] = [30, "Higgin Crescent", "Higgin_Crescent"];
    B[86][22] = [24, "Connolly Park", "Connolly_Park"];
    B[87][22] = [33, "Wasteland", "Wasteland_22%2C87"];
    B[88][22] = [30, "Pilkington Road", "Pilkington_Road"];
    B[89][22] = [30, "Buttle Street", "Buttle_Street"];
    B[80][23] = [2, "Whitmarsh Arms", "The_Whitmarsh_Arms"];
    B[81][23] = [30, "Maney Drive", "Maney_Drive_%28Lockettside%29"];
    B[82][23] = [30, "Cookson Drive", "Cookson_Drive"];
    B[83][23] = [30, "Gilpin Row", "Gilpin_Row"];
    B[84][23] = [
      25,
      "Bridgewater Crescent Police Dept",
      "Bridgewater_Crescent_Police_Department",
    ];
    B[85][23] = [31, "Stowell Towers", "Stowell_Towers"];
    B[86][23] = [4, "Coe Bank", "Coe_Bank"];
    B[87][23] = [13, "Money Row Fire Station", "Money_Row_Fire_Station"];
    B[88][23] = [13, "Bugby Place Fire Station", "Bugby_Place_Fire_Station"];
    B[89][23] = [30, "Lewitt Alley", "Lewitt_Alley"];
    B[80][24] = [32, "Warehouse", "Warehouse_24%2C80"];
    B[81][24] = [17, "Junkyard", "Junkyard_24%2C81"];
    B[82][24] = [13, "Dinham Row Fire Station", "Dinham_Row_Fire_Station"];
    B[83][24] = [30, "Thorpe Crescent", "Thorpe_Crescent"];
    B[84][24] = [
      25,
      "Grandon Place Police Dept",
      "Grandon_Place_Police_Department_%28Lockettside%29",
    ];
    B[85][24] = [5, "Jolliffe Building", "The_Jolliffe_Building"];
    B[86][24] = [30, "Garle Grove", "Garle_Grove"];
    B[87][24] = [
      27,
      "Clevely Grove Railway Station",
      "Clevely_Grove_Railway_Station",
    ];
    B[88][24] = [9, "St Dismas's Church", "St._Dismas%27s_Church"];
    B[89][24] = [30, "Revel Plaza", "Revel_Plaza"];
    B[80][25] = [17, "Junkyard", "Junkyard_25%2C80"];
    B[81][25] = [30, "Beel Lane", "Beel_Lane"];
    B[82][25] = [30, "Layton Row", "Layton_Row"];
    B[83][25] = [32, "Warehouse", "Warehouse_25%2C83"];
    B[84][25] = [31, "Lindsey Towers", "Lindsey_Towers"];
    B[85][25] = [17, "Junkyard", "Junkyard_25%2C85"];
    B[86][25] = [30, "Author Row", "Author_Row_%28Lockettside%29"];
    B[87][25] = [17, "Junkyard", "Junkyard_25%2C87"];
    B[88][25] = [5, "Arundell Building", "The_Arundell_Building"];
    B[89][25] = [8, "Cemetery", "Cemetery_25%2C89"];
    B[80][26] = [2, "Doran Arms", "The_Doran_Arms"];
    B[81][26] = [13, "Pimm Walk Fire Station", "Pimm_Walk_Fire_Station"];
    B[82][26] = [30, "Crobrow Way", "Crobrow_Way"];
    B[83][26] = [17, "Junkyard", "Junkyard_26%2C83"];
    B[84][26] = [30, "Kendall Row", "Kendall_Row"];
    B[85][26] = [11, "Club Frankland", "Club_Frankland"];
    B[86][26] = [
      13,
      "Beddington Walk Fire Station",
      "Beddington_Walk_Fire_Station",
    ];
    B[87][26] = [3, "Stewart Auto Repair", "Stewart_Auto_Repair"];
    B[88][26] = [5, "Linthorne Building", "The_Linthorne_Building"];
    B[89][26] = [30, "Roode Road", "Roode_Road"];
    B[80][27] = [6, "Carpark", "Carpark_27%2C80"];
    B[81][27] = [
      30,
      "Pullinger Boulevard",
      "Pullinger_Boulevard_%28Lockettside%29",
    ];
    B[82][27] = [5, "Haywood Building", "The_Haywood_Building"];
    B[83][27] = [22, "Beacham Museum", "The_Beacham_Museum"];
    B[84][27] = [23, "Pursey Building", "The_Pursey_Building"];
    B[85][27] = [30, "Lumb Street", "Lumb_Street"];
    B[86][27] = [
      9,
      "St Lucius's Church",
      "St._Lucius%27s_Church_%28Lockettside%29",
    ];
    B[87][27] = [30, "Chown Avenue", "Chown_Avenue"];
    B[88][27] = [30, "Rillie Grove", "Rillie_Grove"];
    B[89][27] = [30, "Balle Avenue", "Balle_Avenue"];
    B[80][28] = [5, "Hayden Building", "The_Hayden_Building"];
    B[81][28] = [30, "Newth Lane", "Newth_Lane"];
    B[82][28] = [30, "Rackman Row", "Rackman_Row"];
    B[83][28] = [22, "Browne Museum", "The_Browne_Museum"];
    B[84][28] = [30, "Ree Alley", "Ree_Alley"];
    B[85][28] = [5, "Duley Building", "The_Duley_Building"];
    B[86][28] = [
      15,
      "Josaphat General Hospital",
      "Josaphat_General_Hospital_%28Lockettside%29",
    ];
    B[87][28] = [8, "Cemetery", "Cemetery_28%2C87"];
    B[88][28] = [
      27,
      "Hoyle Place Railway Station",
      "Hoyle_Place_Railway_Station",
    ];
    B[89][28] = [30, "Woolcott Avenue", "Woolcott_Avenue"];
    B[80][29] = [10, "Vine Cinema", "Vine_Cinema"];
    B[81][29] = [33, "Wasteland", "Wasteland_29%2C81"];
    B[82][29] = [30, "Pierson Alley", "Pierson_Alley"];
    B[83][29] = [5, "Danger Building", "The_Danger_Building"];
    B[84][29] = [24, "Burrill Park", "Burrill_Park"];
    B[85][29] = [28, "How Walk School", "How_Walk_School"];
    B[86][29] = [5, "Wadds Building", "The_Wadds_Building"];
    B[87][29] = [30, "Dorlan Avenue", "Dorlan_Avenue"];
    B[88][29] = [31, "Marke Towers", "Marke_Towers"];
    B[89][29] = [30, "Sumsion Crescent", "Sumsion_Crescent"];

    // ------------------------------------------------
    // Spracklingbank
    // ------------------------------------------------
    B[80][30] = [30, "Broadway Drive", "Broadway_Drive"];
    B[81][30] = [23, "Highton Building", "The_Highton_Building"];
    B[82][30] = [16, "Himbury Hotel", "The_Himbury_Hotel"];
    B[83][30] = [31, "Bone Towers", "Bone_Towers"];
    B[84][30] = [30, "Munkton Walk", "Munkton_Walk"];
    B[85][30] = [16, "Vivian Motel", "The_Vivian_Motel"];
    B[86][30] = [24, "Denham Park", "Denham_Park"];
    B[87][30] = [30, "Campbell Square", "Campbell_Square"];
    B[88][30] = [3, "Foxwell Auto Repair", "Foxwell_Auto_Repair"];
    B[89][30] = [30, "Higgon Lane", "Higgon_Lane"];
    B[80][31] = [
      15,
      "St Matthew's Hospital",
      "St._Matthew%27s_Hospital_%28Dartside%29",
    ];
    B[81][31] = [
      27,
      "Downing Plaza Railway Station",
      "Downing_Plaza_Railway_Station",
    ];
    B[82][31] = [30, "Corless Way", "Corless_Way"];
    B[83][31] = [4, "Swanborough Bank", "Swanborough_Bank"];
    B[84][31] = [5, "Curley Building", "The_Curley_Building"];
    B[85][31] = [12, "Factory", "Factory_31%2C85"];
    B[86][31] = [30, "Alderson Walk", "Alderson_Walk_%28Dartside%29"];
    B[87][31] = [9, "St Gall's Church", "St._Gall%27s_Church_%28Dartside%29"];
    B[88][31] = [6, "Carpark", "Carpark_31%2C88"];
    B[89][31] = [33, "Wasteland", "Wasteland_31%2C89"];
    B[80][32] = [31, "Pooll Towers", "Pooll_Towers"];
    B[81][32] = [33, "Wasteland", "Wasteland_32%2C81"];
    B[82][32] = [30, "Longson Square", "Longson_Square"];
    B[83][32] = [33, "Wasteland", "Wasteland_32%2C83"];
    B[84][32] = [30, "Trippick Plaza", "Trippick_Plaza"];
    B[85][32] = [30, "Woodroffe Grove", "Woodroffe_Grove_%28Dartside%29"];
    B[86][32] = [22, "Stock Museum", "The_Stock_Museum"];
    B[87][32] = [8, "Cemetery", "Cemetery_32%2C87"];
    B[88][32] = [30, "Taplin Crescent", "Taplin_Crescent"];
    B[89][32] = [13, "Kebby Street Fire Station", "Kebby_Street_Fire_Station"];
    B[80][33] = [
      27,
      "Morliere Avenue Railway Station",
      "Morliere_Avenue_Railway_Station",
    ];
    B[81][33] = [33, "Wasteland", "Wasteland_33%2C81"];
    B[82][33] = [4, "Mechel Bank", "Mechel_Bank"];
    B[83][33] = [30, "Witchell Road", "Witchell_Road"];
    B[84][33] = [2, "Barstow Arms", "The_Barstow_Arms"];
    B[85][33] = [33, "Wasteland", "Wasteland_33%2C85"];
    B[86][33] = [30, "Knott Drive", "Knott_Drive"];
    B[87][33] = [30, "Ransom Grove", "Ransom_Grove"];
    B[88][33] = [30, "Hopping Alley", "Hopping_Alley"];
    B[89][33] = [17, "Junkyard", "Junkyard_33%2C89"];
    B[80][34] = [11, "Club Chandler", "Club_Chandler"];
    B[81][34] = [15, "Oswald General Hospital", "Oswald_General_Hospital"];
    B[82][34] = [
      27,
      "Bowerman Grove Railway Station",
      "Bowerman_Grove_Railway_Station",
    ];
    B[83][34] = [30, "Wellstead Crescent", "Wellstead_Crescent"];
    B[84][34] = [30, "Baker Place", "Baker_Place"];
    B[85][34] = [33, "Wasteland", "Wasteland_34%2C85"];
    B[86][34] = [30, "Postlethwaite Boulevard", "Postlethwaite_Boulevard"];
    B[87][34] = [
      15,
      "St Ferreol's Hospital",
      "St._Ferreol%27s_Hospital_%28Dartside%29",
    ];
    B[88][34] = [5, "Rudd Building", "The_Rudd_Building"];
    B[89][34] = [5, "Sweetman Building", "The_Sweetman_Building"];
    B[80][35] = [30, "Foyle Alley", "Foyle_Alley"];
    B[81][35] = [4, "Wigdahl Bank", "Wigdahl_Bank"];
    B[82][35] = [30, "Horsford Road", "Horsford_Road"];
    B[83][35] = [16, "Schalch Hotel", "The_Schalch_Hotel"];
    B[84][35] = [
      13,
      "Dunford Lane Fire Station",
      "Dunford_Lane_Fire_Station_%28Dartside%29",
    ];
    B[85][35] = [12, "Factory", "Factory_35%2C85"];
    B[86][35] = [33, "Wasteland", "Wasteland_35%2C86"];
    B[87][35] = [33, "Wasteland", "Wasteland_35%2C87"];
    B[88][35] = [30, "Hook Avenue", "Hook_Avenue_%28Dartside%29"];
    B[89][35] = [9, "St Ferreol's Church", "St._Ferreol%27s_Church"];
    B[80][36] = [30, "Softley Row", "Softley_Row"];
    B[81][36] = [30, "Goddard Square", "Goddard_Square"];
    B[82][36] = [30, "Crumpler Road", "Crumpler_Road"];
    B[83][36] = [23, "Bagnall Building", "The_Bagnall_Building"];
    B[84][36] = [31, "Samborne Towers", "Samborne_Towers"];
    B[85][36] = [30, "Mays Way", "Mays_Way_%28Dartside%29"];
    B[86][36] = [5, "Caplen Building", "The_Caplen_Building"];
    B[87][36] = [15, "St Jeremy's Hospital", "St._Jeremy%27s_Hospital"];
    B[88][36] = [15, "St Faustina's Hospital", "St._Faustina%27s_Hospital"];
    B[89][36] = [5, "Carle Building", "The_Carle_Building"];
    B[80][37] = [30, "Maskell Avenue", "Maskell_Avenue"];
    B[81][37] = [21, "Abarrow Monument", "The_Abarrow_Monument"];
    B[82][37] = [30, "Mapledoram Avenue", "Mapledoram_Avenue"];
    B[83][37] = [
      27,
      "Pollet Street Railway Station",
      "Pollet_Street_Railway_Station",
    ];
    B[84][37] = [33, "Wasteland", "Wasteland_37%2C84"];
    B[85][37] = [33, "Wasteland", "Wasteland_37%2C85"];
    B[86][37] = [32, "Warehouse", "Warehouse_37%2C86"];
    B[87][37] = [30, "Lyng Street", "Lyng_Street"];
    B[88][37] = [15, "St Patrick's Hospital", "St._Patrick%27s_Hospital"];
    B[89][37] = [32, "Warehouse", "Warehouse_37%2C89"];
    B[80][38] = [30, "Kearney Alley", "Kearney_Alley"];
    B[81][38] = [30, "Topham Crescent", "Topham_Crescent"];
    B[82][38] = [16, "Duccan Motel", "The_Duccan_Motel"];
    B[83][38] = [4, "Beete Bank", "Beete_Bank"];
    B[84][38] = [17, "Junkyard", "Junkyard_38%2C84"];
    B[85][38] = [
      25,
      "Blakesley Grove Police Dept",
      "Blakesley_Grove_Police_Department",
    ];
    B[86][38] = [
      25,
      "Shapr Boulevard Police Dept",
      "Shapr_Boulevard_Police_Department",
    ];
    B[87][38] = [12, "Factory", "Factory_38%2C87"];
    B[88][38] = [
      25,
      "Brailsford Plaza Police Dept",
      "Brailsford_Plaza_Police_Department",
    ];
    B[89][38] = [2, "Lumbard Arms", "The_Lumbard_Arms"];
    B[80][39] = [12, "Factory", "Factory_39%2C80"];
    B[81][39] = [21, "Lahey Monument", "The_Lahey_Monument"];
    B[82][39] = [4, "Bellhouse Bank", "Bellhouse_Bank"];
    B[83][39] = [30, "Mist Way", "Mist_Way"];
    B[84][39] = [16, "Harrold Hotel", "The_Harrold_Hotel"];
    B[85][39] = [
      15,
      "Tikhon General Hospital",
      "Tikhon_General_Hospital_%28Dartside%29",
    ];
    B[86][39] = [6, "Carpark", "Carpark_39%2C86"];
    B[87][39] = [33, "Wasteland", "Wasteland_39%2C87"];
    B[88][39] = [11, "Club Bennetts", "Club_Bennetts_%28Dartside%29"];
    B[89][39] = [30, "Blatch Lane", "Blatch_Lane"];

    // ------------------------------------------------
    // Pitneybank
    // ------------------------------------------------
    B[80][40] = [33, "Wasteland", "Wasteland_40%2C80"];
    B[81][40] = [22, "Charbonnier Museum", "The_Charbonnier_Museum"];
    B[82][40] = [31, "Canter Towers", "Canter_Towers"];
    B[83][40] = [30, "Haddock Walk", "Haddock_Walk"];
    B[84][40] = [18, "Winmill Library", "Winmill_Library"];
    B[85][40] = [30, "Bugden Avenue", "Bugden_Avenue"];
    B[86][40] = [30, "Taylour Lane", "Taylour_Lane"];
    B[87][40] = [30, "Doble Way", "Doble_Way"];
    B[88][40] = [21, "Somers Monument", "The_Somers_Monument"];
    B[89][40] = [30, "Crover Walk", "Crover_Walk"];
    B[80][41] = [12, "Factory", "Factory_41%2C80"];
    B[81][41] = [5, "Glossop Building", "The_Glossop_Building"];
    B[82][41] = [
      23,
      "Luscombe Building",
      "The_Luscombe_Building_%28Kinch_Heights%29",
    ];
    B[83][41] = [2, "Noyce Arms", "The_Noyce_Arms"];
    B[84][41] = [16, "Henning Hotel", "The_Henning_Hotel"];
    B[85][41] = [16, "Grimley Motel", "The_Grimley_Motel"];
    B[86][41] = [
      23,
      "Sharman Building",
      "The_Sharman_Building_%28Kinch_Heights%29",
    ];
    B[87][41] = [11, "Club Veysey", "Club_Veysey"];
    B[88][41] = [30, "Burrows Walk", "Burrows_Walk"];
    B[89][41] = [6, "Carpark", "Carpark_41%2C89"];
    B[80][42] = [5, "Hartland Building", "The_Hartland_Building"];
    B[81][42] = [6, "Carpark", "Carpark_42%2C81"];
    B[82][42] = [30, "Burdekin Way", "Burdekin_Way"];
    B[83][42] = [5, "Pouncy Building", "The_Pouncy_Building"];
    B[84][42] = [30, "McMullen Drive", "McMullen_Drive"];
    B[85][42] = [
      9,
      "St Aloysius's Church",
      "St._Aloysius%27s_Church_%28Kinch_Heights%29",
    ];
    B[86][42] = [31, "Hendrich Towers", "Hendrich_Towers"];
    B[87][42] = [30, "Pitman Grove", "Pitman_Grove"];
    B[88][42] = [28, "McNally Crescent School", "McNally_Crescent_School"];
    B[89][42] = [15, "St Agatho's Hospital", "St._Agatho%27s_Hospital"];
    B[80][43] = [4, "Harmsworth Bank", "Harmsworth_Bank"];
    B[81][43] = [30, "Newell Avenue", "Newell_Avenue"];
    B[82][43] = [30, "Malpas Street", "Malpas_Street"];
    B[83][43] = [21, "Burston Monument", "The_Burston_Monument"];
    B[84][43] = [30, "Pilcher Avenue", "Pilcher_Avenue_%28Kinch_Heights%29"];
    B[85][43] = [8, "Cemetery", "Cemetery_43%2C85"];
    B[86][43] = [22, "Eden Museum", "The_Eden_Museum"];
    B[87][43] = [15, "St Hubertus's Hospital", "St._Hubertus%27s_Hospital"];
    B[88][43] = [30, "Gane Square", "Gane_Square"];
    B[89][43] = [16, "Ensor Motel", "The_Ensor_Motel"];
    B[80][44] = [30, "Kemp Walk", "Kemp_Walk"];
    B[81][44] = [6, "Carpark", "Carpark_44%2C81"];
    B[82][44] = [18, "Rather Library", "Rather_Library"];
    B[83][44] = [30, "Sanford Crescent", "Sanford_Crescent"];
    B[84][44] = [
      27,
      "Samways Walk Railway Station",
      "Samways_Walk_Railway_Station",
    ];
    B[85][44] = [28, "Kebby Way School", "Kebby_Way_School"];
    B[86][44] = [30, "Tulk Grove", "Tulk_Grove_%28Kinch_Heights%29"];
    B[87][44] = [30, "Newbury Street", "Newbury_Street"];
    B[88][44] = [3, "Haine Auto Repair", "Haine_Auto_Repair"];
    B[89][44] = [30, "Durie Walk", "Durie_Walk"];
    B[80][45] = [
      13,
      "Lambourn Walk Fire Station",
      "Lambourn_Walk_Fire_Station",
    ];
    B[81][45] = [30, "Shaw Road", "Shaw_Road"];
    B[82][45] = [30, "Burrowes Avenue", "Burrowes_Avenue"];
    B[83][45] = [15, "Urban General Hospital", "Urban_General_Hospital"];
    B[84][45] = [
      25,
      "Milverton Place Police Dept",
      "Milverton_Place_Police_Department",
    ];
    B[85][45] = [23, "Nevill Building", "The_Nevill_Building"];
    B[86][45] = [6, "Carpark", "Carpark_45%2C86"];
    B[87][45] = [30, "Michel Square", "Michel_Square"];
    B[88][45] = [10, "Finlay Cinema", "Finlay_Cinema"];
    B[89][45] = [22, "Swanborough Museum", "The_Swanborough_Museum"];
    B[80][46] = [30, "Dirkinson Drive", "Dirkinson_Drive"];
    B[81][46] = [28, "Ravenhill Plaza School", "Ravenhill_Plaza_School"];
    B[82][46] = [30, "Eadie Drive", "Eadie_Drive"];
    B[83][46] = [11, "Club Steager", "Club_Steager"];
    B[84][46] = [17, "Junkyard", "Junkyard_46%2C84"];
    B[85][46] = [30, "Troake Road", "Troake_Road_%28Kinch_Heights%29"];
    B[86][46] = [30, "Vranch Walk", "Vranch_Walk"];
    B[87][46] = [
      13,
      "Honeybone Boulevard Fire Station",
      "Honeybone_Boulevard_Fire_Station",
    ];
    B[88][46] = [13, "Giverd Drive Fire Station", "Giverd_Drive_Fire_Station"];
    B[89][46] = [32, "Warehouse", "Warehouse_46%2C89"];
    B[80][47] = [3, "Edridge Auto Repair", "Edridge_Auto_Repair"];
    B[81][47] = [18, "Glover Library", "Glover_Library"];
    B[82][47] = [30, "Pavey Street", "Pavey_Street_%28Kinch_Heights%29"];
    B[83][47] = [30, "Sanderson Road", "Sanderson_Road"];
    B[84][47] = [24, "Crawley Park", "Crawley_Park"];
    B[85][47] = [30, "Vile Crescent", "Vile_Crescent"];
    B[86][47] = [
      30,
      "Whitemore Boulevard",
      "Whitemore_Boulevard_%28Kinch_Heights%29",
    ];
    B[87][47] = [
      9,
      "St Aidan's Church",
      "St._Aidan%27s_Church_%28Kinch_Heights%29",
    ];
    B[88][47] = [
      9,
      "St Christopher's Church",
      "St._Christopher%27s_Church_%28Kinch_Heights%29",
    ];
    B[89][47] = [13, "Nelmes Walk Fire Station", "Nelmes_Walk_Fire_Station"];
    B[80][48] = [30, "Geard Avenue", "Geard_Avenue"];
    B[81][48] = [30, "Cudworth Square", "Cudworth_Square"];
    B[82][48] = [31, "Witt Towers", "Witt_Towers"];
    B[83][48] = [30, "Boshier Walk", "Boshier_Walk"];
    B[84][48] = [24, "Shaw Park", "Shaw_Park"];
    B[85][48] = [30, "Davies Way", "Davies_Way"];
    B[86][48] = [13, "Gibbes Drive Fire Station", "Gibbes_Drive_Fire_Station"];
    B[87][48] = [22, "Lethbridge Museum", "The_Lethbridge_Museum"];
    B[88][48] = [8, "Cemetery", "Cemetery_48%2C88"];
    B[89][48] = [16, "Serrell Hotel", "The_Serrell_Hotel"];
    B[80][49] = [24, "Steeds Park", "Steeds_Park"];
    B[81][49] = [30, "Holbrook Drive", "Holbrook_Drive"];
    B[82][49] = [
      13,
      "Gleeson Square Fire Station",
      "Gleeson_Square_Fire_Station",
    ];
    B[83][49] = [21, "Lovering Monument", "The_Lovering_Monument"];
    B[84][49] = [30, "Sykes Grove", "Sykes_Grove"];
    B[85][49] = [11, "Club Sroud", "Club_Sroud"];
    B[86][49] = [9, "St Felix's Church", "St._Felix%27s_Church"];
    B[87][49] = [9, "St Pontian's Church", "St._Pontian%27s_Church"];
    B[88][49] = [8, "Cemetery", "Cemetery_49%2C88"];
    B[89][49] = [4, "Feldstein Bank", "Feldstein_Bank"];

    // ------------------------------------------------
    // Pegton
    // ------------------------------------------------
    B[80][50] = [
      13,
      "Merryweather Way Fire Station",
      "Merryweather_Way_Fire_Station",
    ];
    B[81][50] = [22, "Sawday Museum", "The_Sawday_Museum"];
    B[82][50] = [
      13,
      "Councell Lane Fire Station",
      "Councell_Lane_Fire_Station",
    ];
    B[83][50] = [22, "Wilson Museum", "The_Wilson_Museum"];
    B[84][50] = [
      27,
      "Gass Plaza Railway Station",
      "Gass_Plaza_Railway_Station",
    ];
    B[85][50] = [10, "Sprake Cinema", "Sprake_Cinema"];
    B[86][50] = [8, "Cemetery", "Cemetery_50%2C86"];
    B[87][50] = [11, "Club Broadbear", "Club_Broadbear"];
    B[88][50] = [15, "Piran General Hospital", "Piran_General_Hospital"];
    B[89][50] = [30, "Ginger Street", "Ginger_Street"];
    B[80][51] = [30, "Blackburn Alley", "Blackburn_Alley"];
    B[81][51] = [29, "Clapton Stadium", "Clapton_Stadium"];
    B[82][51] = [29, "Clapton Stadium", "Clapton_Stadium"];
    B[83][51] = [
      9,
      "St Timothy's Church",
      "St._Timothy%27s_Church_%28West_Grayside%29",
    ];
    B[84][51] = [11, "Club Haidon", "Club_Haidon"];
    B[85][51] = [5, "Trout Building", "The_Trout_Building"];
    B[86][51] = [6, "Carpark", "Carpark_51%2C86"];
    B[87][51] = [30, "Shalle Boulevard", "Shalle_Boulevard"];
    B[88][51] = [33, "Wasteland", "Wasteland_51%2C88"];
    B[89][51] = [
      9,
      "St Etheldreda's Church",
      "St._Etheldreda%27s_Church_%28West_Grayside%29",
    ];
    B[80][52] = [19, "Pole Mall", "Pole_Mall"];
    B[81][52] = [29, "Clapton Stadium", "Clapton_Stadium"];
    B[82][52] = [29, "Clapton Stadium", "Clapton_Stadium"];
    B[83][52] = [8, "Cemetery", "Cemetery_52%2C83"];
    B[84][52] = [22, "Paice Museum", "The_Paice_Museum"];
    B[85][52] = [30, "Bickell Way", "Bickell_Way"];
    B[86][52] = [2, "Sendell Arms", "The_Sendell_Arms"];
    B[87][52] = [10, "Telfer Cinema", "Telfer_Cinema"];
    B[88][52] = [30, "Kelloway Grove", "Kelloway_Grove_%28West_Grayside%29"];
    B[89][52] = [4, "Ambrose Bank", "Ambrose_Bank"];
    B[80][53] = [19, "Pole Mall", "Pole_Mall"];
    B[81][53] = [19, "Pole Mall", "Pole_Mall"];
    B[82][53] = [2, "Younghusband Arms", "The_Younghusband_Arms"];
    B[83][53] = [30, "Woolly Crescent", "Woolly_Crescent"];
    B[84][53] = [30, "Cullen Way", "Cullen_Way_%28West_Grayside%29"];
    B[85][53] = [17, "Junkyard", "Junkyard_53%2C85"];
    B[86][53] = [3, "Coxon Auto Repair", "Coxon_Auto_Repair"];
    B[87][53] = [30, "Clapshaw Alley", "Clapshaw_Alley"];
    B[88][53] = [11, "Club Garwood", "Club_Garwood"];
    B[89][53] = [30, "Shearman Street", "Shearman_Street"];
    B[80][54] = [30, "Pettman Alley", "Pettman_Alley_%28West_Grayside%29"];
    B[81][54] = [6, "Carpark", "Carpark_54%2C81"];
    B[82][54] = [30, "Goodenough Boulevard", "Goodenough_Boulevard"];
    B[83][54] = [30, "Stitch Row", "Stitch_Row"];
    B[84][54] = [33, "Wasteland", "Wasteland_54%2C84"];
    B[85][54] = [3, "Statham Auto Repair", "Statham_Auto_Repair"];
    B[86][54] = [30, "Restrick Road", "Restrick_Road"];
    B[87][54] = [5, "Stround Building", "The_Stround_Building"];
    B[88][54] = [30, "Glanvile Avenue", "Glanvile_Avenue"];
    B[89][54] = [30, "Branagan Way", "Branagan_Way"];
    B[80][55] = [
      5,
      "Bellamy Building",
      "The_Bellamy_Building_%28West_Grayside%29",
    ];
    B[81][55] = [30, "Herrick Walk", "Herrick_Walk"];
    B[82][55] = [30, "MacKie Street", "MacKie_Street"];
    B[83][55] = [13, "Barter Road Fire Station", "Barter_Road_Fire_Station"];
    B[84][55] = [23, "Topleaf Building", "The_Topleaf_Building"];
    B[85][55] = [6, "Carpark", "Carpark_55%2C85"];
    B[86][55] = [5, "Pyke Building", "The_Pyke_Building"];
    B[87][55] = [5, "Farrington Building", "The_Farrington_Building"];
    B[88][55] = [30, "Millar Lane", "Millar_Lane"];
    B[89][55] = [30, "Ravson Road", "Ravson_Road"];
    B[80][56] = [30, "Walrand Square", "Walrand_Square"];
    B[81][56] = [
      25,
      "Holly Crescent Police Dept",
      "Holly_Crescent_Police_Department",
    ];
    B[82][56] = [
      23,
      "Copeland Building",
      "The_Copeland_Building_%28West_Grayside%29",
    ];
    B[83][56] = [30, "Bunstone Alley", "Bunstone_Alley"];
    B[84][56] = [
      25,
      "Dampney Grove Police Dept",
      "Dampney_Grove_Police_Department",
    ];
    B[85][56] = [
      13,
      "Hodgkinson Row Fire Station",
      "Hodgkinson_Row_Fire_Station",
    ];
    B[86][56] = [5, "Stroud Building", "The_Stroud_Building"];
    B[87][56] = [30, "Kimmins Row", "Kimmins_Row"];
    B[88][56] = [15, "Egbert General Hospital", "Egbert_General_Hospital"];
    B[89][56] = [12, "Factory", "Factory_56%2C89"];
    B[80][57] = [30, "Pritchard Boulevard", "Pritchard_Boulevard"];
    B[81][57] = [5, "Gready Building", "The_Gready_Building"];
    B[82][57] = [3, "Marchia Auto Repair", "Marchia_Auto_Repair"];
    B[83][57] = [30, "London Drive", "London_Drive"];
    B[84][57] = [4, "Mowlam Bank", "Mowlam_Bank"];
    B[85][57] = [5, "Veysey Building", "The_Veysey_Building"];
    B[86][57] = [10, "Blackmore Cinema", "Blackmore_Cinema"];
    B[87][57] = [30, "Duckworth Row", "Duckworth_Row"];
    B[88][57] = [30, "Colbourne Boulevard", "Colbourne_Boulevard"];
    B[89][57] = [2, "Bailie Arms", "The_Bailie_Arms"];
    B[80][58] = [21, "Peddle Monument", "The_Peddle_Monument"];
    B[81][58] = [30, "Caunt Lane", "Caunt_Lane_%28West_Grayside%29"];
    B[82][58] = [3, "Lihou Auto Repair", "Lihou_Auto_Repair"];
    B[83][58] = [18, "Beare Library", "Beare_Library"];
    B[84][58] = [3, "Dimmock Auto Repair", "Dimmock_Auto_Repair"];
    B[85][58] = [30, "Gillen Street", "Gillen_Street"];
    B[86][58] = [3, "Gaywood Auto Repair", "Gaywood_Auto_Repair"];
    B[87][58] = [33, "Wasteland", "Wasteland_58%2C87"];
    B[88][58] = [25, "Creedy Way Police Dept", "Creedy_Way_Police_Department"];
    B[89][58] = [24, "Whetcombe Park", "Whetcombe_Park_%28West_Grayside%29"];
    B[80][59] = [24, "Pitt Park", "Pitt_Park"];
    B[81][59] = [10, "Giles Cinema", "Giles_Cinema"];
    B[82][59] = [21, "Asling Monument", "The_Asling_Monument"];
    B[83][59] = [30, "Alloway Street", "Alloway_Street"];
    B[84][59] = [31, "Wiltshire Towers", "Wiltshire_Towers"];
    B[85][59] = [28, "Ledamun Plaza School", "Ledamun_Plaza_School"];
    B[86][59] = [3, "Whensley Auto Repair", "Whensley_Auto_Repair"];
    B[87][59] = [24, "Phillipson Park", "Phillipson_Park"];
    B[88][59] = [33, "Wasteland", "Wasteland_59%2C88"];
    B[89][59] = [3, "Bythesea Auto Repair", "Bythesea_Auto_Repair"];

    // ------------------------------------------------
    // Vinetown
    // ------------------------------------------------
    B[80][60] = [3, "Holmyard Auto Repair", "Holmyard_Auto_Repair"];
    B[81][60] = [33, "Wasteland", "Wasteland_60%2C81"];
    B[82][60] = [30, "Budge Walk", "Budge_Walk"];
    B[83][60] = [
      15,
      "St Odile's Hospital",
      "St._Odile%27s_Hospital_%28East_Grayside%29",
    ];
    B[84][60] = [30, "Sparrow Row", "Sparrow_Row_%28East_Grayside%29"];
    B[85][60] = [30, "Babb Boulevard", "Babb_Boulevard"];
    B[86][60] = [11, "Club Lippett", "Club_Lippett"];
    B[87][60] = [6, "Carpark", "Carpark_60%2C87"];
    B[88][60] = [3, "Scarman Auto Repair", "Scarman_Auto_Repair"];
    B[89][60] = [21, "Wicklen Monument", "The_Wicklen_Monument"];
    B[80][61] = [24, "Gutch Park", "Gutch_Park"];
    B[81][61] = [30, "Linthorne Alley", "Linthorne_Alley"];
    B[82][61] = [33, "Wasteland", "Wasteland_61%2C82"];
    B[83][61] = [27, "Coomb Row Railway Station", "Coomb_Row_Railway_Station"];
    B[84][61] = [30, "Lilly Walk", "Lilly_Walk"];
    B[85][61] = [21, "Bingham Monument", "The_Bingham_Monument"];
    B[86][61] = [22, "Zwanenburg Museum", "The_Zwanenburg_Museum"];
    B[87][61] = [18, "Lambourn Library", "Lambourn_Library"];
    B[88][61] = [18, "Tharratt Library", "Tharratt_Library"];
    B[89][61] = [
      15,
      "Sixtus General Hospital",
      "Sixtus_General_Hospital_%28East_Grayside%29",
    ];
    B[80][62] = [12, "Factory", "Factory_62%2C80"];
    B[81][62] = [30, "Yule Boulevard", "Yule_Boulevard"];
    B[82][62] = [12, "Factory", "Factory_62%2C82"];
    B[83][62] = [30, "Poncione Grove", "Poncione_Grove_%28East_Grayside%29"];
    B[84][62] = [6, "Carpark", "Carpark_62%2C84"];
    B[85][62] = [4, "Frederick Bank", "Frederick_Bank"];
    B[86][62] = [30, "Rather Grove", "Rather_Grove"];
    B[87][62] = [30, "Laver Way", "Laver_Way"];
    B[88][62] = [2, "Spear Arms", "The_Spear_Arms"];
    B[89][62] = [13, "Boode Place Fire Station", "Boode_Place_Fire_Station"];
    B[80][63] = [32, "Warehouse", "Warehouse_63%2C80"];
    B[81][63] = [4, "Wicks Bank", "Wicks_Bank"];
    B[82][63] = [30, "Stock Grove", "Stock_Grove"];
    B[83][63] = [30, "Leonard Street", "Leonard_Street_%28East_Grayside%29"];
    B[84][63] = [30, "Boden Row", "Boden_Row"];
    B[85][63] = [6, "Carpark", "Carpark_63%2C85"];
    B[86][63] = [
      25,
      "Rodman Boulevard Police Dept",
      "Rodman_Boulevard_Police_Department",
    ];
    B[87][63] = [21, "Bligh Monument", "The_Bligh_Monument"];
    B[88][63] = [28, "Ellard Walk School", "Ellard_Walk_School"];
    B[89][63] = [23, "Angerstein Building", "The_Angerstein_Building"];
    B[80][64] = [30, "Beable Street", "Beable_Street"];
    B[81][64] = [30, "Mallett Avenue", "Mallett_Avenue"];
    B[82][64] = [3, "Shakelton Auto Repair", "Shakelton_Auto_Repair"];
    B[83][64] = [30, "Wellington Plaza", "Wellington_Plaza"];
    B[84][64] = [30, "Gooding Way", "Gooding_Way"];
    B[85][64] = [5, "Wensleydale Building", "The_Wensleydale_Building"];
    B[86][64] = [30, "Prigg Alley", "Prigg_Alley_%28East_Grayside%29"];
    B[87][64] = [30, "Pell Walk", "Pell_Walk"];
    B[88][64] = [10, "Wilbraham Cinema", "Wilbraham_Cinema"];
    B[89][64] = [30, "Pearl Street", "Pearl_Street"];
    B[80][65] = [15, "St Hilda's Hospital", "St._Hilda%27s_Hospital"];
    B[81][65] = [
      27,
      "Grice Crescent Railway Station",
      "Grice_Crescent_Railway_Station",
    ];
    B[82][65] = [2, "Thyer Arms", "The_Thyer_Arms"];
    B[83][65] = [32, "Warehouse", "Warehouse_65%2C83"];
    B[84][65] = [30, "Heeks Row", "Heeks_Row"];
    B[85][65] = [
      25,
      "Binning Way Police Dept",
      "Binning_Way_Police_Department",
    ];
    B[86][65] = [
      27,
      "Tobit Grove Railway Station",
      "Tobit_Grove_Railway_Station",
    ];
    B[87][65] = [10, "Cooksley Cinema", "Cooksley_Cinema"];
    B[88][65] = [30, "Pinchen Plaza", "Pinchen_Plaza"];
    B[89][65] = [30, "Brogan Drive", "Brogan_Drive"];
    B[80][66] = [30, "Mayne Alley", "Mayne_Alley"];
    B[81][66] = [30, "Willison Lane", "Willison_Lane"];
    B[82][66] = [31, "Cousins Towers", "Cousins_Towers"];
    B[83][66] = [30, "Baynton Street", "Baynton_Street"];
    B[84][66] = [30, "Newbould Way", "Newbould_Way"];
    B[85][66] = [3, "Liminton Auto Repair", "Liminton_Auto_Repair"];
    B[86][66] = [30, "Duffill Alley", "Duffill_Alley_%28East_Grayside%29"];
    B[87][66] = [33, "Wasteland", "Wasteland_66%2C87"];
    B[88][66] = [28, "Meeker Plaza School", "Meeker_Plaza_School"];
    B[89][66] = [5, "Stribling Building", "The_Stribling_Building"];
    B[80][67] = [30, "Rudkin Crescent", "Rudkin_Crescent"];
    B[81][67] = [16, "Wykes Motel", "The_Wykes_Motel"];
    B[82][67] = [30, "Prole Street", "Prole_Street"];
    B[83][67] = [30, "Templman Way", "Templman_Way"];
    B[84][67] = [30, "Webbey Boulevard", "Webbey_Boulevard"];
    B[85][67] = [30, "Comes Drive", "Comes_Drive"];
    B[86][67] = [17, "Junkyard", "Junkyard_67%2C86"];
    B[87][67] = [
      25,
      "Tutchen Walk Police Dept",
      "Tutchen_Walk_Police_Department",
    ];
    B[88][67] = [3, "Ha Auto Repair", "Ha_Auto_Repair"];
    B[89][67] = [30, "Purser Way", "Purser_Way"];
    B[80][68] = [17, "Junkyard", "Junkyard_68%2C80"];
    B[81][68] = [17, "Junkyard", "Junkyard_68%2C81"];
    B[82][68] = [32, "Warehouse", "Warehouse_68%2C82"];
    B[83][68] = [2, "Cresley Arms", "The_Cresley_Arms"];
    B[84][68] = [24, "Chetle Park", "Chetle_Park"];
    B[85][68] = [30, "Easthill Row", "Easthill_Row"];
    B[86][68] = [30, "Pook Walk", "Pook_Walk"];
    B[87][68] = [24, "Dart Park", "Dart_Park"];
    B[88][68] = [4, "Hallaran Bank", "Hallaran_Bank"];
    B[89][68] = [22, "Summers Museum", "The_Summers_Museum"];
    B[80][69] = [5, "Tardew Building", "The_Tardew_Building"];
    B[81][69] = [
      15,
      "Adalbert General Hospital",
      "Adalbert_General_Hospital_%28East_Grayside%29",
    ];
    B[82][69] = [
      25,
      "Witchell Street Police Dept",
      "Witchell_Street_Police_Department",
    ];
    B[83][69] = [24, "Mathews Park", "Mathews_Park"];
    B[84][69] = [30, "Shaughnessy Row", "Shaughnessy_Row"];
    B[85][69] = [6, "Carpark", "Carpark_69%2C85"];
    B[86][69] = [30, "Ambrose Street", "Ambrose_Street"];
    B[87][69] = [22, "Dury Museum", "The_Dury_Museum"];
    B[88][69] = [10, "Chilcot Cinema", "Chilcot_Cinema"];
    B[89][69] = [18, "Sparks Library", "Sparks_Library"];

    // ------------------------------------------------
    // Osmondville
    // ------------------------------------------------
    B[80][70] = [21, "Mann Monument", "The_Mann_Monument"];
    B[81][70] = [23, "Showers Building", "The_Showers_Building"];
    B[82][70] = [28, "Tidcombe Crescent School", "Tidcombe_Crescent_School"];
    B[83][70] = [
      25,
      "Gerard Crescent Police Dept",
      "Gerard_Crescent_Police_Department",
    ];
    B[84][70] = [32, "Warehouse", "Warehouse_70%2C84"];
    B[85][70] = [5, "Burton Building", "The_Burton_Building"];
    B[86][70] = [30, "Quantock Row", "Quantock_Row"];
    B[87][70] = [30, "Comitty Drive", "Comitty_Drive"];
    B[88][70] = [16, "Nurley Motel", "The_Nurley_Motel"];
    B[89][70] = [28, "Brixey Boulevard School", "Brixey_Boulevard_School"];
    B[80][71] = [30, "Peppin Way", "Peppin_Way"];
    B[81][71] = [17, "Junkyard", "Junkyard_71%2C81"];
    B[82][71] = [30, "Delaney Square", "Delaney_Square"];
    B[83][71] = [30, "Hewer Drive", "Hewer_Drive"];
    B[84][71] = [9, "St Rosalia's Church", "St._Rosalia%27s_Church"];
    B[85][71] = [5, "Glessell Building", "The_Glessell_Building"];
    B[86][71] = [6, "Carpark", "Carpark_71%2C86"];
    B[87][71] = [18, "Meetcham Library", "Meetcham_Library"];
    B[88][71] = [30, "Lovell Alley", "Lovell_Alley"];
    B[89][71] = [5, "Tryme Building", "The_Tryme_Building_%28Scarletwood%29"];
    B[80][72] = [22, "Cari Museum", "The_Cari_Museum"];
    B[81][72] = [5, "Rawkins Building", "The_Rawkins_Building"];
    B[82][72] = [32, "Warehouse", "Warehouse_72%2C82"];
    B[83][72] = [17, "Junkyard", "Junkyard_72%2C83"];
    B[84][72] = [8, "Cemetery", "Cemetery_72%2C84"];
    B[85][72] = [23, "Sealey Building", "The_Sealey_Building"];
    B[86][72] = [32, "Warehouse", "Warehouse_72%2C86"];
    B[87][72] = [
      27,
      "Turnock Drive Railway Station",
      "Turnock_Drive_Railway_Station",
    ];
    B[88][72] = [13, "Karnaus Row Fire Station", "Karnaus_Row_Fire_Station"];
    B[89][72] = [31, "Luellin Towers", "Luellin_Towers"];
    B[80][73] = [28, "Savery Alley School", "Savery_Alley_School"];
    B[81][73] = [6, "Carpark", "Carpark_73%2C81"];
    B[82][73] = [6, "Carpark", "Carpark_73%2C82"];
    B[83][73] = [30, "Lockwood Way", "Lockwood_Way"];
    B[84][73] = [30, "Prendergast Place", "Prendergast_Place"];
    B[85][73] = [30, "Levett Row", "Levett_Row"];
    B[86][73] = [5, "Garniss Building", "The_Garniss_Building"];
    B[87][73] = [30, "Stayner Road", "Stayner_Road"];
    B[88][73] = [
      15,
      "St Telesphorus's Hospital",
      "St._Telesphorus%27s_Hospital",
    ];
    B[89][73] = [31, "Adlam Towers", "Adlam_Towers"];
    B[80][74] = [16, "Streets Hotel", "The_Streets_Hotel"];
    B[81][74] = [6, "Carpark", "Carpark_74%2C81"];
    B[82][74] = [32, "Warehouse", "Warehouse_74%2C82"];
    B[83][74] = [4, "Cummings Bank", "Cummings_Bank"];
    B[84][74] = [33, "Wasteland", "Wasteland_74%2C84"];
    B[85][74] = [16, "Bentley Hotel", "The_Bentley_Hotel"];
    B[86][74] = [30, "Humphrey Lane", "Humphrey_Lane"];
    B[87][74] = [
      15,
      "St Spyridon's Hospital",
      "St._Spyridon%27s_Hospital_%28Scarletwood%29",
    ];
    B[88][74] = [5, "Basson Building", "The_Basson_Building"];
    B[89][74] = [
      25,
      "Hillard Road Police Dept",
      "Hillard_Road_Police_Department",
    ];
    B[80][75] = [12, "Factory", "Factory_75%2C80"];
    B[81][75] = [32, "Warehouse", "Warehouse_75%2C81"];
    B[82][75] = [33, "Wasteland", "Wasteland_75%2C82"];
    B[83][75] = [28, "Horsington Grove School", "Horsington_Grove_School"];
    B[84][75] = [11, "Club Cort", "Club_Cort"];
    B[85][75] = [30, "Scanes Place", "Scanes_Place"];
    B[86][75] = [2, "Draper Arms", "The_Draper_Arms"];
    B[87][75] = [32, "Warehouse", "Warehouse_75%2C87"];
    B[88][75] = [5, "Angell Building", "The_Angell_Building"];
    B[89][75] = [5, "Sever Building", "The_Sever_Building"];
    B[80][76] = [11, "Club Stringfellow", "Club_Stringfellow"];
    B[81][76] = [13, "Mellish Walk Fire Station", "Mellish_Walk_Fire_Station"];
    B[82][76] = [3, "Bland Auto Repair", "Bland_Auto_Repair"];
    B[83][76] = [4, "Methringham Bank", "Methringham_Bank"];
    B[84][76] = [5, "Stark Building", "The_Stark_Building"];
    B[85][76] = [24, "Ledward Park", "Ledward_Park"];
    B[86][76] = [
      5,
      "Bondfield Building",
      "The_Bondfield_Building_%28Scarletwood%29",
    ];
    B[87][76] = [11, "Club Strudwick", "Club_Strudwick"];
    B[88][76] = [30, "Nelmes Plaza", "Nelmes_Plaza"];
    B[89][76] = [30, "Maguire Avenue", "Maguire_Avenue"];
    B[80][77] = [30, "Hannigan Drive", "Hannigan_Drive"];
    B[81][77] = [30, "Broadbelt Alley", "Broadbelt_Alley"];
    B[82][77] = [30, "Greenwood Drive", "Greenwood_Drive"];
    B[83][77] = [30, "Cornillon Avenue", "Cornillon_Avenue"];
    B[84][77] = [30, "Wanstall Road", "Wanstall_Road"];
    B[85][77] = [33, "Wasteland", "Wasteland_77%2C85"];
    B[86][77] = [5, "Barratt Building", "The_Barratt_Building"];
    B[87][77] = [21, "Ilderton Monument", "The_Ilderton_Monument"];
    B[88][77] = [16, "Beech Motel", "The_Beech_Motel"];
    B[89][77] = [30, "Ponting Alley", "Ponting_Alley"];
    B[80][78] = [5, "Toms Building", "The_Toms_Building"];
    B[81][78] = [
      27,
      "Leave Lane Railway Station",
      "Leave_Lane_Railway_Station",
    ];
    B[82][78] = [5, "Trollope Building", "The_Trollope_Building"];
    B[83][78] = [12, "Factory", "Factory_78%2C83"];
    B[84][78] = [17, "Junkyard", "Junkyard_78%2C84"];
    B[85][78] = [6, "Carpark", "Carpark_78%2C85"];
    B[86][78] = [30, "Pryer Drive", "Pryer_Drive"];
    B[87][78] = [32, "Warehouse", "Warehouse_78%2C87"];
    B[88][78] = [30, "Doddimeade Crescent", "Doddimeade_Crescent"];
    B[89][78] = [10, "Gillespie Cinema", "Gillespie_Cinema"];
    B[80][79] = [30, "Castlehow Avenue", "Castlehow_Avenue"];
    B[81][79] = [5, "Jarrett Building", "The_Jarrett_Building"];
    B[82][79] = [17, "Junkyard", "Junkyard_79%2C82"];
    B[83][79] = [30, "Gayleard Place", "Gayleard_Place"];
    B[84][79] = [23, "Tompson Building", "The_Tompson_Building"];
    B[85][79] = [30, "Shwalbe Crescent", "Shwalbe_Crescent"];
    B[86][79] = [31, "Page Towers", "Page_Towers"];
    B[87][79] = [5, "Mickleroy Building", "The_Mickleroy_Building"];
    B[88][79] = [30, "Drennan Square", "Drennan_Square"];
    B[89][79] = [2, "Ottewill Arms", "The_Ottewill_Arms"];

    // ------------------------------------------------
    // Pennville
    // ------------------------------------------------
    B[80][80] = [5, "Rolls Building", "The_Rolls_Building"];
    B[81][80] = [30, "Brennan Walk", "Brennan_Walk"];
    B[82][80] = [10, "Woolven Cinema", "Woolven_Cinema"];
    B[83][80] = [31, "Cridland Towers", "Cridland_Towers"];
    B[84][80] = [5, "Whish Building", "The_Whish_Building_%28Pennville%29"];
    B[85][80] = [5, "Phillis Building", "The_Phillis_Building"];
    B[86][80] = [30, "Mattocke Street", "Mattocke_Street"];
    B[87][80] = [33, "Wasteland", "Wasteland_80%2C87"];
    B[88][80] = [30, "Neville Alley", "Neville_Alley"];
    B[89][80] = [2, "Prosser Arms", "The_Prosser_Arms"];
    B[80][81] = [18, "Keeffe Library", "Keeffe_Library"];
    B[81][81] = [15, "Remigius General Hospital", "Remigius_General_Hospital"];
    B[82][81] = [
      25,
      "Cummins Alley Police Dept",
      "Cummins_Alley_Police_Department",
    ];
    B[83][81] = [10, "Grinter Cinema", "Grinter_Cinema"];
    B[84][81] = [
      25,
      "Milton Walk Police Dept",
      "Milton_Walk_Police_Department",
    ];
    B[85][81] = [18, "Pasker Library", "Pasker_Library"];
    B[86][81] = [30, "Beecham Street", "Beecham_Street"];
    B[87][81] = [11, "Club Marriner", "Club_Marriner"];
    B[88][81] = [28, "Druce Row School", "Druce_Row_School"];
    B[89][81] = [17, "Junkyard", "Junkyard_81%2C89"];
    B[80][82] = [13, "Boole Place Fire Station", "Boole_Place_Fire_Station"];
    B[81][82] = [11, "Club Barling", "Club_Barling"];
    B[82][82] = [33, "Wasteland", "Wasteland_82%2C82"];
    B[83][82] = [24, "Bellis Park", "Bellis_Park_%28Pennville%29"];
    B[84][82] = [30, "Don Place", "Don_Place"];
    B[85][82] = [30, "Whitehead Boulevard", "Whitehead_Boulevard"];
    B[86][82] = [22, "Currie Museum", "The_Currie_Museum"];
    B[87][82] = [24, "Mesney Park", "Mesney_Park"];
    B[88][82] = [
      15,
      "Methodius General Hospital",
      "Methodius_General_Hospital_%28Pennville%29",
    ];
    B[89][82] = [30, "Moncrieffe Road", "Moncrieffe_Road"];
    B[80][83] = [5, "Whitley Building", "The_Whitley_Building"];
    B[81][83] = [3, "Cruwys Auto Repair", "Cruwys_Auto_Repair"];
    B[82][83] = [30, "Dumphey Square", "Dumphey_Square"];
    B[83][83] = [30, "Newport Alley", "Newport_Alley_%28Pennville%29"];
    B[84][83] = [30, "Butcher Walk", "Butcher_Walk"];
    B[85][83] = [33, "Wasteland", "Wasteland_83%2C85"];
    B[86][83] = [6, "Carpark", "Carpark_83%2C86"];
    B[87][83] = [17, "Junkyard", "Junkyard_83%2C87"];
    B[88][83] = [
      27,
      "Mesney Drive Railway Station",
      "Mesney_Drive_Railway_Station_%28Pennville%29",
    ];
    B[89][83] = [
      25,
      "Voizey Drive Police Dept",
      "Voizey_Drive_Police_Department",
    ];
    B[80][84] = [30, "Chiswell Square", "Chiswell_Square"];
    B[81][84] = [28, "Nuttycombe Way School", "Nuttycombe_Way_School"];
    B[82][84] = [5, "Merson Building", "The_Merson_Building_%28Pennville%29"];
    B[83][84] = [
      13,
      "Hooper Square Fire Station",
      "Hooper_Square_Fire_Station",
    ];
    B[84][84] = [24, "Sears Park", "Sears_Park"];
    B[85][84] = [30, "Dufferin Grove", "Dufferin_Grove"];
    B[86][84] = [10, "Surtees Cinema", "Surtees_Cinema"];
    B[87][84] = [30, "Blight Lane", "Blight_Lane"];
    B[88][84] = [5, "Buckoke Building", "The_Buckoke_Building"];
    B[89][84] = [58, "Fort Perryn Vehicle Depot", "Fort_Perryn"];
    B[80][85] = [10, "Ramsdale Cinema", "Ramsdale_Cinema"];
    B[81][85] = [33, "Wasteland", "Wasteland_85%2C81"];
    B[82][85] = [32, "Warehouse", "Warehouse_85%2C82"];
    B[83][85] = [2, "Rexworthy Arms", "The_Rexworthy_Arms"];
    B[84][85] = [9, "St Louis's Church", "St._Louis%27s_Church"];
    B[85][85] = [9, "St Gall's Church", "St._Gall%27s_Church_%28Pennville%29"];
    B[86][85] = [8, "Cemetery", "Cemetery_85%2C86"];
    B[87][85] = [4, "Remfry Bank", "Remfry_Bank"];
    B[88][85] = [5, "Holcombe Building", "The_Holcombe_Building"];
    B[89][85] = [53, "Fort Perryn Exercise Yard", "Fort_Perryn"];
    B[80][86] = [30, "Pobjay Square", "Pobjay_Square"];
    B[81][86] = [6, "Carpark", "Carpark_86%2C81"];
    B[82][86] = [30, "Ennitt Alley", "Ennitt_Alley"];
    B[83][86] = [
      25,
      "Corless Alley Police Dept",
      "Corless_Alley_Police_Department",
    ];
    B[84][86] = [4, "Sellers Bank", "Sellers_Bank"];
    B[85][86] = [2, "Colsworthy Arms", "The_Colsworthy_Arms"];
    B[86][86] = [12, "Factory", "Factory_86%2C86"];
    B[87][86] = [16, "Neale Hotel", "The_Neale_Hotel"];
    B[88][86] = [5, "Luff Building", "The_Luff_Building"];
    B[89][86] = [57, "Fort Perryn Training Ground", "Fort_Perryn"];
    B[80][87] = [30, "Wilkins Row", "Wilkins_Row"];
    B[81][87] = [13, "Rich Square Fire Station", "Rich_Square_Fire_Station"];
    B[82][87] = [30, "Lane Drive", "Lane_Drive"];
    B[83][87] = [30, "Harrill Walk", "Harrill_Walk"];
    B[84][87] = [5, "Wagland Building", "The_Wagland_Building_%28Pennville%29"];
    B[85][87] = [31, "Durnford Towers", "Durnford_Towers"];
    B[86][87] = [30, "Delacombe Drive", "Delacombe_Drive"];
    B[87][87] = [30, "Hagopian Street", "Hagopian_Street"];
    B[88][87] = [28, "Membury Crescent School", "Membury_Crescent_School"];
    B[89][87] = [9, "St Faustina's Church", "St._Faustina%27s_Church"];
    B[80][88] = [30, "Kelly Lane", "Kelly_Lane_%28Pennville%29"];
    B[81][88] = [33, "Wasteland", "Wasteland_88%2C81"];
    B[82][88] = [22, "Redmond Museum", "The_Redmond_Museum"];
    B[83][88] = [6, "Carpark", "Carpark_88%2C83"];
    B[84][88] = [18, "Scarlett Library", "Scarlett_Library"];
    B[85][88] = [25, "Cosins Way Police Dept", "Cosins_Way_Police_Department"];
    B[86][88] = [32, "Warehouse", "Warehouse_88%2C86"];
    B[87][88] = [4, "Burke Bank", "Burke_Bank"];
    B[88][88] = [31, "Voller Towers", "Voller_Towers"];
    B[89][88] = [33, "Wasteland", "Wasteland_88%2C89"];
    B[80][89] = [6, "Carpark", "Carpark_89%2C80"];
    B[81][89] = [30, "Sibree Plaza", "Sibree_Plaza_%28Pennville%29"];
    B[82][89] = [17, "Junkyard", "Junkyard_89%2C82"];
    B[83][89] = [30, "Howes Drive", "Howes_Drive"];
    B[84][89] = [30, "Fifoot Grove", "Fifoot_Grove"];
    B[85][89] = [
      27,
      "Chicke Alley Railway Station",
      "Chicke_Alley_Railway_Station",
    ];
    B[86][89] = [18, "Side Library", "Side_Library"];
    B[87][89] = [11, "Club Shortt", "Club_Shortt"];
    B[88][89] = [
      25,
      "Empson Grove Police Dept",
      "Empson_Grove_Police_Department",
    ];
    B[89][89] = [5, "Shepstone Building", "The_Shepstone_Building"];

    // ------------------------------------------------
    // Whittenside
    // ------------------------------------------------
    B[80][90] = [19, "Joachim Mall", "Joachim_Mall"];
    B[81][90] = [33, "Wasteland", "Wasteland_90%2C81"];
    B[82][90] = [33, "Wasteland", "Wasteland_90%2C82"];
    B[83][90] = [5, "Blanning Building", "The_Blanning_Building"];
    B[84][90] = [33, "Wasteland", "Wasteland_90%2C84"];
    B[85][90] = [28, "Pollock Street School", "Pollock_Street_School"];
    B[86][90] = [
      27,
      "Hedbitch Row Railway Station",
      "Hedbitch_Row_Railway_Station",
    ];
    B[87][90] = [5, "Kind Building", "The_Kind_Building"];
    B[88][90] = [11, "Club Vacher", "Club_Vacher"];
    B[89][90] = [21, "Thicke Monument", "The_Thicke_Monument"];
    B[80][91] = [19, "Joachim Mall", "Joachim_Mall"];
    B[81][91] = [30, "Bousie Avenue", "Bousie_Avenue"];
    B[82][91] = [10, "Atkins Cinema", "Atkins_Cinema"];
    B[83][91] = [3, "Bastick Auto Repair", "Bastick_Auto_Repair"];
    B[84][91] = [31, "Anderson Towers", "Anderson_Towers"];
    B[85][91] = [
      9,
      "St Columbanus's Church",
      "St._Columbanus%27s_Church_%28Fryerbank%29",
    ];
    B[86][91] = [33, "Wasteland", "Wasteland_91%2C86"];
    B[87][91] = [30, "Elston Square", "Elston_Square"];
    B[88][91] = [30, "Godwyn Drive", "Godwyn_Drive"];
    B[89][91] = [5, "Quartly Building", "The_Quartly_Building"];
    B[80][92] = [24, "Unwin Park", "Unwin_Park"];
    B[81][92] = [30, "Hambling Street", "Hambling_Street"];
    B[82][92] = [
      25,
      "Greenland Boulevard Police Dept",
      "Greenland_Boulevard_Police_Department",
    ];
    B[83][92] = [30, "Bulmer Street", "Bulmer_Street"];
    B[84][92] = [
      15,
      "St Seraphim's Hospital",
      "St._Seraphim%27s_Hospital_%28Fryerbank%29",
    ];
    B[85][92] = [8, "Cemetery", "Cemetery_92%2C85"];
    B[86][92] = [30, "Parkman Alley", "Parkman_Alley"];
    B[87][92] = [16, "Havercroft Motel", "The_Havercroft_Motel"];
    B[88][92] = [30, "Chadwick Square", "Chadwick_Square"];
    B[89][92] = [30, "Forbes Grove", "Forbes_Grove"];
    B[80][93] = [30, "Barrington Avenue", "Barrington_Avenue"];
    B[81][93] = [30, "Ironsides Alley", "Ironsides_Alley"];
    B[82][93] = [
      15,
      "Gelasius General Hospital",
      "Gelasius_General_Hospital_%28Fryerbank%29",
    ];
    B[83][93] = [3, "Gendrault Auto Repair", "Gendrault_Auto_Repair"];
    B[84][93] = [30, "Drave Street", "Drave_Street"];
    B[85][93] = [33, "Wasteland", "Wasteland_93%2C85"];
    B[86][93] = [11, "Club MacDonnell", "Club_MacDonnell"];
    B[87][93] = [5, "Hensler Building", "The_Hensler_Building"];
    B[88][93] = [
      27,
      "Phabayn Way Railway Station",
      "Phabayn_Way_Railway_Station",
    ];
    B[89][93] = [25, "Towne Row Police Dept", "Towne_Row_Police_Department"];
    B[80][94] = [13, "Tudge Way Fire Station", "Tudge_Way_Fire_Station"];
    B[81][94] = [30, "Gregg Grove", "Gregg_Grove"];
    B[82][94] = [
      27,
      "Derryman Crescent Railway Station",
      "Derryman_Crescent_Railway_Station",
    ];
    B[83][94] = [2, "Burtenshaw Arms", "The_Burtenshaw_Arms"];
    B[84][94] = [30, "Cutmore Avenue", "Cutmore_Avenue"];
    B[85][94] = [28, "Pownall Street School", "Pownall_Street_School"];
    B[86][94] = [32, "Warehouse", "Warehouse_94%2C86"];
    B[87][94] = [33, "Wasteland", "Wasteland_94%2C87"];
    B[88][94] = [5, "Wolfendall Building", "The_Wolfendall_Building"];
    B[89][94] = [
      25,
      "Hobson Place Police Dept",
      "Hobson_Place_Police_Department",
    ];
    B[80][95] = [30, "Ginn Alley", "Ginn_Alley"];
    B[81][95] = [31, "Sherriff Towers", "Sherriff_Towers"];
    B[82][95] = [33, "Wasteland", "Wasteland_95%2C82"];
    B[83][95] = [33, "Wasteland", "Wasteland_95%2C83"];
    B[84][95] = [30, "Ewer Street", "Ewer_Street"];
    B[85][95] = [5, "Underdown Building", "The_Underdown_Building"];
    B[86][95] = [12, "Factory", "Factory_95%2C86"];
    B[87][95] = [5, "Strangemore Building", "The_Strangemore_Building"];
    B[88][95] = [
      25,
      "Dohoney Grove Police Dept",
      "Dohoney_Grove_Police_Department",
    ];
    B[89][95] = [30, "Lanham Drive", "Lanham_Drive"];
    B[80][96] = [5, "Osbourne Building", "The_Osbourne_Building"];
    B[81][96] = [30, "Hanna Row", "Hanna_Row"];
    B[82][96] = [33, "Wasteland", "Wasteland_96%2C82"];
    B[83][96] = [33, "Wasteland", "Wasteland_96%2C83"];
    B[84][96] = [18, "Pratley Library", "Pratley_Library"];
    B[85][96] = [30, "Melville Street", "Melville_Street"];
    B[86][96] = [3, "Hebden Auto Repair", "Hebden_Auto_Repair"];
    B[87][96] = [6, "Carpark", "Carpark_96%2C87"];
    B[88][96] = [5, "Haskins Building", "The_Haskins_Building"];
    B[89][96] = [32, "Warehouse", "Warehouse_96%2C89"];
    B[80][97] = [22, "Doutch Museum", "The_Doutch_Museum"];
    B[81][97] = [30, "Burdett Street", "Burdett_Street"];
    B[82][97] = [30, "Powlett Road", "Powlett_Road"];
    B[83][97] = [30, "Poulter Plaza", "Poulter_Plaza"];
    B[84][97] = [4, "Wiles Bank", "Wiles_Bank"];
    B[85][97] = [11, "Club McTier", "Club_McTier"];
    B[86][97] = [4, "Canham Bank", "Canham_Bank"];
    B[87][97] = [
      27,
      "Whalen Avenue Railway Station",
      "Whalen_Avenue_Railway_Station",
    ];
    B[88][97] = [22, "Owsley Museum", "The_Owsley_Museum"];
    B[89][97] = [16, "Press Motel", "The_Press_Motel"];
    B[80][98] = [12, "Factory", "Factory_98%2C80"];
    B[81][98] = [30, "Tidball Walk", "Tidball_Walk"];
    B[82][98] = [32, "Warehouse", "Warehouse_98%2C82"];
    B[83][98] = [31, "Parr Towers", "Parr_Towers"];
    B[84][98] = [30, "McCormack Grove", "McCormack_Grove"];
    B[85][98] = [5, "Noonan Building", "The_Noonan_Building"];
    B[86][98] = [5, "Lintell Building", "The_Lintell_Building"];
    B[87][98] = [23, "Longstaff Building", "The_Longstaff_Building"];
    B[88][98] = [10, "Clear Cinema", "Clear_Cinema"];
    B[89][98] = [30, "Applegate Alley", "Applegate_Alley_%28Fryerbank%29"];
    B[80][99] = [
      9,
      "St Birinus's Church",
      "St._Birinus%27s_Church_%28Fryerbank%29",
    ];
    B[81][99] = [33, "Wasteland", "Wasteland_99%2C81"];
    B[82][99] = [30, "Kingham Drive", "Kingham_Drive"];
    B[83][99] = [23, "Phipps Building", "The_Phipps_Building"];
    B[84][99] = [5, "Comitty Building", "The_Comitty_Building"];
    B[85][99] = [30, "Bacon Row", "Bacon_Row"];
    B[86][99] = [5, "Warman Building", "The_Warman_Building"];
    B[87][99] = [24, "Pickford Park", "Pickford_Park"];
    B[88][99] = [31, "Knill Towers", "Knill_Towers"];
    B[89][99] = [23, "Dirkinson Building", "The_Dirkinson_Building"];

    // ------------------------------------------------
    // Dulston
    // ------------------------------------------------
    B[90][0] = [30, "Noake Grove", "Noake_Grove"];
    B[91][0] = [4, "Gervais Bank", "Gervais_Bank"];
    B[92][0] = [4, "Marchetti Bank", "Marchetti_Bank"];
    B[93][0] = [30, "McEwan Grove", "McEwan_Grove"];
    B[94][0] = [30, "Shervord Place", "Shervord_Place_%28New_Arkham%29"];
    B[95][0] = [
      13,
      "Cottingham Drive Fire Station",
      "Cottingham_Drive_Fire_Station",
    ];
    B[96][0] = [30, "Jukes Walk", "Jukes_Walk"];
    B[97][0] = [31, "Purchas Towers", "Purchas_Towers"];
    B[98][0] = [
      27,
      "Ashfield Alley Railway Station",
      "Ashfield_Alley_Railway_Station",
    ];
    B[99][0] = [
      27,
      "Pritchard Grove Railway Station",
      "Pritchard_Grove_Railway_Station",
    ];
    B[90][1] = [11, "Club Bratt", "Club_Bratt"];
    B[91][1] = [30, "Axe Grove", "Axe_Grove"];
    B[92][1] = [30, "Sly Grove", "Sly_Grove"];
    B[93][1] = [4, "Care Bank", "Care_Bank"];
    B[94][1] = [30, "Starkey Row", "Starkey_Row"];
    B[95][1] = [23, "Mitchener Building", "The_Mitchener_Building"];
    B[96][1] = [30, "Maxwell Avenue", "Maxwell_Avenue"];
    B[97][1] = [32, "Warehouse", "Warehouse_1%2C97"];
    B[98][1] = [30, "Gigg Road", "Gigg_Road"];
    B[99][1] = [22, "Keyford Museum", "The_Keyford_Museum"];
    B[90][2] = [31, "Sayer Towers", "Sayer_Towers"];
    B[91][2] = [30, "Trebley Place", "Trebley_Place"];
    B[92][2] = [13, "Horton Square Fire Station", "Horton_Square_Fire_Station"];
    B[93][2] = [30, "Amory Lane", "Amory_Lane"];
    B[94][2] = [30, "Dane Drive", "Dane_Drive"];
    B[95][2] = [30, "Blunden Walk", "Blunden_Walk"];
    B[96][2] = [32, "Warehouse", "Warehouse_2%2C96"];
    B[97][2] = [5, "Tebbet Building", "The_Tebbet_Building"];
    B[98][2] = [11, "Club Chester", "Club_Chester"];
    B[99][2] = [30, "Hersant Avenue", "Hersant_Avenue"];
    B[90][3] = [4, "Denning Bank", "Denning_Bank"];
    B[91][3] = [
      15,
      "Zephyrinus General Hospital",
      "Zephyrinus_General_Hospital_%28New_Arkham%29",
    ];
    B[92][3] = [13, "Woof Grove Fire Station", "Woof_Grove_Fire_Station"];
    B[93][3] = [30, "Mildon Square", "Mildon_Square"];
    B[94][3] = [30, "Lathey Drive", "Lathey_Drive"];
    B[95][3] = [28, "Painter Street School", "Painter_Street_School"];
    B[96][3] = [30, "Redpath Place", "Redpath_Place"];
    B[97][3] = [33, "Wasteland", "Wasteland_3%2C97"];
    B[98][3] = [30, "Allwood Drive", "Allwood_Drive"];
    B[99][3] = [10, "Judd Cinema", "Judd_Cinema"];
    B[90][4] = [24, "Carrington Park", "Carrington_Park"];
    B[91][4] = [22, "Franklin Museum", "The_Franklin_Museum"];
    B[92][4] = [2, "Orlando Arms", "The_Orlando_Arms"];
    B[93][4] = [30, "Wale Place", "Wale_Place"];
    B[94][4] = [30, "Halliday Lane", "Halliday_Lane"];
    B[95][4] = [5, "Parr Building", "The_Parr_Building"];
    B[96][4] = [4, "Tilke Bank", "Tilke_Bank"];
    B[97][4] = [13, "Small Street Fire Station", "Small_Street_Fire_Station"];
    B[98][4] = [30, "Weatherhead Lane", "Weatherhead_Lane"];
    B[99][4] = [16, "Connors Motel", "The_Connors_Motel"];
    B[90][5] = [30, "Attrill Drive", "Attrill_Drive"];
    B[91][5] = [11, "Club Gellard", "Club_Gellard"];
    B[92][5] = [24, "Tintiney Park", "Tintiney_Park"];
    B[93][5] = [30, "Dinovan Alley", "Dinovan_Alley_%28New_Arkham%29"];
    B[94][5] = [6, "Carpark", "Carpark_5%2C94"];
    B[95][5] = [13, "Comitty Row Fire Station", "Comitty_Row_Fire_Station"];
    B[96][5] = [6, "Carpark", "Carpark_5%2C96"];
    B[97][5] = [30, "Payton Square", "Payton_Square"];
    B[98][5] = [23, "Wreford Building", "The_Wreford_Building"];
    B[99][5] = [33, "Wasteland", "Wasteland_5%2C99"];
    B[90][6] = [2, "Heard Arms", "The_Heard_Arms"];
    B[91][6] = [30, "Espin Alley", "Espin_Alley"];
    B[92][6] = [30, "Farnworth Alley", "Farnworth_Alley"];
    B[93][6] = [17, "Junkyard", "Junkyard_6%2C93"];
    B[94][6] = [3, "Lawrence Auto Repair", "Lawrence_Auto_Repair"];
    B[95][6] = [3, "Hinkes Auto Repair", "Hinkes_Auto_Repair"];
    B[96][6] = [33, "Wasteland", "Wasteland_6%2C96"];
    B[97][6] = [30, "Drury Street", "Drury_Street_%28New_Arkham%29"];
    B[98][6] = [5, "Woolven Building", "The_Woolven_Building_%28New_Arkham%29"];
    B[99][6] = [21, "Parkhouse Monument", "The_Parkhouse_Monument"];
    B[90][7] = [17, "Junkyard", "Junkyard_7%2C90"];
    B[91][7] = [5, "Stickling Building", "The_Stickling_Building"];
    B[92][7] = [31, "Harries Towers", "Harries_Towers"];
    B[93][7] = [18, "Gregg Library", "Gregg_Library"];
    B[94][7] = [5, "Gulliver Building", "The_Gulliver_Building"];
    B[95][7] = [30, "Raggett Row", "Raggett_Row"];
    B[96][7] = [27, "Tope Alley Railway Station", "Tope_Alley_Railway_Station"];
    B[97][7] = [30, "Woollcombe Plaza", "Woollcombe_Plaza"];
    B[98][7] = [5, "Curtis Building", "The_Curtis_Building"];
    B[99][7] = [23, "Denty Building", "The_Denty_Building"];
    B[90][8] = [
      9,
      "St Hormisdas's Church",
      "St._Hormisdas%27s_Church_%28New_Arkham%29",
    ];
    B[91][8] = [33, "Wasteland", "Wasteland_8%2C91"];
    B[92][8] = [16, "Barratt Hotel", "The_Barratt_Hotel"];
    B[93][8] = [33, "Wasteland", "Wasteland_8%2C93"];
    B[94][8] = [2, "Vick Arms", "The_Vick_Arms"];
    B[95][8] = [5, "Fullaway Building", "The_Fullaway_Building"];
    B[96][8] = [5, "Wagner Building", "The_Wagner_Building_%28New_Arkham%29"];
    B[97][8] = [18, "Purvis Library", "Purvis_Library"];
    B[98][8] = [30, "Methringham Grove", "Methringham_Grove"];
    B[99][8] = [23, "Harford Building", "The_Harford_Building"];
    B[90][9] = [8, "Cemetery", "Cemetery_9%2C90"];
    B[91][9] = [18, "Swaine Library", "Swaine_Library"];
    B[92][9] = [30, "Glessell Avenue", "Glessell_Avenue"];
    B[93][9] = [30, "Durling Road", "Durling_Road"];
    B[94][9] = [30, "Edgington Way", "Edgington_Way"];
    B[95][9] = [28, "Newmarch Avenue School", "Newmarch_Avenue_School"];
    B[96][9] = [5, "Court Building", "The_Court_Building"];
    B[97][9] = [15, "St Timothy's Hospital", "St._Timothy%27s_Hospital"];
    B[98][9] = [30, "Sartain Road", "Sartain_Road"];
    B[99][9] = [33, "Wasteland", "Wasteland_9%2C99"];

    // ------------------------------------------------
    // Pescodside
    // ------------------------------------------------
    B[90][10] = [4, "Church Bank", "Church_Bank"];
    B[91][10] = [
      27,
      "Cockburn Plaza Railway Station",
      "Cockburn_Plaza_Railway_Station",
    ];
    B[92][10] = [32, "Warehouse", "Warehouse_10%2C92"];
    B[93][10] = [30, "Smithfield Alley", "Smithfield_Alley"];
    B[94][10] = [4, "Rayfield Bank", "Rayfield_Bank"];
    B[95][10] = [30, "Elder Alley", "Elder_Alley"];
    B[96][10] = [28, "Pridmore Way School", "Pridmore_Way_School_10%2C96"];
    B[97][10] = [30, "Malpas Grove", "Malpas_Grove"];
    B[98][10] = [30, "Bicknel Way", "Bicknel_Way"];
    B[99][10] = [5, "Leggatt Building", "The_Leggatt_Building"];
    B[90][11] = [33, "Wasteland", "Wasteland_11%2C90"];
    B[91][11] = [
      15,
      "St Humphrey's Hospital",
      "St._Humphrey%27s_Hospital_%28Old_Arkham%29",
    ];
    B[92][11] = [3, "Horditch Auto Repair", "Horditch_Auto_Repair"];
    B[93][11] = [18, "Kelley Library", "Kelley_Library"];
    B[94][11] = [31, "Cary Towers", "Cary_Towers"];
    B[95][11] = [6, "Carpark", "Carpark_11%2C95"];
    B[96][11] = [25, "McKay Lane Police Dept", "McKay_Lane_Police_Department"];
    B[97][11] = [30, "Tatler Lane", "Tatler_Lane_%28Old_Arkham%29"];
    B[98][11] = [13, "Edbrook Walk Fire Station", "Edbrook_Walk_Fire_Station"];
    B[99][11] = [33, "Wasteland", "Wasteland_11%2C99"];
    B[90][12] = [30, "Loweth Alley", "Loweth_Alley"];
    B[91][12] = [16, "Baldwin Hotel", "The_Baldwin_Hotel"];
    B[92][12] = [18, "Miller Library", "Miller_Library"];
    B[93][12] = [5, "Durston Building", "The_Durston_Building"];
    B[94][12] = [9, "St Daniel's Church", "St._Daniel%27s_Church_12%2C94"];
    B[95][12] = [30, "Haley Street", "Haley_Street"];
    B[96][12] = [
      15,
      "St Luke's Hospital",
      "St._Luke%27s_Hospital_%28Old_Arkham%29",
    ];
    B[97][12] = [5, "Hardy Building", "The_Hardy_Building"];
    B[98][12] = [
      27,
      "Statham Walk Railway Station",
      "Statham_Walk_Railway_Station",
    ];
    B[99][12] = [24, "Perryman Park", "Perryman_Park"];
    B[90][13] = [12, "Factory", "Factory_13%2C90"];
    B[91][13] = [30, "Cobley Walk", "Cobley_Walk"];
    B[92][13] = [9, "St Neot's Church", "St._Neot%27s_Church"];
    B[93][13] = [30, "Leman Boulevard", "Leman_Boulevard"];
    B[94][13] = [8, "Cemetery", "Cemetery_13%2C94"];
    B[95][13] = [32, "Warehouse", "Warehouse_13%2C95"];
    B[96][13] = [28, "Pridmore Way School", "Pridmore_Way_School_13%2C96"];
    B[97][13] = [30, "Kingman Alley", "Kingman_Alley"];
    B[98][13] = [30, "Seaman Boulevard", "Seaman_Boulevard_%28Old_Arkham%29"];
    B[99][13] = [30, "Bray Square", "Bray_Square_%28Old_Arkham%29"];
    B[90][14] = [4, "Gait Bank", "Gait_Bank"];
    B[91][14] = [30, "Bagnall Way", "Bagnall_Way"];
    B[92][14] = [8, "Cemetery", "Cemetery_14%2C92"];
    B[93][14] = [
      13,
      "Newmarch Square Fire Station",
      "Newmarch_Square_Fire_Station",
    ];
    B[94][14] = [12, "Factory", "Factory_14%2C94"];
    B[95][14] = [11, "Club Hunn", "Club_Hunn"];
    B[96][14] = [30, "Basket Avenue", "Basket_Avenue"];
    B[97][14] = [9, "St Daniel's Church", "St._Daniel%27s_Church_14%2C97"];
    B[98][14] = [5, "Edbrook Building", "The_Edbrook_Building"];
    B[99][14] = [5, "Paffard Building", "The_Paffard_Building"];
    B[90][15] = [12, "Factory", "Factory_15%2C90"];
    B[91][15] = [30, "Glanfield Street", "Glanfield_Street"];
    B[92][15] = [24, "Hillyer Park", "Hillyer_Park"];
    B[93][15] = [15, "Emma General Hospital", "Emma_General_Hospital"];
    B[94][15] = [30, "Edgell Road", "Edgell_Road"];
    B[95][15] = [
      27,
      "Brain Boulevard Railway Station",
      "Brain_Boulevard_Railway_Station",
    ];
    B[96][15] = [30, "Messiter Alley", "Messiter_Alley"];
    B[97][15] = [8, "Cemetery", "Cemetery_15%2C97"];
    B[98][15] = [5, "Woodforde Building", "The_Woodforde_Building"];
    B[99][15] = [
      13,
      "Edgcumbe Drive Fire Station",
      "Edgcumbe_Drive_Fire_Station",
    ];
    B[90][16] = [31, "Chafy Towers", "Chafy_Towers"];
    B[91][16] = [3, "Vines Auto Repair", "Vines_Auto_Repair"];
    B[92][16] = [30, "Rawkins Plaza", "Rawkins_Plaza_%28Old_Arkham%29"];
    B[93][16] = [30, "Tredaway Way", "Tredaway_Way"];
    B[94][16] = [30, "Margery Avenue", "Margery_Avenue_%28Old_Arkham%29"];
    B[95][16] = [16, "Flambert Motel", "The_Flambert_Motel"];
    B[96][16] = [9, "St Alda's Church", "St._Alda%27s_Church"];
    B[97][16] = [
      27,
      "Cradock Grove Railway Station",
      "Cradock_Grove_Railway_Station",
    ];
    B[98][16] = [30, "Gomer Boulevard", "Gomer_Boulevard"];
    B[99][16] = [30, "Woodbridge Plaza", "Woodbridge_Plaza"];
    B[90][17] = [18, "Shew Library", "Shew_Library"];
    B[91][17] = [30, "Merryweather Row", "Merryweather_Row"];
    B[92][17] = [30, "Author Avenue", "Author_Avenue_%28Old_Arkham%29"];
    B[93][17] = [30, "Langridge Drive", "Langridge_Drive"];
    B[94][17] = [28, "Damon Row School", "Damon_Row_School"];
    B[95][17] = [25, "Large Row Police Dept", "Large_Row_Police_Department"];
    B[96][17] = [31, "Nettleton Towers", "Nettleton_Towers"];
    B[97][17] = [30, "Pillinger Boulevard", "Pillinger_Boulevard"];
    B[98][17] = [30, "Howes Row", "Howes_Row"];
    B[99][17] = [11, "Club Yeeles", "Club_Yeeles"];
    B[90][18] = [11, "Club Bousfield", "Club_Bousfield"];
    B[91][18] = [28, "Draper Lane School", "Draper_Lane_School"];
    B[92][18] = [17, "Junkyard", "Junkyard_18%2C92"];
    B[93][18] = [30, "Crew Walk", "Crew_Walk"];
    B[94][18] = [30, "Wilton Drive", "Wilton_Drive_%28Old_Arkham%29"];
    B[95][18] = [13, "Bendells Row Fire Station", "Bendells_Row_Fire_Station"];
    B[96][18] = [30, "Question Place", "Question_Place_%28Old_Arkham%29"];
    B[97][18] = [30, "Gwinnall Walk", "Gwinnall_Walk"];
    B[98][18] = [31, "Androwes Towers", "Androwes_Towers"];
    B[99][18] = [16, "Hawley Motel", "The_Hawley_Motel"];
    B[90][19] = [4, "Gyles Bank", "Gyles_Bank"];
    B[91][19] = [10, "Blanchflower Cinema", "Blanchflower_Cinema"];
    B[92][19] = [30, "Aris Road", "Aris_Road"];
    B[93][19] = [30, "Clavey Walk", "Clavey_Walk"];
    B[94][19] = [30, "Kelreher Square", "Kelreher_Square"];
    B[95][19] = [17, "Junkyard", "Junkyard_19%2C95"];
    B[96][19] = [10, "Bulmer Cinema", "Bulmer_Cinema"];
    B[97][19] = [23, "Button Building", "The_Button_Building"];
    B[98][19] = [24, "Dickin Park", "Dickin_Park"];
    B[99][19] = [18, "Theobald Library", "Theobald_Library"];

    // ------------------------------------------------
    // Dunningwood
    // ------------------------------------------------
    B[90][20] = [16, "Vallis Motel", "The_Vallis_Motel"];
    B[91][20] = [2, "MacVicar Arms", "The_MacVicar_Arms"];
    B[92][20] = [17, "Junkyard", "Junkyard_20%2C92"];
    B[93][20] = [22, "Fortt Museum", "The_Fortt_Museum"];
    B[94][20] = [24, "Mais Park", "Mais_Park"];
    B[95][20] = [
      25,
      "Hopping Road Police Dept",
      "Hopping_Road_Police_Department",
    ];
    B[96][20] = [18, "Wetton Library", "Wetton_Library"];
    B[97][20] = [6, "Carpark", "Carpark_20%2C97"];
    B[98][20] = [
      25,
      "Bowring Way Police Dept",
      "Bowring_Way_Police_Department",
    ];
    B[99][20] = [
      15,
      "St Helena's Hospital",
      "St._Helena%27s_Hospital_%28Spicer_Hills%29",
    ];
    B[90][21] = [10, "Helliar Cinema", "Helliar_Cinema"];
    B[91][21] = [
      15,
      "Tarasius General Hospital",
      "Tarasius_General_Hospital_%28Spicer_Hills%29",
    ];
    B[92][21] = [30, "Leicester Street", "Leicester_Street"];
    B[93][21] = [17, "Junkyard", "Junkyard_21%2C93"];
    B[94][21] = [13, "Barens Road Fire Station", "Barens_Road_Fire_Station"];
    B[95][21] = [18, "Grizel Library", "Grizel_Library"];
    B[96][21] = [30, "Coat Avenue", "Coat_Avenue"];
    B[97][21] = [31, "Doone Towers", "Doone_Towers"];
    B[98][21] = [22, "Mallett Museum", "The_Mallett_Museum"];
    B[99][21] = [3, "House Auto Repair", "House_Auto_Repair"];
    B[90][22] = [30, "Doran Walk", "Doran_Walk"];
    B[91][22] = [5, "Blacker Building", "The_Blacker_Building"];
    B[92][22] = [24, "Dyer Park", "Dyer_Park"];
    B[93][22] = [30, "Rudd Place", "Rudd_Place"];
    B[94][22] = [31, "Cui Towers", "Cui_Towers"];
    B[95][22] = [
      25,
      "Stockman Walk Police Dept",
      "Stockman_Walk_Police_Department",
    ];
    B[96][22] = [
      9,
      "St Swithun's Church",
      "St._Swithun%27s_Church_%28Spicer_Hills%29",
    ];
    B[97][22] = [6, "Carpark", "Carpark_22%2C97"];
    B[98][22] = [32, "Warehouse", "Warehouse_22%2C98"];
    B[99][22] = [11, "Club Quier", "Club_Quier"];
    B[90][23] = [30, "Tuson Plaza", "Tuson_Plaza"];
    B[91][23] = [32, "Warehouse", "Warehouse_23%2C91"];
    B[92][23] = [6, "Carpark", "Carpark_23%2C92"];
    B[93][23] = [
      5,
      "Pippard Building",
      "The_Pippard_Building_%28Spicer_Hills%29",
    ];
    B[94][23] = [11, "Club Peerless", "Club_Peerless"];
    B[95][23] = [5, "Gyllet Building", "The_Gyllet_Building"];
    B[96][23] = [30, "Wheelan Grove", "Wheelan_Grove"];
    B[97][23] = [33, "Wasteland", "Wasteland_23%2C97"];
    B[98][23] = [30, "Sealy Road", "Sealy_Road"];
    B[99][23] = [30, "Moores Lane", "Moores_Lane"];
    B[90][24] = [5, "Paul Building", "The_Paul_Building"];
    B[91][24] = [30, "Rollings Road", "Rollings_Road"];
    B[92][24] = [3, "Pring Auto Repair", "Pring_Auto_Repair"];
    B[93][24] = [12, "Factory", "Factory_24%2C93"];
    B[94][24] = [28, "Slocombe Plaza School", "Slocombe_Plaza_School"];
    B[95][24] = [5, "Piggott Building", "The_Piggott_Building"];
    B[96][24] = [3, "Haydon Auto Repair", "Haydon_Auto_Repair"];
    B[97][24] = [13, "Dudman Row Fire Station", "Dudman_Row_Fire_Station"];
    B[98][24] = [12, "Factory", "Factory_24%2C98"];
    B[99][24] = [30, "Ralfe Plaza", "Ralfe_Plaza"];
    B[90][25] = [
      23,
      "Brockliss Building",
      "The_Brockliss_Building_%28Spicer_Hills%29",
    ];
    B[91][25] = [5, "Headington Building", "The_Headington_Building"];
    B[92][25] = [30, "Munckton Crescent", "Munckton_Crescent"];
    B[93][25] = [30, "Howse Row", "Howse_Row"];
    B[94][25] = [30, "Rock Place", "Rock_Place"];
    B[95][25] = [5, "Waters Building", "The_Waters_Building"];
    B[96][25] = [5, "Wray Building", "The_Wray_Building"];
    B[97][25] = [30, "Williamson Place", "Williamson_Place"];
    B[98][25] = [30, "Maturin Avenue", "Maturin_Avenue"];
    B[99][25] = [30, "Author Row", "Author_Row_%28Spicer_Hills%29"];
    B[90][26] = [
      9,
      "St Onuphrius's Church",
      "St._Onuphrius%27s_Church_%28Spicer_Hills%29",
    ];
    B[91][26] = [8, "Cemetery", "Cemetery_26%2C91"];
    B[92][26] = [22, "Padden Museum", "The_Padden_Museum"];
    B[93][26] = [30, "Dinan Walk", "Dinan_Walk"];
    B[94][26] = [18, "Matthewson Library", "Matthewson_Library"];
    B[95][26] = [21, "Orman Monument", "The_Orman_Monument"];
    B[96][26] = [30, "Garrett Lane", "Garrett_Lane"];
    B[97][26] = [30, "Locket Drive", "Locket_Drive"];
    B[98][26] = [10, "Ensor Cinema", "Ensor_Cinema"];
    B[99][26] = [32, "Warehouse", "Warehouse_26%2C99"];
    B[90][27] = [30, "Martindale Plaza", "Martindale_Plaza"];
    B[91][27] = [24, "Sanderson Park", "Sanderson_Park"];
    B[92][27] = [17, "Junkyard", "Junkyard_27%2C92"];
    B[93][27] = [30, "Heskin Square", "Heskin_Square"];
    B[94][27] = [30, "Sureties Walk", "Sureties_Walk"];
    B[95][27] = [5, "Street Building", "The_Street_Building"];
    B[96][27] = [10, "Wakerman Cinema", "Wakerman_Cinema"];
    B[97][27] = [
      5,
      "Bennett Building",
      "The_Bennett_Building_%28Spicer_Hills%29",
    ];
    B[98][27] = [7, "St Mark's Cathedral", "St._Mark%27s_Cathedral"];
    B[99][27] = [7, "St Mark's Cathedral", "St._Mark%27s_Cathedral"];
    B[90][28] = [2, "Musgrove Arms", "The_Musgrove_Arms"];
    B[91][28] = [30, "Keefe Drive", "Keefe_Drive"];
    B[92][28] = [
      27,
      "Rennell Grove Railway Station",
      "Rennell_Grove_Railway_Station",
    ];
    B[93][28] = [22, "Sillence Museum", "The_Sillence_Museum"];
    B[94][28] = [32, "Warehouse", "Warehouse_28%2C94"];
    B[95][28] = [30, "Swyer Crescent", "Swyer_Crescent"];
    B[96][28] = [30, "Valentine Lane", "Valentine_Lane"];
    B[97][28] = [3, "Rosenhagen Auto Repair", "Rosenhagen_Auto_Repair"];
    B[98][28] = [7, "St Mark's Cathedral", "St._Mark%27s_Cathedral"];
    B[99][28] = [7, "St Mark's Cathedral", "St._Mark%27s_Cathedral"];
    B[90][29] = [11, "Club Barnard", "Club_Barnard"];
    B[91][29] = [
      30,
      "Woodroffe Crescent",
      "Woodroffe_Crescent_%28Spicer_Hills%29",
    ];
    B[92][29] = [4, "Russe Bank", "Russe_Bank"];
    B[93][29] = [33, "Wasteland", "Wasteland_29%2C93"];
    B[94][29] = [
      25,
      "Veresmith Street Police Dept",
      "Veresmith_Street_Police_Department",
    ];
    B[95][29] = [31, "Craze Towers", "Craze_Towers"];
    B[96][29] = [
      13,
      "Learmond Walk Fire Station",
      "Learmond_Walk_Fire_Station",
    ];
    B[97][29] = [12, "Factory", "Factory_29%2C97"];
    B[98][29] = [4, "Ennitt Bank", "Ennitt_Bank"];
    B[99][29] = [33, "Wasteland", "Wasteland_29%2C99"];

    // ------------------------------------------------
    // Paynterton
    // ------------------------------------------------
    B[90][30] = [30, "Kick Alley", "Kick_Alley"];
    B[91][30] = [30, "Broadbent Alley", "Broadbent_Alley"];
    B[92][30] = [28, "Douglass Drive School", "Douglass_Drive_School"];
    B[93][30] = [13, "Chudley Row Fire Station", "Chudley_Row_Fire_Station"];
    B[94][30] = [
      27,
      "McIlhargey Way Railway Station",
      "McIlhargey_Way_Railway_Station",
    ];
    B[95][30] = [3, "Kempster Auto Repair", "Kempster_Auto_Repair"];
    B[96][30] = [23, "Forst Building", "The_Forst_Building"];
    B[97][30] = [4, "Peach Bank", "Peach_Bank"];
    B[98][30] = [24, "Melliar Park", "Melliar_Park"];
    B[99][30] = [6, "Carpark", "Carpark_30%2C99"];
    B[90][31] = [22, "Browning Museum", "The_Browning_Museum"];
    B[91][31] = [30, "Warburton Grove", "Warburton_Grove"];
    B[92][31] = [
      27,
      "Plumb Avenue Railway Station",
      "Plumb_Avenue_Railway_Station",
    ];
    B[93][31] = [5, "Wiley Building", "The_Wiley_Building"];
    B[94][31] = [4, "Haydon Bank", "Haydon_Bank"];
    B[95][31] = [30, "Seward Boulevard", "Seward_Boulevard"];
    B[96][31] = [
      27,
      "Charasse Plaza Railway Station",
      "Charasse_Plaza_Railway_Station",
    ];
    B[97][31] = [28, "Geard Drive School", "Geard_Drive_School"];
    B[98][31] = [2, "Howord Arms", "The_Howord_Arms"];
    B[99][31] = [30, "Bodmin Avenue", "Bodmin_Avenue"];
    B[90][32] = [6, "Carpark", "Carpark_32%2C90"];
    B[91][32] = [4, "Marten Bank", "Marten_Bank"];
    B[92][32] = [
      13,
      "MacLaverty Avenue Fire Station",
      "MacLaverty_Avenue_Fire_Station",
    ];
    B[93][32] = [18, "Sergeant Library", "Sergeant_Library"];
    B[94][32] = [30, "Waller Crescent", "Waller_Crescent"];
    B[95][32] = [
      5,
      "Poulter Building",
      "The_Poulter_Building_%28Williamsville%29",
    ];
    B[96][32] = [5, "Brookman Building", "The_Brookman_Building"];
    B[97][32] = [11, "Club Pulsford", "Club_Pulsford"];
    B[98][32] = [5, "Cupper Building", "The_Cupper_Building"];
    B[99][32] = [5, "Boddy Building", "The_Boddy_Building"];
    B[90][33] = [30, "Kerby Lane", "Kerby_Lane"];
    B[91][33] = [30, "Wollen Alley", "Wollen_Alley"];
    B[92][33] = [30, "Hendrich Road", "Hendrich_Road"];
    B[93][33] = [31, "Gartell Towers", "Gartell_Towers"];
    B[94][33] = [30, "Voller Road", "Voller_Road"];
    B[95][33] = [
      27,
      "Coutts Alley Railway Station",
      "Coutts_Alley_Railway_Station",
    ];
    B[96][33] = [11, "Club Fagan", "Club_Fagan"];
    B[97][33] = [
      9,
      "St Cyprian's Church",
      "St._Cyprian%27s_Church_%28Williamsville%29",
    ];
    B[98][33] = [30, "Buckett Street", "Buckett_Street"];
    B[99][33] = [5, "Eckersley Building", "The_Eckersley_Building"];
    B[90][34] = [13, "Gell Lane Fire Station", "Gell_Lane_Fire_Station"];
    B[91][34] = [
      25,
      "Dibbings Plaza Police Dept",
      "Dibbings_Plaza_Police_Department",
    ];
    B[92][34] = [17, "Junkyard", "Junkyard_34%2C92"];
    B[93][34] = [6, "Carpark", "Carpark_34%2C93"];
    B[94][34] = [3, "Lahey Auto Repair", "Lahey_Auto_Repair"];
    B[95][34] = [33, "Wasteland", "Wasteland_34%2C95"];
    B[96][34] = [30, "Vale Road", "Vale_Road"];
    B[97][34] = [8, "Cemetery", "Cemetery_34%2C97"];
    B[98][34] = [30, "Dalgliesh Street", "Dalgliesh_Street"];
    B[99][34] = [4, "Whitty Bank", "Whitty_Bank"];
    B[90][35] = [30, "Silly Grove", "Silly_Grove"];
    B[91][35] = [30, "Milne Row", "Milne_Row"];
    B[92][35] = [30, "Mooney Street", "Mooney_Street"];
    B[93][35] = [5, "Clayton Building", "The_Clayton_Building"];
    B[94][35] = [30, "Trask Place", "Trask_Place"];
    B[95][35] = [30, "Millward Drive", "Millward_Drive"];
    B[96][35] = [30, "Mant Boulevard", "Mant_Boulevard"];
    B[97][35] = [21, "Montgomery Monument", "The_Montgomery_Monument"];
    B[98][35] = [30, "Carse Lane", "Carse_Lane"];
    B[99][35] = [5, "Velvick Building", "The_Velvick_Building"];
    B[90][36] = [30, "Younger Crescent", "Younger_Crescent"];
    B[91][36] = [3, "Voke Auto Repair", "Voke_Auto_Repair"];
    B[92][36] = [26, "Krinks Power Station", "Krinks_Power_Station"];
    B[93][36] = [26, "Krinks Power Station", "Krinks_Power_Station"];
    B[94][36] = [6, "Carpark", "Carpark_36%2C94"];
    B[95][36] = [23, "Mayer Building", "The_Mayer_Building"];
    B[96][36] = [30, "Pincombe Grove", "Pincombe_Grove_%28Williamsville%29"];
    B[97][36] = [11, "Club Kempster", "Club_Kempster"];
    B[98][36] = [3, "Grannum Auto Repair", "Grannum_Auto_Repair"];
    B[99][36] = [30, "Woollacott Row", "Woollacott_Row"];
    B[90][37] = [
      5,
      "Luscombe Building",
      "The_Luscombe_Building_%28Williamsville%29",
    ];
    B[91][37] = [5, "Bugden Building", "The_Bugden_Building"];
    B[92][37] = [26, "Krinks Power Station", "Krinks_Power_Station"];
    B[93][37] = [26, "Krinks Power Station", "Krinks_Power_Station"];
    B[94][37] = [21, "Reddrop Monument", "The_Reddrop_Monument"];
    B[95][37] = [23, "Missen Building", "The_Missen_Building"];
    B[96][37] = [11, "Club Margesson", "Club_Margesson"];
    B[97][37] = [5, "Spurr Building", "The_Spurr_Building"];
    B[98][37] = [5, "Sams Building", "The_Sams_Building"];
    B[99][37] = [30, "Whyppey Place", "Whyppey_Place"];
    B[90][38] = [17, "Junkyard", "Junkyard_38%2C90"];
    B[91][38] = [30, "Shartman Walk", "Shartman_Walk"];
    B[92][38] = [30, "Woodhouse Grove", "Woodhouse_Grove"];
    B[93][38] = [
      13,
      "Condon Boulevard Fire Station",
      "Condon_Boulevard_Fire_Station",
    ];
    B[94][38] = [2, "Bullor Arms", "The_Bullor_Arms"];
    B[95][38] = [28, "Hurst Square School", "Hurst_Square_School"];
    B[96][38] = [33, "Wasteland", "Wasteland_38%2C96"];
    B[97][38] = [9, "St Servatius's Church", "St._Servatius%27s_Church"];
    B[98][38] = [30, "Perceval Grove", "Perceval_Grove"];
    B[99][38] = [31, "Borrer Towers", "Borrer_Towers"];
    B[90][39] = [18, "Forse Library", "Forse_Library"];
    B[91][39] = [30, "Sherstone Walk", "Sherstone_Walk"];
    B[92][39] = [
      30,
      "Merryweather Boulevard",
      "Merryweather_Boulevard_%28Williamsville%29",
    ];
    B[93][39] = [22, "Eastwood Museum", "The_Eastwood_Museum"];
    B[94][39] = [2, "Jervis Arms", "The_Jervis_Arms"];
    B[95][39] = [31, "Luttrell Towers", "Luttrell_Towers"];
    B[96][39] = [30, "Mansbridge Alley", "Mansbridge_Alley"];
    B[97][39] = [4, "Shfield Bank", "Shfield_Bank"];
    B[98][39] = [30, "Balch Place", "Balch_Place"];
    B[99][39] = [30, "Penfold Alley", "Penfold_Alley"];

    // ------------------------------------------------
    // Starlingtown
    // ------------------------------------------------
    B[90][40] = [31, "Runciman Towers", "Runciman_Towers"];
    B[91][40] = [15, "St Soter's Hospital", "St._Soter%27s_Hospital"];
    B[92][40] = [30, "Fey Walk", "Fey_Walk"];
    B[93][40] = [30, "Darvall Lane", "Darvall_Lane"];
    B[94][40] = [30, "Milard Lane", "Milard_Lane_%28Buttonville%29"];
    B[95][40] = [30, "Beable Drive", "Beable_Drive"];
    B[96][40] = [5, "Bound Building", "The_Bound_Building"];
    B[97][40] = [
      9,
      "St Aidan's Church",
      "St._Aidan%27s_Church_%28Buttonville%29",
    ];
    B[98][40] = [8, "Cemetery", "Cemetery_40%2C98"];
    B[99][40] = [30, "Headland Street", "Headland_Street"];
    B[90][41] = [3, "Wheddon Auto Repair", "Wheddon_Auto_Repair"];
    B[91][41] = [30, "Bord Boulevard", "Bord_Boulevard"];
    B[92][41] = [28, "Wadman Place School", "Wadman_Place_School"];
    B[93][41] = [33, "Wasteland", "Wasteland_41%2C93"];
    B[94][41] = [12, "Factory", "Factory_41%2C94"];
    B[95][41] = [10, "Halliley Cinema", "Halliley_Cinema"];
    B[96][41] = [5, "Dury Building", "The_Dury_Building_%28Buttonville%29"];
    B[97][41] = [
      13,
      "Whittem Place Fire Station",
      "Whittem_Place_Fire_Station",
    ];
    B[98][41] = [23, "Pryor Building", "The_Pryor_Building"];
    B[99][41] = [32, "Warehouse", "Warehouse_41%2C99"];
    B[90][42] = [30, "Howland Walk", "Howland_Walk"];
    B[91][42] = [4, "Tinney Bank", "Tinney_Bank"];
    B[92][42] = [30, "Grove Avenue", "Grove_Avenue"];
    B[93][42] = [17, "Junkyard", "Junkyard_42%2C93"];
    B[94][42] = [30, "Brinson Square", "Brinson_Square"];
    B[95][42] = [32, "Warehouse", "Warehouse_42%2C95"];
    B[96][42] = [30, "Pound Street", "Pound_Street"];
    B[97][42] = [28, "Pargitten Alley School", "Pargitten_Alley_School"];
    B[98][42] = [5, "Mallery Building", "The_Mallery_Building"];
    B[99][42] = [30, "Frost Square", "Frost_Square"];
    B[90][43] = [30, "Aulsey Row", "Aulsey_Row"];
    B[91][43] = [30, "Pothecary Row", "Pothecary_Row"];
    B[92][43] = [30, "Beakes Drive", "Beakes_Drive"];
    B[93][43] = [30, "Marshfield Road", "Marshfield_Road"];
    B[94][43] = [6, "Carpark", "Carpark_43%2C94"];
    B[95][43] = [30, "Wybrants Plaza", "Wybrants_Plaza"];
    B[96][43] = [33, "Wasteland", "Wasteland_43%2C96"];
    B[97][43] = [18, "Snow Library", "Snow_Library"];
    B[98][43] = [30, "Pidgeon Avenue", "Pidgeon_Avenue"];
    B[99][43] = [30, "Bowle Row", "Bowle_Row"];
    B[90][44] = [30, "Purt Walk", "Purt_Walk"];
    B[91][44] = [11, "Club Bennett", "Club_Bennett"];
    B[92][44] = [
      9,
      "St Columbanus's Church",
      "St._Columbanus%27s_Church_%28Buttonville%29",
    ];
    B[93][44] = [8, "Cemetery", "Cemetery_44%2C93"];
    B[94][44] = [10, "Bonning Cinema", "Bonning_Cinema"];
    B[95][44] = [32, "Warehouse", "Warehouse_44%2C95"];
    B[96][44] = [17, "Junkyard", "Junkyard_44%2C96"];
    B[97][44] = [30, "Milligan Street", "Milligan_Street"];
    B[98][44] = [2, "Shickell Arms", "The_Shickell_Arms"];
    B[99][44] = [
      27,
      "Jenkins Lane Railway Station",
      "Jenkins_Lane_Railway_Station",
    ];
    B[90][45] = [16, "Barret Hotel", "The_Barret_Hotel"];
    B[91][45] = [30, "Chittenden Row", "Chittenden_Row"];
    B[92][45] = [30, "Rosenhagen Plaza", "Rosenhagen_Plaza"];
    B[93][45] = [6, "Carpark", "Carpark_45%2C93"];
    B[94][45] = [30, "Don Avenue", "Don_Avenue"];
    B[95][45] = [3, "Hallifax Auto Repair", "Hallifax_Auto_Repair"];
    B[96][45] = [30, "Fildes Walk", "Fildes_Walk"];
    B[97][45] = [11, "Club Dell", "Club_Dell"];
    B[98][45] = [17, "Junkyard", "Junkyard_45%2C98"];
    B[99][45] = [28, "Alner Place School", "Alner_Place_School"];
    B[90][46] = [30, "Welsher Square", "Welsher_Square"];
    B[91][46] = [2, "Curtice Arms", "The_Curtice_Arms"];
    B[92][46] = [30, "Tarring Place", "Tarring_Place"];
    B[93][46] = [30, "Bell Lane", "Bell_Lane"];
    B[94][46] = [24, "Griffiths Park", "Griffiths_Park"];
    B[95][46] = [30, "Hallson Alley", "Hallson_Alley"];
    B[96][46] = [11, "Club Hunt", "Club_Hunt"];
    B[97][46] = [30, "Perriott Grove", "Perriott_Grove"];
    B[98][46] = [30, "Rouse Road", "Rouse_Road"];
    B[99][46] = [5, "Lethebe Building", "The_Lethebe_Building"];
    B[90][47] = [23, "Fort Building", "The_Fort_Building"];
    B[91][47] = [
      27,
      "Northup Avenue Railway Station",
      "Northup_Avenue_Railway_Station",
    ];
    B[92][47] = [
      25,
      "Ranson Boulevard Police Dept",
      "Ranson_Boulevard_Police_Department",
    ];
    B[93][47] = [32, "Warehouse", "Warehouse_47%2C93"];
    B[94][47] = [30, "Houlden Avenue", "Houlden_Avenue"];
    B[95][47] = [33, "Wasteland", "Wasteland_47%2C95"];
    B[96][47] = [30, "Patridge Grove", "Patridge_Grove_%28Buttonville%29"];
    B[97][47] = [10, "Lyne Cinema", "Lyne_Cinema"];
    B[98][47] = [3, "Hanney Auto Repair", "Hanney_Auto_Repair"];
    B[99][47] = [12, "Factory", "Factory_47%2C99"];
    B[90][48] = [
      27,
      "Cabble Alley Railway Station",
      "Cabble_Alley_Railway_Station",
    ];
    B[91][48] = [
      23,
      "Brazey Building",
      "The_Brazey_Building_%28Buttonville%29",
    ];
    B[92][48] = [30, "Saffyn Place", "Saffyn_Place"];
    B[93][48] = [12, "Factory", "Factory_48%2C93"];
    B[94][48] = [30, "Stayne Row", "Stayne_Row"];
    B[95][48] = [4, "Hutchin Bank", "Hutchin_Bank"];
    B[96][48] = [23, "Tebbett Building", "The_Tebbett_Building"];
    B[97][48] = [30, "Rhymes Crescent", "Rhymes_Crescent"];
    B[98][48] = [
      13,
      "Garlick Square Fire Station",
      "Garlick_Square_Fire_Station",
    ];
    B[99][48] = [32, "Warehouse", "Warehouse_48%2C99"];
    B[90][49] = [33, "Wasteland", "Wasteland_49%2C90"];
    B[91][49] = [12, "Factory", "Factory_49%2C91"];
    B[92][49] = [22, "Mechel Museum", "The_Mechel_Museum"];
    B[93][49] = [16, "Bainton Hotel", "The_Bainton_Hotel"];
    B[94][49] = [17, "Junkyard", "Junkyard_49%2C94"];
    B[95][49] = [4, "Wadley Bank", "Wadley_Bank"];
    B[96][49] = [30, "Gyllet Street", "Gyllet_Street"];
    B[97][49] = [5, "Knapton Building", "The_Knapton_Building"];
    B[98][49] = [19, "Buckley Mall", "Buckley_Mall"];
    B[99][49] = [19, "Buckley Mall", "Buckley_Mall"];

    // ------------------------------------------------
    // Dentonside
    // ------------------------------------------------
    B[90][50] = [30, "Pook Way", "Pook_Way"];
    B[91][50] = [16, "Howlett Hotel", "The_Howlett_Hotel"];
    B[92][50] = [18, "Alner Library", "Alner_Library"];
    B[93][50] = [30, "Fean Avenue", "Fean_Avenue"];
    B[94][50] = [30, "McCormack Way", "McCormack_Way"];
    B[95][50] = [30, "Prentice Road", "Prentice_Road"];
    B[96][50] = [30, "Wells Plaza", "Wells_Plaza"];
    B[97][50] = [
      15,
      "Julie General Hospital",
      "Julie_General_Hospital_%28Wyke_Hills%29",
    ];
    B[98][50] = [19, "Buckley Mall", "Buckley_Mall"];
    B[99][50] = [19, "Buckley Mall", "Buckley_Mall"];
    B[90][51] = [8, "Cemetery", "Cemetery_51%2C90"];
    B[91][51] = [30, "Gautrey Way", "Gautrey_Way"];
    B[92][51] = [30, "Riggs Avenue", "Riggs_Avenue"];
    B[93][51] = [30, "Craddock Road", "Craddock_Road"];
    B[94][51] = [3, "Ackland Auto Repair", "Ackland_Auto_Repair"];
    B[95][51] = [21, "Hetherington Monument", "The_Hetherington_Monument"];
    B[96][51] = [32, "Warehouse", "Warehouse_51%2C96"];
    B[97][51] = [6, "Carpark", "Carpark_51%2C97"];
    B[98][51] = [
      9,
      "St Dionysius's Church",
      "St._Dionysius%27s_Church_%28Wyke_Hills%29",
    ];
    B[99][51] = [8, "Cemetery", "Cemetery_51%2C99"];
    B[90][52] = [17, "Junkyard", "Junkyard_52%2C90"];
    B[91][52] = [
      25,
      "Cockayne Grove Police Dept",
      "Cockayne_Grove_Police_Department",
    ];
    B[92][52] = [30, "Horsnell Lane", "Horsnell_Lane"];
    B[93][52] = [23, "Craigie Building", "The_Craigie_Building"];
    B[94][52] = [17, "Junkyard", "Junkyard_52%2C94"];
    B[95][52] = [22, "Huddy Museum", "The_Huddy_Museum"];
    B[96][52] = [33, "Wasteland", "Wasteland_52%2C96"];
    B[97][52] = [30, "Homan Drive", "Homan_Drive"];
    B[98][52] = [
      9,
      "St Emelia's Church",
      "St._Emelia%27s_Church_%28Wyke_Hills%29",
    ];
    B[99][52] = [30, "Ellard Road", "Ellard_Road"];
    B[90][53] = [
      27,
      "Lamport Drive Railway Station",
      "Lamport_Drive_Railway_Station",
    ];
    B[91][53] = [31, "Botting Towers", "Botting_Towers_%28Wyke_Hills%29"];
    B[92][53] = [30, "Buskin Drive", "Buskin_Drive"];
    B[93][53] = [30, "Bugden Drive", "Bugden_Drive"];
    B[94][53] = [5, "Ryles Building", "The_Ryles_Building"];
    B[95][53] = [30, "Broadbery Lane", "Broadbery_Lane"];
    B[96][53] = [
      9,
      "St Celestine's Church",
      "St._Celestine%27s_Church_%28Wyke_Hills%29",
    ];
    B[97][53] = [
      25,
      "Screech Lane Police Dept",
      "Screech_Lane_Police_Department",
    ];
    B[98][53] = [23, "Lodder Building", "The_Lodder_Building"];
    B[99][53] = [11, "Club Golding", "Club_Golding"];
    B[90][54] = [30, "Purdue Square", "Purdue_Square"];
    B[91][54] = [30, "Nicholes Grove", "Nicholes_Grove"];
    B[92][54] = [31, "Reed Towers", "Reed_Towers"];
    B[93][54] = [18, "Sharpe Library", "Sharpe_Library"];
    B[94][54] = [2, "Witt Arms", "The_Witt_Arms"];
    B[95][54] = [30, "Frith Square", "Frith_Square"];
    B[96][54] = [6, "Carpark", "Carpark_54%2C96"];
    B[97][54] = [8, "Cemetery", "Cemetery_54%2C97"];
    B[98][54] = [4, "Cheesman Bank", "Cheesman_Bank"];
    B[99][54] = [11, "Club Morris", "Club_Morris"];
    B[90][55] = [30, "Atkins Row", "Atkins_Row"];
    B[91][55] = [5, "Pack Building", "The_Pack_Building"];
    B[92][55] = [12, "Factory", "Factory_55%2C92"];
    B[93][55] = [31, "Hitchens Towers", "Hitchens_Towers"];
    B[94][55] = [30, "Pysing Way", "Pysing_Way"];
    B[95][55] = [30, "Knight Square", "Knight_Square"];
    B[96][55] = [31, "Wooman Towers", "Wooman_Towers"];
    B[97][55] = [13, "Haim Walk Fire Station", "Haim_Walk_Fire_Station"];
    B[98][55] = [2, "Brookes Arms", "The_Brookes_Arms"];
    B[99][55] = [30, "Donoran Alley", "Donoran_Alley"];
    B[90][56] = [30, "Winsor Alley", "Winsor_Alley"];
    B[91][56] = [30, "Nursey Way", "Nursey_Way"];
    B[92][56] = [6, "Carpark", "Carpark_56%2C92"];
    B[93][56] = [32, "Warehouse", "Warehouse_56%2C93"];
    B[94][56] = [22, "Ruxton Museum", "The_Ruxton_Museum"];
    B[95][56] = [30, "Honeybone Walk", "Honeybone_Walk"];
    B[96][56] = [23, "Needs Building", "The_Needs_Building"];
    B[97][56] = [32, "Warehouse", "Warehouse_56%2C97"];
    B[98][56] = [12, "Factory", "Factory_56%2C98"];
    B[99][56] = [4, "Nurcombe Bank", "Nurcombe_Bank"];
    B[90][57] = [33, "Wasteland", "Wasteland_57%2C90"];
    B[91][57] = [33, "Wasteland", "Wasteland_57%2C91"];
    B[92][57] = [17, "Junkyard", "Junkyard_57%2C92"];
    B[93][57] = [18, "Lewance Library", "Lewance_Library"];
    B[94][57] = [18, "Cowie Library", "Cowie_Library"];
    B[95][57] = [2, "Wolfendall Arms", "The_Wolfendall_Arms"];
    B[96][57] = [16, "Cosh Motel", "The_Cosh_Motel"];
    B[97][57] = [33, "Wasteland", "Wasteland_57%2C97"];
    B[98][57] = [
      9,
      "St Maximillian's Church",
      "St._Maximillian%27s_Church_%28Wyke_Hills%29",
    ];
    B[99][57] = [30, "Winsley Square", "Winsley_Square"];
    B[90][58] = [16, "Cosway Hotel", "The_Cosway_Hotel"];
    B[91][58] = [3, "Marston Auto Repair", "Marston_Auto_Repair"];
    B[92][58] = [30, "Keirl Street", "Keirl_Street"];
    B[93][58] = [
      15,
      "Ephrem General Hospital",
      "Ephrem_General_Hospital_%28Wyke_Hills%29",
    ];
    B[94][58] = [30, "Bubcar Avenue", "Bubcar_Avenue"];
    B[95][58] = [3, "Shepherd Auto Repair", "Shepherd_Auto_Repair"];
    B[96][58] = [23, "Wicksted Building", "The_Wicksted_Building"];
    B[97][58] = [30, "Cabbell Way", "Cabbell_Way"];
    B[98][58] = [33, "Wasteland", "Wasteland_58%2C98"];
    B[99][58] = [5, "Kenefie Building", "The_Kenefie_Building"];
    B[90][59] = [22, "Saffyn Museum", "The_Saffyn_Museum"];
    B[91][59] = [30, "Bignal Drive", "Bignal_Drive"];
    B[92][59] = [5, "Clive Building", "The_Clive_Building"];
    B[93][59] = [30, "Gingell Lane", "Gingell_Lane"];
    B[94][59] = [32, "Warehouse", "Warehouse_59%2C94"];
    B[95][59] = [30, "Wey Row", "Wey_Row_%28Wyke_Hills%29"];
    B[96][59] = [5, "Threadgold Building", "The_Threadgold_Building"];
    B[97][59] = [24, "Owens Park", "Owens_Park"];
    B[98][59] = [33, "Wasteland", "Wasteland_59%2C98"];
    B[99][59] = [2, "William Arms", "The_William_Arms"];

    // ------------------------------------------------
    // Houldenbank
    // ------------------------------------------------
    B[90][60] = [30, "Collinns Road", "Collinns_Road_%28Hollomstown%29"];
    B[91][60] = [27, "Beck Road Railway Station", "Beck_Road_Railway_Station"];
    B[92][60] = [30, "Stagg Crescent", "Stagg_Crescent"];
    B[93][60] = [33, "Wasteland", "Wasteland_60%2C93"];
    B[94][60] = [10, "Bendall Cinema", "Bendall_Cinema"];
    B[95][60] = [30, "Shiel Crescent", "Shiel_Crescent"];
    B[96][60] = [
      27,
      "Methringham Alley Railway Station",
      "Methringham_Alley_Railway_Station",
    ];
    B[97][60] = [28, "Reed Avenue School", "Reed_Avenue_School"];
    B[98][60] = [
      5,
      "Rycroft Building",
      "The_Rycroft_Building_%28Hollomstown%29",
    ];
    B[99][60] = [11, "Club Dorvell", "Club_Dorvell"];
    B[90][61] = [
      25,
      "Waterlow Street Police Dept",
      "Waterlow_Street_Police_Department",
    ];
    B[91][61] = [5, "Flynn Building", "The_Flynn_Building"];
    B[92][61] = [30, "Wheaton Square", "Wheaton_Square_%28Hollomstown%29"];
    B[93][61] = [18, "Fluck Library", "Fluck_Library"];
    B[94][61] = [28, "Shearn Alley School", "Shearn_Alley_School"];
    B[95][61] = [30, "Holden Lane", "Holden_Lane"];
    B[96][61] = [30, "Loweth Drive", "Loweth_Drive"];
    B[97][61] = [5, "MacDonald Building", "The_MacDonald_Building"];
    B[98][61] = [4, "Batt Bank", "Batt_Bank"];
    B[99][61] = [5, "Starkie Building", "The_Starkie_Building"];
    B[90][62] = [21, "Coopey Monument", "The_Coopey_Monument"];
    B[91][62] = [30, "Bilsdon Square", "Bilsdon_Square"];
    B[92][62] = [30, "Cowen Drive", "Cowen_Drive"];
    B[93][62] = [22, "Pink Museum", "The_Pink_Museum"];
    B[94][62] = [30, "Earle Way", "Earle_Way"];
    B[95][62] = [16, "Limbery Hotel", "The_Limbery_Hotel"];
    B[96][62] = [30, "Marchia Walk", "Marchia_Walk"];
    B[97][62] = [18, "Pitman Library", "Pitman_Library"];
    B[98][62] = [30, "Eeles Way", "Eeles_Way_%28Hollomstown%29"];
    B[99][62] = [5, "Bickell Building", "The_Bickell_Building"];
    B[90][63] = [5, "Lavis Building", "The_Lavis_Building"];
    B[91][63] = [30, "Boutcher Alley", "Boutcher_Alley"];
    B[92][63] = [30, "Minifie Plaza", "Minifie_Plaza"];
    B[93][63] = [22, "Elton Museum", "The_Elton_Museum"];
    B[94][63] = [15, "Theophan General Hospital", "Theophan_General_Hospital"];
    B[95][63] = [
      13,
      "Avent Crescent Fire Station",
      "Avent_Crescent_Fire_Station",
    ];
    B[96][63] = [6, "Carpark", "Carpark_63%2C96"];
    B[97][63] = [2, "Hedley Arms", "The_Hedley_Arms"];
    B[98][63] = [5, "Meadley Building", "The_Meadley_Building"];
    B[99][63] = [23, "Western Building", "The_Western_Building"];
    B[90][64] = [31, "Towne Towers", "Towne_Towers"];
    B[91][64] = [2, "Cleaves Arms", "The_Cleaves_Arms"];
    B[92][64] = [22, "Colbourne Museum", "The_Colbourne_Museum"];
    B[93][64] = [12, "Factory", "Factory_64%2C93"];
    B[94][64] = [5, "Roddoway Building", "The_Roddoway_Building"];
    B[95][64] = [28, "Abbott Road School", "Abbott_Road_School"];
    B[96][64] = [30, "Sparke Row", "Sparke_Row"];
    B[97][64] = [30, "Carpinter Boulevard", "Carpinter_Boulevard"];
    B[98][64] = [
      13,
      "Huggins Avenue Fire Station",
      "Huggins_Avenue_Fire_Station",
    ];
    B[99][64] = [24, "Tilke Park", "Tilke_Park"];
    B[90][65] = [2, "Woodyatt Arms", "The_Woodyatt_Arms"];
    B[91][65] = [3, "Mudford Auto Repair", "Mudford_Auto_Repair"];
    B[92][65] = [
      9,
      "St Juan's Church",
      "St._Juan%27s_Church_%28Hollomstown%29",
    ];
    B[93][65] = [22, "Goodwyn Museum", "The_Goodwyn_Museum"];
    B[94][65] = [33, "Wasteland", "Wasteland_65%2C94"];
    B[95][65] = [32, "Warehouse", "Warehouse_65%2C95"];
    B[96][65] = [30, "Holsgrove Boulevard", "Holsgrove_Boulevard"];
    B[97][65] = [2, "Dollis Arms", "The_Dollis_Arms"];
    B[98][65] = [17, "Junkyard", "Junkyard_65%2C98"];
    B[99][65] = [32, "Warehouse", "Warehouse_65%2C99"];
    B[90][66] = [5, "Bigg Building", "The_Bigg_Building"];
    B[91][66] = [28, "Warfield Boulevard School", "Warfield_Boulevard_School"];
    B[92][66] = [8, "Cemetery", "Cemetery_66%2C92"];
    B[93][66] = [21, "Eddington Monument", "The_Eddington_Monument"];
    B[94][66] = [16, "Dinan Hotel", "The_Dinan_Hotel"];
    B[95][66] = [30, "Baston Street", "Baston_Street"];
    B[96][66] = [
      9,
      "St Piran's Church",
      "St._Piran%27s_Church_%28Hollomstown%29",
    ];
    B[97][66] = [8, "Cemetery", "Cemetery_66%2C97"];
    B[98][66] = [10, "Stampfordham Cinema", "Stampfordham_Cinema"];
    B[99][66] = [33, "Wasteland", "Wasteland_66%2C99"];
    B[90][67] = [
      13,
      "Sleeman Alley Fire Station",
      "Sleeman_Alley_Fire_Station",
    ];
    B[91][67] = [31, "Sorrell Towers", "Sorrell_Towers"];
    B[92][67] = [5, "Dark Building", "The_Dark_Building"];
    B[93][67] = [10, "Loockyer Cinema", "Loockyer_Cinema"];
    B[94][67] = [17, "Junkyard", "Junkyard_67%2C94"];
    B[95][67] = [
      27,
      "Flower Crescent Railway Station",
      "Flower_Crescent_Railway_Station",
    ];
    B[96][67] = [4, "Pilbeam Bank", "Pilbeam_Bank"];
    B[97][67] = [30, "Hayne Street", "Hayne_Street"];
    B[98][67] = [2, "Bere Arms", "The_Bere_Arms"];
    B[99][67] = [3, "Whitemore Auto Repair", "Whitemore_Auto_Repair"];
    B[90][68] = [32, "Warehouse", "Warehouse_68%2C90"];
    B[91][68] = [30, "Milnerr Walk", "Milnerr_Walk"];
    B[92][68] = [22, "Riggs Museum", "The_Riggs_Museum"];
    B[93][68] = [30, "Trett Plaza", "Trett_Plaza"];
    B[94][68] = [30, "Spalding Place", "Spalding_Place"];
    B[95][68] = [
      9,
      "St Daniel's Church",
      "St._Daniel%27s_Church_%28Hollomstown%29",
    ];
    B[96][68] = [23, "Porter Building", "The_Porter_Building"];
    B[97][68] = [30, "Adolphy Drive", "Adolphy_Drive"];
    B[98][68] = [28, "Cowell Row School", "Cowell_Row_School"];
    B[99][68] = [17, "Junkyard", "Junkyard_68%2C99"];
    B[90][69] = [4, "Errington Bank", "Errington_Bank"];
    B[91][69] = [31, "Totterdell Towers", "Totterdell_Towers"];
    B[92][69] = [30, "Portal Way", "Portal_Way"];
    B[93][69] = [30, "Hepplethwaite Drive", "Hepplethwaite_Drive"];
    B[94][69] = [5, "Chard Building", "The_Chard_Building"];
    B[95][69] = [15, "Gall General Hospital", "Gall_General_Hospital"];
    B[96][69] = [30, "Twitt Place", "Twitt_Place"];
    B[97][69] = [10, "Barnes Cinema", "Barnes_Cinema"];
    B[98][69] = [30, "Parker Square", "Parker_Square"];
    B[99][69] = [2, "Lamport Arms", "The_Lamport_Arms"];

    // ------------------------------------------------
    // Penny Heights
    // ------------------------------------------------
    B[90][70] = [30, "Hagger Square", "Hagger_Square_%28Danversbank%29"];
    B[91][70] = [33, "Wasteland", "Wasteland_70%2C91"];
    B[92][70] = [5, "Gagan Building", "The_Gagan_Building"];
    B[93][70] = [5, "Hodge Building", "The_Hodge_Building"];
    B[94][70] = [30, "Spooner Lane", "Spooner_Lane_%28Danversbank%29"];
    B[95][70] = [30, "Winslade Road", "Winslade_Road"];
    B[96][70] = [5, "Appelby Building", "The_Appelby_Building"];
    B[97][70] = [33, "Wasteland", "Wasteland_70%2C97"];
    B[98][70] = [10, "Kirkland Cinema", "Kirkland_Cinema"];
    B[99][70] = [22, "Durie Museum", "The_Durie_Museum"];
    B[90][71] = [30, "Healey Crescent", "Healey_Crescent"];
    B[91][71] = [30, "Howdell Walk", "Howdell_Walk"];
    B[92][71] = [13, "Pine Walk Fire Station", "Pine_Walk_Fire_Station"];
    B[93][71] = [
      13,
      "Athay Crescent Fire Station",
      "Athay_Crescent_Fire_Station",
    ];
    B[94][71] = [2, "Standfast Arms", "The_Standfast_Arms"];
    B[95][71] = [30, "Daley Way", "Daley_Way"];
    B[96][71] = [5, "Cowie Building", "The_Cowie_Building"];
    B[97][71] = [10, "Ruddle Cinema", "Ruddle_Cinema"];
    B[98][71] = [30, "Knapton Drive", "Knapton_Drive"];
    B[99][71] = [
      5,
      "Curtice Building",
      "The_Curtice_Building_%28Danversbank%29",
    ];
    B[90][72] = [5, "Whitmey Building", "The_Whitmey_Building"];
    B[91][72] = [30, "Gare Square", "Gare_Square"];
    B[92][72] = [
      15,
      "Servatius General Hospital",
      "Servatius_General_Hospital",
    ];
    B[93][72] = [5, "Pitts Building", "The_Pitts_Building"];
    B[94][72] = [
      9,
      "St Lucius's Church",
      "St._Lucius%27s_Church_%28Danversbank%29",
    ];
    B[95][72] = [30, "Witherington Boulevard", "Witherington_Boulevard"];
    B[96][72] = [
      15,
      "Martha General Hospital",
      "Martha_General_Hospital_%28Danversbank%29",
    ];
    B[97][72] = [9, "St Simon's Church", "St._Simon%27s_Church"];
    B[98][72] = [21, "Sherston Monument", "The_Sherston_Monument"];
    B[99][72] = [16, "Bird Hotel", "The_Bird_Hotel"];
    B[90][73] = [30, "Street Plaza", "Street_Plaza"];
    B[91][73] = [5, "Tyack Building", "The_Tyack_Building"];
    B[92][73] = [30, "Hanlon Way", "Hanlon_Way"];
    B[93][73] = [24, "Ozen Park", "Ozen_Park"];
    B[94][73] = [28, "Twill Alley School", "Twill_Alley_School"];
    B[95][73] = [5, "Barrow Building", "The_Barrow_Building"];
    B[96][73] = [22, "Coy Museum", "The_Coy_Museum"];
    B[97][73] = [8, "Cemetery", "Cemetery_73%2C97"];
    B[98][73] = [30, "Rixon Plaza", "Rixon_Plaza"];
    B[99][73] = [5, "Pettey Building", "The_Pettey_Building"];
    B[90][74] = [30, "Vellacott Avenue", "Vellacott_Avenue"];
    B[91][74] = [30, "Stansfield Drive", "Stansfield_Drive"];
    B[92][74] = [30, "Capper Square", "Capper_Square"];
    B[93][74] = [13, "Lea Avenue Fire Station", "Lea_Avenue_Fire_Station"];
    B[94][74] = [33, "Wasteland", "Wasteland_74%2C94"];
    B[95][74] = [30, "Carrington Plaza", "Carrington_Plaza"];
    B[96][74] = [22, "Poulet Museum", "The_Poulet_Museum"];
    B[97][74] = [15, "Teresa General Hospital", "Teresa_General_Hospital"];
    B[98][74] = [16, "Davey Hotel", "The_Davey_Hotel"];
    B[99][74] = [30, "Barnwell Alley", "Barnwell_Alley"];
    B[90][75] = [30, "Temple Road", "Temple_Road"];
    B[91][75] = [23, "Kynaston Building", "The_Kynaston_Building"];
    B[92][75] = [24, "Angerstein Park", "Angerstein_Park"];
    B[93][75] = [32, "Warehouse", "Warehouse_75%2C93"];
    B[94][75] = [30, "Hagger Way", "Hagger_Way_%28Danversbank%29"];
    B[95][75] = [30, "Patton Way", "Patton_Way"];
    B[96][75] = [25, "Voss Lane Police Dept", "Voss_Lane_Police_Department"];
    B[97][75] = [30, "Sidney Plaza", "Sidney_Plaza"];
    B[98][75] = [17, "Junkyard", "Junkyard_75%2C98"];
    B[99][75] = [5, "Kirkaldie Building", "The_Kirkaldie_Building"];
    B[90][76] = [25, "Sleway Row Police Dept", "Sleway_Row_Police_Department"];
    B[91][76] = [30, "Jacquet Square", "Jacquet_Square"];
    B[92][76] = [30, "Phipps Square", "Phipps_Square"];
    B[93][76] = [30, "Budmead Way", "Budmead_Way_%28Danversbank%29"];
    B[94][76] = [30, "Strawbridge Grove", "Strawbridge_Grove"];
    B[95][76] = [30, "Bramwell Drive", "Bramwell_Drive"];
    B[96][76] = [30, "Shepherd Place", "Shepherd_Place"];
    B[97][76] = [22, "Hibbert Museum", "The_Hibbert_Museum"];
    B[98][76] = [30, "McNally Plaza", "McNally_Plaza"];
    B[99][76] = [5, "Buckley Building", "The_Buckley_Building"];
    B[90][77] = [33, "Wasteland", "Wasteland_77%2C90"];
    B[91][77] = [30, "Hellyer Alley", "Hellyer_Alley"];
    B[92][77] = [
      13,
      "Percival Street Fire Station",
      "Percival_Street_Fire_Station",
    ];
    B[93][77] = [24, "Burfield Park", "Burfield_Park"];
    B[94][77] = [33, "Wasteland", "Wasteland_77%2C94"];
    B[95][77] = [
      27,
      "Milverton Street Railway Station",
      "Milverton_Street_Railway_Station",
    ];
    B[96][77] = [5, "Panter Building", "The_Panter_Building"];
    B[97][77] = [10, "Mohrinck Cinema", "Mohrinck_Cinema"];
    B[98][77] = [17, "Junkyard", "Junkyard_77%2C98"];
    B[99][77] = [5, "Tidcombe Building", "The_Tidcombe_Building"];
    B[90][78] = [30, "Eagles Alley", "Eagles_Alley"];
    B[91][78] = [33, "Wasteland", "Wasteland_78%2C91"];
    B[92][78] = [21, "Dimon Monument", "The_Dimon_Monument"];
    B[93][78] = [10, "Kilingback Cinema", "Kilingback_Cinema"];
    B[94][78] = [17, "Junkyard", "Junkyard_78%2C94"];
    B[95][78] = [30, "Wedlake Grove", "Wedlake_Grove"];
    B[96][78] = [4, "Ruffer Bank", "Ruffer_Bank"];
    B[97][78] = [30, "Gleaves Crescent", "Gleaves_Crescent"];
    B[98][78] = [30, "Dinsdale Walk", "Dinsdale_Walk"];
    B[99][78] = [30, "Meatyard Crescent", "Meatyard_Crescent"];
    B[90][79] = [33, "Wasteland", "Wasteland_79%2C90"];
    B[91][79] = [30, "Bathurst Drive", "Bathurst_Drive"];
    B[92][79] = [31, "Burn Towers", "Burn_Towers"];
    B[93][79] = [2, "Denney Arms", "The_Denney_Arms"];
    B[94][79] = [30, "Dickenson Row", "Dickenson_Row"];
    B[95][79] = [
      27,
      "Chancellor Place Railway Station",
      "Chancellor_Place_Railway_Station",
    ];
    B[96][79] = [24, "Barrell Park", "Barrell_Park"];
    B[97][79] = [28, "Babey Road School", "Babey_Road_School"];
    B[98][79] = [30, "Spirod Plaza", "Spirod_Plaza"];
    B[99][79] = [5, "Addiscott Building", "The_Addiscott_Building"];

    // ------------------------------------------------
    // Fryerbank
    // ------------------------------------------------
    B[90][80] = [28, "Gulliver Street School", "Gulliver_Street_School"];
    B[91][80] = [30, "Gillett Way", "Gillett_Way"];
    B[92][80] = [
      25,
      "Somerside Drive Police Dept",
      "Somerside_Drive_Police_Department",
    ];
    B[93][80] = [5, "Wyche Building", "The_Wyche_Building"];
    B[94][80] = [30, "Kean Place", "Kean_Place"];
    B[95][80] = [30, "Smallwood Walk", "Smallwood_Walk"];
    B[96][80] = [32, "Warehouse", "Warehouse_80%2C96"];
    B[97][80] = [30, "Stoy Alley", "Stoy_Alley"];
    B[98][80] = [4, "Powers Bank", "Powers_Bank"];
    B[99][80] = [30, "Tims Grove", "Tims_Grove"];
    B[90][81] = [30, "Babb Lane", "Babb_Lane"];
    B[91][81] = [16, "Devine Motel", "The_Devine_Motel"];
    B[92][81] = [30, "Pitt Way", "Pitt_Way"];
    B[93][81] = [30, "Gatclin Square", "Gatclin_Square"];
    B[94][81] = [12, "Factory", "Factory_81%2C94"];
    B[95][81] = [22, "Phelips Museum", "The_Phelips_Museum"];
    B[96][81] = [15, "Agapitus General Hospital", "Agapitus_General_Hospital"];
    B[97][81] = [21, "Nathan Monument", "The_Nathan_Monument"];
    B[98][81] = [
      9,
      "St Cunigunde's Church",
      "St._Cunigunde%27s_Church_%28Whittenside%29",
    ];
    B[99][81] = [33, "Wasteland", "Wasteland_81%2C99"];
    B[90][82] = [30, "Stovin Place", "Stovin_Place"];
    B[91][82] = [30, "Bugg Crescent", "Bugg_Crescent"];
    B[92][82] = [30, "Clinker Avenue", "Clinker_Avenue"];
    B[93][82] = [32, "Warehouse", "Warehouse_82%2C93"];
    B[94][82] = [12, "Factory", "Factory_82%2C94"];
    B[95][82] = [10, "Stott Cinema", "Stott_Cinema"];
    B[96][82] = [30, "Greensill Lane", "Greensill_Lane"];
    B[97][82] = [21, "Sleeman Monument", "The_Sleeman_Monument"];
    B[98][82] = [8, "Cemetery", "Cemetery_82%2C98"];
    B[99][82] = [
      9,
      "St Symmachus's Church",
      "St._Symmachus%27s_Church_%28Whittenside%29",
    ];
    B[90][83] = [30, "Udy Boulevard", "Udy_Boulevard"];
    B[91][83] = [10, "Cowdry Cinema", "Cowdry_Cinema"];
    B[92][83] = [30, "Kemmis Walk", "Kemmis_Walk"];
    B[93][83] = [
      27,
      "Garton Place Railway Station",
      "Garton_Place_Railway_Station",
    ];
    B[94][83] = [16, "Beagly Hotel", "The_Beagly_Hotel"];
    B[95][83] = [32, "Warehouse", "Warehouse_83%2C95"];
    B[96][83] = [32, "Warehouse", "Warehouse_83%2C96"];
    B[97][83] = [30, "Bidgood Street", "Bidgood_Street"];
    B[98][83] = [33, "Wasteland", "Wasteland_83%2C98"];
    B[99][83] = [11, "Club Hucker", "Club_Hucker"];
    B[90][84] = [55, "Fort Perryn Infirmary", "Fort_Perryn"];
    B[91][84] = [56, "Fort Perryn Storehouse", "Fort_Perryn"];
    B[92][84] = [16, "Leach Motel", "The_Leach_Motel"];
    B[93][84] = [30, "Collinns Road", "Collinns_Road_%28Whittenside%29"];
    B[94][84] = [5, "Sherwel Building", "The_Sherwel_Building"];
    B[95][84] = [32, "Warehouse", "Warehouse_84%2C95"];
    B[96][84] = [12, "Factory", "Factory_84%2C96"];
    B[97][84] = [5, "Rayment Building", "The_Rayment_Building"];
    B[98][84] = [23, "Hurst Building", "The_Hurst_Building"];
    B[99][84] = [
      13,
      "Hitchens Street Fire Station",
      "Hitchens_Street_Fire_Station",
    ];
    B[90][85] = [51, "Fort Perryn Armoury", "Fort_Perryn"];
    B[91][85] = [54, "Fort Perryn Gatehouse", "Fort_Perryn"];
    B[92][85] = [30, "Went Street", "Went_Street"];
    B[93][85] = [
      27,
      "Tikanoff Square Railway Station",
      "Tikanoff_Square_Railway_Station",
    ];
    B[94][85] = [
      15,
      "Anne General Hospital",
      "Anne_General_Hospital_%28Whittenside%29",
    ];
    B[95][85] = [23, "Colglough Building", "The_Colglough_Building"];
    B[96][85] = [16, "McLaren Motel", "The_McLaren_Motel"];
    B[97][85] = [33, "Wasteland", "Wasteland_85%2C97"];
    B[98][85] = [28, "Herridge Way School", "Herridge_Way_School"];
    B[99][85] = [33, "Wasteland", "Wasteland_85%2C99"];
    B[90][86] = [56, "Fort Perryn Storehouse", "Fort_Perryn"];
    B[91][86] = [52, "Fort Perryn Barracks", "Fort_Perryn"];
    B[92][86] = [4, "Seymour Bank", "Seymour_Bank"];
    B[93][86] = [10, "Banton Cinema", "Banton_Cinema"];
    B[94][86] = [30, "Woolley Grove", "Woolley_Grove"];
    B[95][86] = [16, "Mais Motel", "The_Mais_Motel"];
    B[96][86] = [6, "Carpark", "Carpark_86%2C96"];
    B[97][86] = [16, "Roche Hotel", "The_Roche_Hotel"];
    B[98][86] = [30, "Forst Alley", "Forst_Alley"];
    B[99][86] = [
      27,
      "Creyghton Crescent Railway Station",
      "Creyghton_Crescent_Railway_Station",
    ];
    B[90][87] = [8, "Cemetery", "Cemetery_87%2C90"];
    B[91][87] = [33, "Wasteland", "Wasteland_87%2C91"];
    B[92][87] = [30, "Petherbridge Way", "Petherbridge_Way"];
    B[93][87] = [30, "Jepp Way", "Jepp_Way"];
    B[94][87] = [5, "Gullick Building", "The_Gullick_Building"];
    B[95][87] = [2, "Beable Arms", "The_Beable_Arms"];
    B[96][87] = [6, "Carpark", "Carpark_87%2C96"];
    B[97][87] = [10, "Dewfall Cinema", "Dewfall_Cinema"];
    B[98][87] = [30, "Copping Drive", "Copping_Drive"];
    B[99][87] = [30, "Wheddon Square", "Wheddon_Square"];
    B[90][88] = [23, "Malcolm Building", "The_Malcolm_Building"];
    B[91][88] = [30, "Potts Street", "Potts_Street"];
    B[92][88] = [5, "Allsop Building", "The_Allsop_Building"];
    B[93][88] = [30, "Hellings Lane", "Hellings_Lane"];
    B[94][88] = [18, "Whitemore Library", "Whitemore_Library"];
    B[95][88] = [4, "Charteris Bank", "Charteris_Bank"];
    B[96][88] = [30, "Brymer Drive", "Brymer_Drive"];
    B[97][88] = [
      25,
      "Sprackling Square Police Dept",
      "Sprackling_Square_Police_Department",
    ];
    B[98][88] = [30, "Skilton Crescent", "Skilton_Crescent"];
    B[99][88] = [
      9,
      "St Juan's Church",
      "St._Juan%27s_Church_%28Whittenside%29",
    ];
    B[90][89] = [30, "Beamer Drive", "Beamer_Drive"];
    B[91][89] = [30, "Selley Plaza", "Selley_Plaza"];
    B[92][89] = [24, "Wilsdon Park", "Wilsdon_Park"];
    B[93][89] = [30, "Ackermen Way", "Ackermen_Way"];
    B[94][89] = [32, "Warehouse", "Warehouse_89%2C94"];
    B[95][89] = [13, "Bisdee Road Fire Station", "Bisdee_Road_Fire_Station"];
    B[96][89] = [
      5,
      "Bellamy Building",
      "The_Bellamy_Building_%28Whittenside%29",
    ];
    B[97][89] = [31, "Clough Towers", "Clough_Towers"];
    B[98][89] = [11, "Club Adey", "Club_Adey"];
    B[99][89] = [10, "Walters Cinema", "Walters_Cinema"];

    // ------------------------------------------------
    // Miltown
    // ------------------------------------------------
    B[90][90] = [21, "Bizzell Monument", "The_Bizzell_Monument"];
    B[91][90] = [4, "Glyde Bank", "Glyde_Bank"];
    B[92][90] = [24, "Hitchcott Park", "Hitchcott_Park"];
    B[93][90] = [30, "Hanham Way", "Hanham_Way"];
    B[94][90] = [
      25,
      "Fricker Crescent Police Dept",
      "Fricker_Crescent_Police_Department",
    ];
    B[95][90] = [6, "Carpark", "Carpark_90%2C95"];
    B[96][90] = [
      15,
      "St Francis's Hospital",
      "St._Francis%27s_Hospital_%28Miltown%29",
    ];
    B[97][90] = [30, "Stroude Crescent", "Stroude_Crescent"];
    B[98][90] = [24, "Red Park", "Red_Park"];
    B[99][90] = [
      13,
      "Donoghan Walk Fire Station",
      "Donoghan_Walk_Fire_Station",
    ];
    B[90][91] = [18, "Gover Library", "Gover_Library"];
    B[91][91] = [23, "Cartwright Building", "The_Cartwright_Building"];
    B[92][91] = [32, "Warehouse", "Warehouse_91%2C92"];
    B[93][91] = [
      30,
      "Postlethwaite Drive",
      "Postlethwaite_Drive_%28Miltown%29",
    ];
    B[94][91] = [30, "Restrick Crescent", "Restrick_Crescent"];
    B[95][91] = [30, "Snoad Grove", "Snoad_Grove"];
    B[96][91] = [24, "Villar Park", "Villar_Park"];
    B[97][91] = [12, "Factory", "Factory_91%2C97"];
    B[98][91] = [
      30,
      "Merryweather Boulevard",
      "Merryweather_Boulevard_%28Miltown%29",
    ];
    B[99][91] = [17, "Junkyard", "Junkyard_91%2C99"];
    B[90][92] = [12, "Factory", "Factory_92%2C90"];
    B[91][92] = [5, "Eccleston Building", "The_Eccleston_Building"];
    B[92][92] = [33, "Wasteland", "Wasteland_92%2C92"];
    B[93][92] = [6, "Carpark", "Carpark_92%2C93"];
    B[94][92] = [5, "Derham Building", "The_Derham_Building"];
    B[95][92] = [30, "Hogyson Place", "Hogyson_Place"];
    B[96][92] = [28, "Tite Way School", "Tite_Way_School"];
    B[97][92] = [11, "Club Yorke", "Club_Yorke"];
    B[98][92] = [30, "Bradley Walk", "Bradley_Walk"];
    B[99][92] = [4, "Brancker Bank", "Brancker_Bank"];
    B[90][93] = [22, "Newborough Museum", "The_Newborough_Museum"];
    B[91][93] = [
      3,
      "Finnerty Auto Repair",
      "Finnerty_Auto_Repair_%28Miltown%29",
    ];
    B[92][93] = [31, "Old Towers", "Old_Towers"];
    B[93][93] = [33, "Wasteland", "Wasteland_93%2C93"];
    B[94][93] = [
      27,
      "Ketley Lane Railway Station",
      "Ketley_Lane_Railway_Station",
    ];
    B[95][93] = [30, "Olive Walk", "Olive_Walk"];
    B[96][93] = [18, "Quarles Library", "Quarles_Library"];
    B[97][93] = [
      15,
      "Callistus General Hospital",
      "Callistus_General_Hospital",
    ];
    B[98][93] = [18, "Porter Library", "Porter_Library_%28Miltown%29"];
    B[99][93] = [31, "Horsnell Towers", "Horsnell_Towers"];
    B[90][94] = [30, "Banbury Street", "Banbury_Street"];
    B[91][94] = [11, "Club Otero", "Club_Otero"];
    B[92][94] = [5, "Gough Building", "The_Gough_Building"];
    B[93][94] = [
      25,
      "Wadham Square Police Dept",
      "Wadham_Square_Police_Department",
    ];
    B[94][94] = [2, "Heward Arms", "The_Heward_Arms"];
    B[95][94] = [12, "Factory", "Factory_94%2C95"];
    B[96][94] = [18, "Hatwell Library", "Hatwell_Library"];
    B[97][94] = [30, "Atyeo Crescent", "Atyeo_Crescent"];
    B[98][94] = [30, "Whittaker Boulevard", "Whittaker_Boulevard"];
    B[99][94] = [30, "Maguire Plaza", "Maguire_Plaza"];
    B[90][95] = [30, "Salde Road", "Salde_Road"];
    B[91][95] = [33, "Wasteland", "Wasteland_95%2C91"];
    B[92][95] = [16, "Hodson Motel", "The_Hodson_Motel"];
    B[93][95] = [4, "Shuffery Bank", "Shuffery_Bank"];
    B[94][95] = [30, "Tickle Crescent", "Tickle_Crescent"];
    B[95][95] = [23, "Fliney Building", "The_Fliney_Building"];
    B[96][95] = [30, "Whitefield Way", "Whitefield_Way"];
    B[97][95] = [30, "Dollery Lane", "Dollery_Lane"];
    B[98][95] = [32, "Warehouse", "Warehouse_95%2C98"];
    B[99][95] = [17, "Junkyard", "Junkyard_95%2C99"];
    B[90][96] = [21, "Loftus Monument", "The_Loftus_Monument"];
    B[91][96] = [
      27,
      "Cowdrey Grove Railway Station",
      "Cowdrey_Grove_Railway_Station",
    ];
    B[92][96] = [22, "Perriam Museum", "The_Perriam_Museum_%28Miltown%29"];
    B[93][96] = [4, "Berrow Bank", "Berrow_Bank"];
    B[94][96] = [30, "Byers Avenue", "Byers_Avenue"];
    B[95][96] = [21, "Balle Monument", "The_Balle_Monument"];
    B[96][96] = [
      15,
      "Josephine General Hospital",
      "Josephine_General_Hospital_%28Miltown%29",
    ];
    B[97][96] = [6, "Carpark", "Carpark_96%2C97"];
    B[98][96] = [30, "Bloom Avenue", "Bloom_Avenue"];
    B[99][96] = [28, "Pickering Alley School", "Pickering_Alley_School"];
    B[90][97] = [30, "Mussabini Place", "Mussabini_Place"];
    B[91][97] = [23, "McCullock Building", "The_McCullock_Building"];
    B[92][97] = [31, "Batts Towers", "Batts_Towers"];
    B[93][97] = [30, "Robinson Crescent", "Robinson_Crescent"];
    B[94][97] = [30, "Randle Boulevard", "Randle_Boulevard"];
    B[95][97] = [6, "Carpark", "Carpark_97%2C95"];
    B[96][97] = [22, "Bodd Museum", "The_Bodd_Museum"];
    B[97][97] = [16, "Barns Motel", "The_Barns_Motel"];
    B[98][97] = [30, "Ferriss Row", "Ferriss_Row"];
    B[99][97] = [4, "Strutt Bank", "Strutt_Bank"];
    B[90][98] = [30, "Travers Walk", "Travers_Walk"];
    B[91][98] = [24, "Chiles Park", "Chiles_Park"];
    B[92][98] = [30, "Weir Place", "Weir_Place"];
    B[93][98] = [3, "Stockwell Auto Repair", "Stockwell_Auto_Repair"];
    B[94][98] = [5, "Baynes Building", "The_Baynes_Building"];
    B[95][98] = [30, "Richardson Walk", "Richardson_Walk"];
    B[96][98] = [17, "Junkyard", "Junkyard_98%2C96"];
    B[97][98] = [2, "Weymouth Arms", "The_Weymouth_Arms"];
    B[98][98] = [30, "Dawson Way", "Dawson_Way"];
    B[99][98] = [30, "Perram Square", "Perram_Square"];
    B[90][99] = [6, "Carpark", "Carpark_99%2C90"];
    B[91][99] = [2, "Sigel Arms", "The_Sigel_Arms"];
    B[92][99] = [30, "Glode Walk", "Glode_Walk"];
    B[93][99] = [5, "Gill Building", "The_Gill_Building_%28Miltown%29"];
    B[94][99] = [4, "Birmingham Bank", "Birmingham_Bank"];
    B[95][99] = [10, "Currington Cinema", "Currington_Cinema"];
    B[96][99] = [30, "Woodborne Boulevard", "Woodborne_Boulevard"];
    B[97][99] = [30, "Cottell Drive", "Cottell_Drive"];
    B[98][99] = [4, "McCullack Bank", "McCullack_Bank"];
    B[99][99] = [30, "Nickells Grove", "Nickells_Grove"];

    return B;
  }

  // ------------------------------------------------
  // ALL GLOBALS
  // ------------------------------------------------

  const B = generateMaltonGrid();

  let playerSX = null; // suburb X
  let playerSY = null; // suburb Y
  let playerGX = null; // global X
  let playerGY = null; // global Y

  let cityMap, suburbMap, miniMap;

  let selectedSuburb = null;
  let playerSuburb = "";
  let currentViewSuburb = "";
  // ------------------------------------------------
  // ALT MARKERS STORAGE (FINAL VERSION)
  // ------------------------------------------------

  const MAX_AGE = 7 * 24 * 60 * 60 * 1000; // 7 days
  const MAX_ALTS = 10;

  function getProfileLink() {
    return document.querySelector('.gt a[href*="/classic/profile"]');
  }

  function getCharacterId() {
    const link = getProfileLink();
    if (!link) return null;

    const match = link.href.match(/profile\/([a-f0-9-]+)/);
    return match ? match[1] : null;
  }

  function getCharacterName() {
    const link = getProfileLink();
    if (!link) return "Unknown";
    return link.textContent.trim();
  }

  function getStoredCharacters() {
    try {
      return JSON.parse(localStorage.getItem(CHARACTERS_KEY) || "{}");
    } catch {
      return {};
    }
  }

  function saveStoredCharacters(chars) {
    localStorage.setItem(CHARACTERS_KEY, JSON.stringify(chars));
  }

  function cleanupOldCharacters(chars) {
    const now = Date.now();
    for (const id in chars) {
      if (!chars[id].time || now - chars[id].time > MAX_AGE) {
        delete chars[id];
      }
    }
  }

  function enforceMaxAlts(chars) {
    const ids = Object.keys(chars);
    if (ids.length <= MAX_ALTS) return;

    ids
      .sort((a, b) => chars[a].time - chars[b].time)
      .slice(0, ids.length - MAX_ALTS)
      .forEach((id) => delete chars[id]);
  }

  function saveCurrentCharacterPosition() {
    const id = getCharacterId();
    const name = getCharacterName();

    if (!id) {
        console.warn("❌ Could not determine character ID");
        return;
    }

    if (playerSX === null || playerSY === null) return;

    // Always get the current global coords; do not reuse old ones
    if (playerGX === null || playerGY === null) {
        console.warn("⚠️ Player global coordinates are not set, skipping save");
        return;
    }

    let chars = getStoredCharacters();

    cleanupOldCharacters(chars);

    // Always save current position, even if it matches the old one
    chars[id] = {
        name,
        sx: playerSX,
        sy: playerSY,
        gx: playerGX,
        gy: playerGY,
        time: Date.now(),
    };

    enforceMaxAlts(chars);
    saveStoredCharacters(chars);

    console.log("✅ Saved:", name, `(${playerGX}, ${playerGY})`);
  }

  function drawAltMarkers() {
    // clear existing alt highlights
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const cell = cityMap.cells[y][x];
        cell.classList.remove("map-alt-highlight");
        cell.title = "";
      }
    }

    const chars = getStoredCharacters();
    const currentId = getCharacterId();

    for (const id in chars) {
      const posAlt = chars[id];
      if (posAlt.sx === undefined || posAlt.sy === undefined) continue;

      const altCell = cityMap.cells[posAlt.sy]?.[posAlt.sx];
      if (!altCell) continue;

      altCell.classList.add("map-alt-highlight");
      altCell.title = posAlt.name || "Alt";
    }
  }
  // ------------------------------------------------
  // CREATE MAP WINDOW (Collapsible)
  // ------------------------------------------------

  function createMainContainer() {
    let collapsed = false;

    const container = document.createElement("div");
    container.style.cssText =
      "position:fixed;bottom:10px;right:10px;background:#556655;border-top:3px solid #778877;border-left:3px solid #778877;border-right:3px solid #334433;border-bottom:3px solid #334433;padding:6px;display:none;flex-direction:column;gap:6px;z-index:9999;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;line-height:1.2;box-shadow:0 8px 20px rgba(0,0,0,0.7),0 0 12px rgba(120,180,120,0.25);box-sizing:border-box;";

    // top bar for controls
    const topBar = document.createElement("div");
    topBar.style.cssText =
      "display:flex; justify-content:flex-end; align-items:center; gap:8px; margin-bottom:4px; padding-bottom:4px; border-bottom:1px solid #445544;";

    // checkbox container
    const controls = document.createElement("div");
    controls.style.cssText =
      "display:flex; gap:6px; color:#BBCCBB; font-size:10px;";

    // main collapse button
    const mainToggleBtn = document.createElement("div");
    mainToggleBtn.textContent = "[-]";
    mainToggleBtn.style.cssText =
      "cursor:pointer;color:#BBCCBB;font-weight:bold;margin-left:5px;";

    topBar.appendChild(controls);
    topBar.appendChild(mainToggleBtn);
    container.appendChild(topBar);

    function setCollapsed(value) {
      collapsed = value;
      container.style.display = "flex";
      mapHolder.style.display = collapsed ? "none" : "flex";
      controls.style.display = collapsed ? "none" : "flex"; // Hide checkboxes when main is collapsed
      mainToggleBtn.textContent = collapsed ? "[+]" : "[-]";
      localStorage.setItem(COLLAPSED_KEY, collapsed);
    }

    mainToggleBtn.onclick = () => setCollapsed(!collapsed);

    const mapHolder = document.createElement("div");
    mapHolder.style.cssText = "display:flex;gap:10px;align-items:flex-start";
    container.appendChild(mapHolder);
    document.body.appendChild(container);

    // create maps
    cityMap = makeMap("City Map", 10, "city");
    suburbMap = makeMap("Suburb Map", 10, "suburb");
    miniMap = makeMap("Local", LOCAL_MAP_SIZE, "local");

    // override initial labels
    miniMap.label.textContent = `Local (${playerSuburb})`;
    cityMap.coords.textContent = `Selected: ${selectedSuburb || playerSuburb}`;

    // helper to create toggle checkboxes
    const createMapToggle = (getMap, key, labelText) => {
      const label = document.createElement("label");
      label.style.cssText =
        "display:flex; align-items:center; gap:2px; cursor:pointer;";

      const cb = document.createElement("input");
      cb.type = "checkbox";
      cb.style.margin = "0";

      const MAP_VISIBLE_KEY = `tacticalmap:map_visible:${key}`;

      let isVisible = (localStorage.getItem(MAP_VISIBLE_KEY) || "true") === "true";
      cb.checked = isVisible;
      getMap().wrap.style.display = isVisible ? "flex" : "none";

      cb.onchange = () => {
        getMap().wrap.style.display = cb.checked ? "flex" : "none";
        localStorage.setItem(MAP_VISIBLE_KEY, cb.checked);
      };

      label.appendChild(cb);
      label.appendChild(document.createTextNode(labelText));
      controls.appendChild(label);
    };

    // add checkboxes to upper right
    createMapToggle(() => cityMap, "city", "City");
    createMapToggle(() => suburbMap, "suburb", "Sub");
    createMapToggle(() => miniMap, "local", "Loc");

    // local map radius input
    const MAX_RADIUS = 18;

    const radiusInput = document.createElement("input");
    radiusInput.type = "number";
    radiusInput.min = "1";
    radiusInput.max = `${MAX_RADIUS}`;
    radiusInput.step = "1";
    radiusInput.value = LOCAL_MAP_RADIUS;
    radiusInput.style.cssText =
      "width:32px; background:#223322; color:#BBCCBB; border:1px solid #445544; font-size:10px; margin-left:2px; height: 14px; padding: 0 2px;";
    radiusInput.title = "Local Map Radius (size = 2R + 1)";

    radiusInput.onchange = () => {
      let newRadius = parseInt(radiusInput.value);
      if (isNaN(newRadius)) return;
      if (newRadius < 1) newRadius = 1;
      if (newRadius > MAX_RADIUS) newRadius = MAX_RADIUS;
      radiusInput.value = newRadius;

      if (newRadius !== LOCAL_MAP_RADIUS) {
        LOCAL_MAP_RADIUS = newRadius;
        LOCAL_MAP_SIZE = LOCAL_MAP_RADIUS * 2 + 1;
        localStorage.setItem(LOCAL_MAP_RADIUS_KEY, LOCAL_MAP_RADIUS);
        // recreate minimap
        const oldWrap = miniMap.wrap;
        const currentDisplay = oldWrap.style.display;
        miniMap = makeMap("Local", LOCAL_MAP_SIZE, "local");
        miniMap.wrap.style.display = currentDisplay;
        oldWrap.parentNode.replaceChild(miniMap.wrap, oldWrap);

        // re-run initial setup for new map
        miniMap.label.textContent = `Local (${playerSuburb})`;
        setupLocalInteractions();
        updateMaps();
      }
    };

    const radiusLabel = document.createElement("label");
    radiusLabel.style.cssText =
      "display:flex; align-items:center; gap:2px; margin-left:6px; font-size:10px; color:#BBCCBB;";
    radiusLabel.appendChild(document.createTextNode("Radius:"));
    radiusLabel.appendChild(radiusInput);
    controls.appendChild(radiusLabel);

    // Clear alts button
    const clearBtn = document.createElement("div");

    clearBtn.textContent = "[Clear Alts]";

    clearBtn.style.cssText = `
      cursor:pointer;
      color:#FF9999;
      font-size:10px;
      margin-left:6px;
`;

    clearBtn.onclick = () => {
      if (!confirm("Clear all stored alt positions?")) return;

      localStorage.removeItem(CHARACTERS_KEY);
      console.log("🧹 Cleared alt storage");

      updateMaps();
    };

    controls.appendChild(clearBtn);
    mapHolder.appendChild(cityMap.wrap);
    mapHolder.appendChild(suburbMap.wrap);
    mapHolder.appendChild(miniMap.wrap);

    setCollapsed(localStorage.getItem(COLLAPSED_KEY) === "true");
  }

  // ------------------------------------------------
  // MAP BUILDER
  // ------------------------------------------------

  function makeMap(title, size = 10, key) {
    const wrap = document.createElement("div");
    wrap.style.width = size * 22 + "px";
    wrap.style.display = "flex";
    wrap.style.flexDirection = "column";

    const header = document.createElement("div");
    header.style.cssText =
      "display:flex; justify-content:center; align-items:center; gap:4px;";

    const label = document.createElement("div");
    label.textContent = title;
    label.style.cssText =
      "color:#BBCCBB; margin-bottom:2px; text-align:center; font-weight:bold;";

    header.appendChild(label);

    const coords = document.createElement("div");
    coords.textContent = "\u00A0";
    coords.style.cssText =
      "color:#CCDDAA; font-size:10px; text-align:center; margin-bottom:4px";

    const table = document.createElement("table");
    table.style.cssText =
      "border-collapse:collapse; table-layout:fixed; width:" +
      size * 22 +
      "px;";

    const cells = [];
    for (let y = 0; y < size; y++) {
      const tr = table.insertRow();
      cells[y] = [];
      for (let x = 0; x < size; x++) {
        const td = tr.insertCell();
        td.style.cssText =
          "width:22px;height:22px;border:1px solid #000;box-sizing:border-box;background:#071A07;";
        cells[y][x] = td;
      }
    }

    wrap.appendChild(header);
    wrap.appendChild(coords);
    wrap.appendChild(table);

    return { wrap, label, coords, table, title, cells };
  }

  function miniMapCenter(px, py) {
    const size = miniMap.cells.length;
    const offset = Math.floor(size / 2);

    // show no more than 1 block of OOB
    const minCenter = offset - 1;
    const maxCenter = 99 - (offset - 1);

    const centerX = Math.max(minCenter, Math.min(maxCenter, px));
    const centerY = Math.max(minCenter, Math.min(maxCenter, py));

    return [centerX, centerY];
  }

  function createTileSymbol(symbol) {
    const container = document.createElement('div');
    container.classList.add('tile-symbol');
    container.textContent = symbol;
    return container;
  }

  // ------------------------------------------------
  // DRAW MINIMAP AROUND PLAYER
  // ------------------------------------------------
  function drawMiniMap(px, py) {
    if (px === null || py === null) return;

    const size = miniMap.cells.length;
    const offset = Math.floor(size / 2);

    const [centerX, centerY] = miniMapCenter(px, py);

    for (let y = 0; y < size; y++) {
      for (let x = 0; x < size; x++) {
        const targetX = centerX - offset + x;
        const targetY = centerY - offset + y;
        const td = miniMap.cells[y][x];

        // wipe cell
        td.style.background = "#111";
        td.style.border = "1px solid #222";
        td.dataset.name = "";
        td.dataset.gps = `(${targetX}, ${targetY})`;

        // check if coordinate exists in global data
        const entry = B[targetY]?.[targetX];
        if (entry) {
          const type = BUILDING_TYPES[entry[0]];
          if (type && type.visible) {
            td.style.background = type.color;
            if (type.border) td.style.border = type.border;
            if (type.icon) {
              td.replaceChildren(createTileSymbol(type.icon));
            }
          }

          td.dataset.name = entry[1];
          td.title = type?.name ?? "";
        }
        // bounds check
        if (targetX < 0 || targetX > 99 || targetY < 0 || targetY > 99) {
          td.style.background = "#000";
        }
      }
    }
    miniMap.coords.textContent = `Center: (${px}, ${py})`;
  }

  // ------------------------------------------------
  // LOCAL MAP INTERACTION
  // ------------------------------------------------

  function setupLocalInteractions() {
    const localCells = miniMap.cells;

    for (let y = 0; y < localCells.length; y++) {
      for (let x = 0; x < localCells[y].length; x++) {
        const td = localCells[y][x];

        td.addEventListener("mouseenter", () => {
          if (td.dataset.gps) {
            const coordsMatch = td.dataset.gps.match(/\d+/g);
            const tx = parseInt(coordsMatch[0]);
            const ty = parseInt(coordsMatch[1]);
            const offset = getRelativeOffset(tx, ty);
            miniMap.coords.textContent = "GPS: " + td.dataset.gps + offset;
          }

          if (td.dataset.name) {
            const isPlayer = td.textContent === MAIN_PLAYER_SYM;
            miniMap.label.textContent = isPlayer
              ? td.dataset.name + " (You)"
              : td.dataset.name;
          } else {
            miniMap.label.textContent = "Street"; // hovering empty/street tile
          }
        });
      }
    }

    // reset to "local" and player gps when mouse leaves the minimap
    miniMap.wrap.addEventListener("mouseleave", () => {
      miniMap.label.textContent = `Local (${playerSuburb})`;
      miniMap.coords.textContent = `Center: (${playerGX}, ${playerGY})`;
    });
  }

  // ------------------------------------------------
  // CITY GRID
  // ------------------------------------------------

  function getQuadrantColor(row, col) {
    if (row >= 3 && row <= 6 && col >= 3 && col <= 6) return "#A1C4F4";

    if (row < 5 && col < 5) return "#F6C7A1";
    if (row < 5 && col >= 5) return "#F4E7A1";
    if (row >= 5 && col < 5) return "#E7A6A6";

    return "#A9D3B0";
  }

  // ------------------------------------------------
  // CITY MAP SELECTED SUBURB + LINKS (Second Line)
  // ------------------------------------------------

  // Helper to generate Wiki/DSS links for a suburb
  function createCitySuburbLinks(suburbName) {
    const suburbSafe = suburbName.split("[")[0].trim().replace(/ /g, "_");

    const container = document.createElement("span");
    container.style.marginLeft = "6px"; // spacing from "Selected:"

    // Wiki link
    const wikiLink = document.createElement("a");
    wikiLink.textContent = "wiki";
    wikiLink.href =
      "http://wiki.urbandead.com/index.php/" + suburbSafe + "#Suburb_Map";
    wikiLink.style.color = "#faa";
    wikiLink.target = "_blank";
    container.appendChild(wikiLink);

    container.appendChild(document.createTextNode(", "));

    // DSS link
    const dssLink = document.createElement("a");
    dssLink.textContent = "DSS";
    dssLink.href =
      "https://web.archive.org/web/20160613225203/http://map.dssrzs.org/" +
      suburbSafe;
    dssLink.style.color = "#faa";
    dssLink.target = "_blank";
    container.appendChild(dssLink);

    return container;
  }

  // Update cityMap.coords to include links next to selected suburb
  function updateCityMapCoords(suburb) {
    if (!cityMap || !cityMap.coords) return;

    cityMap.coords.textContent = `Selected: ${suburb || playerSuburb}`;

    // Remove previous links
    const oldLinks = cityMap.coords.querySelectorAll("span");
    oldLinks.forEach((e) => e.remove());

    // Append new links
    cityMap.coords.appendChild(createCitySuburbLinks(suburb || playerSuburb));
  }

  // Use this inside city interactions & click events:
  function setupCityInteractions() {
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const td = cityMap.cells[y][x];

        td.style.cssText = `
        width:22px;
        height:22px;
        border:1px solid #000;
        box-sizing:border-box;
        background:${getQuadrantColor(y, x)};
        transition:box-shadow .3s ease,border .2s ease;
        cursor:pointer;
      `;

        td.addEventListener("mouseenter", () => {
          const isPlayerSuburb = y === playerSY && x === playerSX;
          const displayName = isPlayerSuburb
            ? suburbNames[y][x] + " (You)"
            : suburbNames[y][x];
          cityMap.label.textContent = displayName;
        });

        td.addEventListener("mouseleave", () => {
          cityMap.label.textContent = cityMap.title;
          cityMap.coords.textContent = `Selected: ${selectedSuburb || playerSuburb}`;
        });

        td.addEventListener("click", () => {
          selectedSuburb = suburbNames[y][x];
          drawSuburbMap(x, y);
          updateCityMapCoords(selectedSuburb);
          updateMaps();
        });
      }
    }

    // Initial links for current suburb
    updateCityMapCoords(playerSuburb);
  }
  // ------------------------------------------------
  // SUBURB GRID
  // ------------------------------------------------

  function setupSuburbInteractions() {
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const td = suburbMap.cells[y][x];

        td.addEventListener("mouseenter", () => {
          if (td.dataset.gps) {
            const coordsMatch = td.dataset.gps.match(/\d+/g);
            const gx = parseInt(coordsMatch[0]);
            const gy = parseInt(coordsMatch[1]);

            const isPlayer = gx === playerGX && gy === playerGY;

            // update label (building name)
            if (td.dataset.name) {
              suburbMap.label.textContent = isPlayer
                ? td.dataset.name + " (You)"
                : td.dataset.name;
            } else {
              suburbMap.label.textContent = "Street";
            }

            // update coords + offset
            const offset = getRelativeOffset(gx, gy);
            suburbMap.coords.textContent = "GPS: " + td.dataset.gps + offset;
          }
        });
      }
    }

    suburbMap.wrap.addEventListener("mouseleave", () => {
      if (currentViewSuburb === playerSuburb) {
        suburbMap.label.textContent = playerSuburb + " (You)";
        suburbMap.coords.textContent = `GPS: (${playerGX}, ${playerGY})`;
      } else {
        suburbMap.label.textContent = currentViewSuburb;
        suburbMap.coords.textContent = "\u00A0";
      }
    });
  }

  // ------------------------------------------------
  // DRAW SUBURB MAP
  // ------------------------------------------------

  function drawSuburbMap(sx, sy) {
    if (sx === null || sy === null) return;

    const suburbName = suburbNames[sy][sx];
    currentViewSuburb = suburbName;

    suburbMap.coords.textContent = "\u00A0";
    suburbMap.label.textContent =
      suburbName === playerSuburb ? suburbName + " (You)" : suburbName;

    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const gx = sx * 10 + x;
        const gy = sy * 10 + y;
        const td = suburbMap.cells[y][x];

        td.textContent = "";
        td.style.background = "#071A07";
        td.style.border = "1px solid #000000";
        td.dataset.name = "";
        td.dataset.gps = `(${gx}, ${gy})`;
        td.title = "";

        const entry = B[gy]?.[gx];
        if (entry) {
          const type = BUILDING_TYPES[entry[0]];
          if (type && type.visible) {
            td.style.background = type.color;
            if (type.border) td.style.border = type.border;
            if (type.icon) {
              td.replaceChildren(createTileSymbol(type.icon));
            }
          }

          td.dataset.name = entry[1];
          td.title = type?.name ?? "";
        }
      }
    }

    drawPlayerDots();
    drawAltMarkers();
  }

  // ------------------------------------------------
  // FIND EXACT PLAYER GPS LOCATION
  // ------------------------------------------------

  function globalPlayerCoords() {
    // if GPS exists, directly parse coordinates and return
    const element = document.querySelector('input[value*="GPS unit"]');
    if (element) {
      const matches = element.value.match(/\d+/g);
      if (matches && matches.length >= 2) {
        return [Number(matches[0]), Number(matches[1])];
      } else {
        console.error("Found GPS but no coordinates?");
      }
    }

    // otherwise, find an exact match of neighboring tiles

    function normalizeName(n) {
      return n
        .toLowerCase()
        .replace(/\b(the|a|an)\b/g, "")
        .replace(/\s+/g, " ")
        .replace(/ \[nt\]$/, "")
        .trim();
    }

    let inputs = document.querySelectorAll('table.c input[type="submit"]');
    const neighborSig = Array.from(inputs)
      .map((input) => normalizeName(input.value))
      .join("__");

    // treat every tile in suburb as the current "center"
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const gx = playerSX * 10 + x;
        const gy = playerSY * 10 + y;

        // retrieve all neighboring tiles
        const neighbors = [];
        for (let dy = -1; dy <= 1; dy++) {
          for (let dx = -1; dx <= 1; dx++) {
            const nx = gx + dx;
            const ny = gy + dy;
            const tile = B[ny]?.[nx];
            if (tile !== undefined) {
              neighbors.push(tile[1]);
            }
          }
        }

        const newNeighborSig = Array.from(neighbors)
          .map(normalizeName)
          .join("__");
        if (newNeighborSig == neighborSig) {
          return [gx, gy];
        }
      }
    }

    console.warn("Failed to determine global player coordinates");
    return null;
  }
  // ------------------------------------------------
  // UPDATE MAPS
  // ------------------------------------------------

  function suburbCoordsByName(suburb) {
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        if (suburbNames[y][x] === suburb) {
          return [x, y];
        }
      }
    }
    console.error(`Couldn't find suburb coordinates by name: ${suburb}`);
    return null;
  }

  function updateGlobals() {
    // load cached player position as a default (if available)
    const char = getStoredCharacters()[getCharacterId()];
    if (char) {
      [playerSX, playerSY] = [Math.floor(char.gx / 10), Math.floor(char.gy / 10)];
      [playerGX, playerGY] = [char.gx, char.gy];
    }

    const suburbElem = document.querySelector(".sb");
    if (!suburbElem) {
      console.error("Couldn't find suburb element");
      return;
    }

    playerSuburb = suburbElem.textContent.trim();
    [playerSX, playerSY] = suburbCoordsByName(playerSuburb) ?? [null, null];
    [playerGX, playerGY] = globalPlayerCoords() ?? [playerGX, playerGY];
  }

  function updateMaps() {
    let viewX = playerSX;
    let viewY = playerSY;

    if (selectedSuburb) {
      const coords = suburbCoordsByName(selectedSuburb);
      if (coords) [viewX, viewY] = coords;
    }

    // highlight city suburb
    for (let y = 0; y < 10; y++) {
      for (let x = 0; x < 10; x++) {
        const cell = cityMap.cells[y][x];

        cell.classList.remove(
          "map-suburb-selected",
          "map-current-player-suburb",
        );
        cell.style.background = getQuadrantColor(y, x);

        if (y === playerSY && x === playerSX) {
          cell.classList.add("map-current-player-suburb");
        }

        if (y === viewY && x === viewX) {
          cell.classList.add("map-suburb-selected");
        }
      }
    }

    drawSuburbMap(viewX, viewY);
    drawAltMarkers();

    // set initial GPS coordinates in suburb map heading
    if (currentViewSuburb === playerSuburb) {
      suburbMap.coords.textContent = `GPS: (${playerGX}, ${playerGY})`;
    }

    drawPlayerDots();
    drawMiniMap(playerGX, playerGY);
  }

  // ------------------------------------------------
  // DRAW PLAYER DOT
  // ------------------------------------------------

  function drawPlayerDots() {
    const chars = getStoredCharacters();
    const currentId = getCharacterId();

    const [viewCenterX, viewCenterY] = miniMapCenter(playerGX, playerGY);
    const localSize = miniMap.cells.length;
    const localOffset = Math.floor(localSize / 2);

    for (const id in chars) {
      const pos = chars[id];
      if (pos.sx === undefined || pos.sy === undefined) continue;

      // Draw on suburb map
      const charSuburbName = suburbNames[pos.sy][pos.sx];
      if (currentViewSuburb === charSuburbName) {
        const cell = suburbMap.cells[pos.gy % 10]?.[pos.gx % 10];
        if (!cell) continue;

        const isCurrent = currentId && id === currentId;
        cell.title = chars[id].name;
        cell.textContent = isCurrent ? MAIN_PLAYER_SYM : ALT_PLAYER_SYM;
        cell.classList.add("map-player-dot");
      }

      // Draw on local map
      const lx = pos.gx - viewCenterX + localOffset;
      const ly = pos.gy - viewCenterY + localOffset;
      if (lx >= 0 && lx < localSize && ly >= 0 && ly < localSize) {
        const cell = miniMap.cells[ly]?.[lx];
        if (!cell) continue;

        const isCurrent = currentId && id === currentId;
        cell.title = chars[id].name;
        cell.textContent = isCurrent ? MAIN_PLAYER_SYM : ALT_PLAYER_SYM;
        cell.classList.add("map-player-dot");
      }
    }
    // set initial GPS coordinates
    suburbMap.coords.textContent = `GPS: (${playerGX}, ${playerGY})`;
  }

  function getRelativeOffset(tx, ty) {
    if (playerGX === null || playerGY === null) return "";

    const dx = tx - playerGX;
    const dy = ty - playerGY;

    if (dx === 0 && dy === 0) return " (Here)";

    const absX = Math.abs(dx);
    const absY = Math.abs(dy);

    const xDir = dx > 0 ? "E" : "W";
    const yDir = dy > 0 ? "S" : "N";

    let result = [];

    if (dx !== 0 && dy !== 0) {
      const diagDist = Math.min(absX, absY);
      result.push(`${diagDist}${yDir}${xDir}`);

      if (absX > absY) {
        result.push(`${absX - absY}${xDir}`);
      } else if (absY > absX) {
        result.push(`${absY - absX}${yDir}`);
      }
    } else {
      if (dx !== 0) result.push(`${absX}${xDir}`);
      if (dy !== 0) result.push(`${absY}${yDir}`);
    }

    return ` [${result.join(", ")}]`;
  }

  function addStyles() {
    // inject syles for player dot
    const style = document.createElement("style");
    style.textContent = `
      .map-player-dot {
        color: #FFFFFF;
        font-size: 14px;
        line-height: 1;
        cursor: default;
        width: 22px;
        height: 22px;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0,0,0,1);
        box-sizing: border-box;
      }

      .map-alt-highlight {
        outline: 2px dashed #ffffff !important;
        outline-offset: -1px !important;
      }

      .map-suburb-selected {
        z-index: 20 !important;
        position: relative !important;
        box-shadow: 0 0 4px 1px rgba(0, 0, 0, 1), 0 0 8px 2px rgba(0, 0, 0, 0.9), 0 0 12px 4px rgba(5,255, 255, 0.8), 0 0 18px 6px rgba(255, 255, 255, 0.7), 0 0 24px 8px rgba(255, 255, 255, 0.6), inset 0 0 6px 2px rgba(89, 255, 27, 0.8), inset 0 0 10px 4px rgba(89, 255, 27, 0.5);
      }

      .map-current-player-suburb {
        border: 2px solid #000 !important;
      }

      .tile-symbol {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        line-height: 1;
        font-size: 14px;
        user-select: none;
        -webkit-user-select: none;
        cursor: default;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
    `;
    document.head.appendChild(style);
  }

  // ------------------------------------------------
  // START SCRIPT
  // ------------------------------------------------

  window.addEventListener("load", () => {
    addStyles();
    updateGlobals();

    // SAVE AFTER globals are ready
    saveCurrentCharacterPosition();

    createMainContainer();

    setupCityInteractions();
    setupSuburbInteractions();
    setupLocalInteractions();

    updateMaps();
  });
})();