From 81b167535629194da490d1a6203e5d88fefdd594 Mon Sep 17 00:00:00 2001 From: Mizzajl Date: Thu, 10 Oct 2024 12:10:08 +0200 Subject: [PATCH] low ram scripts in "lowram" folder, start with run lowram/lowrun.js and the target server as first argument --- Mizzajl/home/bestTarget.txt | 2 +- Mizzajl/home/{wip/hgw.js => lowram/Lowhgw.js} | 46 ++++++++++----- Mizzajl/home/lowram/Lowprep.js | 59 +++++++++++++++++++ Mizzajl/home/lowram/Lowrun.js | 32 ++++++++++ Mizzajl/home/serverList.txt | 2 +- 5 files changed, 124 insertions(+), 17 deletions(-) rename Mizzajl/home/{wip/hgw.js => lowram/Lowhgw.js} (64%) create mode 100644 Mizzajl/home/lowram/Lowprep.js create mode 100644 Mizzajl/home/lowram/Lowrun.js diff --git a/Mizzajl/home/bestTarget.txt b/Mizzajl/home/bestTarget.txt index 39e3757..dbee3c4 100644 --- a/Mizzajl/home/bestTarget.txt +++ b/Mizzajl/home/bestTarget.txt @@ -1 +1 @@ -{"serverName":"omega-net","maxRam":32,"maxMoney":62276075,"minSec":9,"minPorts":2,"minHackLvl":180,"rootAccess":true,"openPorts":0,"serverOrgs":"Omega Software","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-105224.cct","contract-263536.cct","settings.txt","the-new-god.lit"]} \ No newline at end of file +{"serverName":"omega-net","maxRam":32,"maxMoney":62276075,"minSec":9,"minPorts":2,"minHackLvl":180,"rootAccess":true,"openPorts":1,"serverOrgs":"Omega Software","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-105224.cct","contract-263536.cct","settings.txt","the-new-god.lit"]} \ No newline at end of file diff --git a/Mizzajl/home/wip/hgw.js b/Mizzajl/home/lowram/Lowhgw.js similarity index 64% rename from Mizzajl/home/wip/hgw.js rename to Mizzajl/home/lowram/Lowhgw.js index 56830a0..322d352 100644 --- a/Mizzajl/home/wip/hgw.js +++ b/Mizzajl/home/lowram/Lowhgw.js @@ -9,6 +9,12 @@ export async function main(ns) { const sWeakenScript = "RMweaken.js"; const sServerListFile = "serverList.txt"; + // Lowram settings + const sBatchScript = "lowram/Lowhgw.js"; + const sPrepScript = "lowram/Lowprep.js"; + const sRunScript = "lowram/Lowrun.js"; + + const nHackScriptRAM = 1.75; const nGrowScriptRAM = 1.7; const nWeakenScriptRAM = 1.75; @@ -39,37 +45,47 @@ export async function main(ns) { let nTotalHackRAM; let nTotalGrowRAM; let nTotalWeakenRAM; + let nTempHackThreads; + let nTempGrowThreads; + let nTempGrowThreadsINT; + let nTempWeakenThreads; + let nTempWeakenThreadsINT; for (let i = 1; nUsedRAM < nMaxRAM; i++) { - nHackThreads = i; - ns.print("nHackThreads = " + nHackThreads); + nTempHackThreads = i; + ns.print("nTempHackThreads = " + nTempHackThreads); - nGrowThreads = Math.max(2, getGrowThreads(ns, sTarget, nHackThreads)); - nGrowThreadsINT = Math.ceil(nGrowThreads); - ns.print("nGrowThreads = " + nGrowThreads); - ns.print("nGrowThreadsINT = " + nGrowThreadsINT); + nTempGrowThreads = Math.max(2, getGrowThreads(ns, sTarget, nTempHackThreads)); + nTempGrowThreadsINT = Math.ceil(nTempGrowThreads); + ns.print("nTempGrowThreads = " + nTempGrowThreads); + ns.print("nTempGrowThreadsINT = " + nTempGrowThreadsINT); //25 hacks or 12.5 grows - nWeakenThreads = Math.max(2, (nHackThreads / 25) + (nGrowThreadsINT / 12.5)); - nWeakenThreadsINT = Math.ceil(nWeakenThreads); - ns.print("nWeakenThreads = " + nWeakenThreads); - ns.print("nWeakenThreadsINT = " + nWeakenThreadsINT); + nTempWeakenThreads = Math.max(2, (nTempHackThreads / 25) + (nTempGrowThreadsINT / 12.5)); + nTempWeakenThreadsINT = Math.ceil(nTempWeakenThreads); + ns.print("nTempWeakenThreads = " + nTempWeakenThreads); + ns.print("nTempWeakenThreadsINT = " + nTempWeakenThreadsINT); - nTotalHackRAM = (nHackThreads * nHackScriptRAM); - nTotalGrowRAM = (nGrowThreadsINT * nGrowScriptRAM); - nTotalWeakenRAM = (nWeakenThreadsINT * nWeakenScriptRAM); + nTotalHackRAM = (nTempHackThreads * nHackScriptRAM); + nTotalGrowRAM = (nTempGrowThreadsINT * nGrowScriptRAM); + nTotalWeakenRAM = (nTempWeakenThreadsINT * nWeakenScriptRAM); ns.print("nTotalHackRAM = " + nTotalHackRAM); ns.print("nTotalGrowRAM = " + nTotalGrowRAM); ns.print("nTotalWeakenRAM = " + nTotalWeakenRAM); - nCheckRAM = nThisScriptRAM + (nHackThreads * nHackScriptRAM) + (nGrowThreadsINT * nGrowScriptRAM) + (nWeakenThreadsINT * nWeakenScriptRAM); + nCheckRAM = nThisScriptRAM + (nTempHackThreads * nHackScriptRAM) + (nTempGrowThreadsINT * nGrowScriptRAM) + (nTempWeakenThreadsINT * nWeakenScriptRAM); ns.print("nCheckRAM = " + nCheckRAM); - + if (nCheckRAM < nMaxRAM) { nUsedRAM = nCheckRAM; + nHackThreads = nTempHackThreads; + nGrowThreads = nTempGrowThreads; + nGrowThreadsINT = nTempGrowThreadsINT; + nWeakenThreads = nTempWeakenThreads; + nWeakenThreadsINT = nTempWeakenThreadsINT; } else { break; diff --git a/Mizzajl/home/lowram/Lowprep.js b/Mizzajl/home/lowram/Lowprep.js new file mode 100644 index 0000000..4a6e0c4 --- /dev/null +++ b/Mizzajl/home/lowram/Lowprep.js @@ -0,0 +1,59 @@ +/** @param {NS} ns */ +export async function main(ns) { + ns.tail(); + const sTarget = ns.args[0]; // target server + + // declare objects + const oHome = ns.getServer("home"); + //const oTarget = ns.getServer(sTarget); + + // Lowram settings + const sBatchScript = "lowram/Lowhgw.js"; + const sPrepScript = "lowram/Lowprep.js"; + const sRunScript = "lowram/Lowrun.js"; + + //declare variables + const sWeakenScript = "RMweaken.js"; + const nCores = oHome.cpuCores; + let nSecurity = ns.getServerSecurityLevel(sTarget); + const nMinSecurity = ns.getServerMinSecurityLevel(sTarget); + const nWeakenSTR = ns.weakenAnalyze(1, nCores); + let nThreads = Math.ceil((nSecurity - nMinSecurity) / nWeakenSTR); + ns.print("nThreads = " + nThreads); + + + ns.tail(ns.pid, oHome.hostname, sTarget); + //ns.resizeTail(815, 395); + //ns.moveTail(1925, 0); + + let nWeakenPID; + + if (nThreads > 0) { + const nDelay = ns.getWeakenTime(sTarget); + + ns.print("current security is: " + nSecurity); + ns.print("minimum security is: " + nMinSecurity); + ns.print("threads needed for weaken: " + nThreads); + ns.print(nThreads + " will reduce Security by " + ns.weakenAnalyze(nThreads, nCores)); + ns.print(nThreads + " of " + sWeakenScript + " requires " + (ns.getScriptRam(sWeakenScript, "home") * nThreads) + " GB of RAM"); + ns.print("weakening will take " + (nDelay / 1000 / 60) + " minutes"); + + if ((ns.getServerMaxRam(oHome.hostname) - ns.getServerUsedRam(oHome.hostname)) >= (ns.getScriptRam(sWeakenScript, "home") * nThreads)) { + nWeakenPID = ns.run(sWeakenScript, nThreads, sTarget); + ns.print("Waiting for PID = " + nWeakenPID); + await ns.nextPortWrite(nWeakenPID); + nSecurity = ns.getServerSecurityLevel(sTarget); + ns.print("Breach complete, security level is now at: " + nSecurity); + } + else { + nThreads = Math.floor(((ns.getServerMaxRam("home") - ns.getServerUsedRam("home")) / ns.getScriptRam(sWeakenScript))); + nWeakenPID = ns.run(sWeakenScript, nThreads, sTarget); + ns.print("Waiting for PID = " + nWeakenPID); + await ns.nextPortWrite(nWeakenPID); + nSecurity = ns.getServerSecurityLevel(sTarget); + ns.print("Breach in progress, security level is now at: " + nSecurity); + } + } + //back to Lowrun + ns.spawn(sRunScript, { threads: 1, spawnDelay: 0 }, sTarget); +} \ No newline at end of file diff --git a/Mizzajl/home/lowram/Lowrun.js b/Mizzajl/home/lowram/Lowrun.js new file mode 100644 index 0000000..e121046 --- /dev/null +++ b/Mizzajl/home/lowram/Lowrun.js @@ -0,0 +1,32 @@ +/** @param {NS} ns */ +export async function main(ns) { + ns.tail(); + const sTarget = ns.args[0]; // target server + + // Lowram settings + const sBatchScript = "lowram/Lowhgw.js"; + const sPrepScript = "lowram/Lowprep.js"; + const sRunScript = "lowram/Lowrun.js"; + + const nTargetMoney = ns.getServerMoneyAvailable(sTarget); + const nTargetMaxMoney = ns.getServerMaxMoney(sTarget); + const nTargetSecurity = ns.getServerSecurityLevel(sTarget); + const nTargetMinSecurity = ns.getServerMinSecurityLevel(sTarget); + + ns.print(sTarget + " Money = " + nTargetMoney.toLocaleString() + " / " + nTargetMaxMoney.toLocaleString()); + ns.print(sTarget + " Security = " + nTargetSecurity.toLocaleString() + " / " + nTargetMinSecurity.toLocaleString()); + + if ( nTargetSecurity > nTargetMinSecurity) { + ns.killall(); + ns.spawn(sPrepScript, { threads: 1, spawnDelay: 0 }, sTarget); + } + else if (nTargetMoney < nTargetMaxMoney){ + ns.print("need to prep MONEY, running "+sRunScript); + ns.killall(); + ns.spawn(sBatchScript, { threads: 1, spawnDelay: 0 }, sTarget); + } + else { + ns.killall(); + ns.spawn(sBatchScript, { threads: 1, spawnDelay: 0 }, sTarget); + } +} \ No newline at end of file diff --git a/Mizzajl/home/serverList.txt b/Mizzajl/home/serverList.txt index 8bdcbca..fc0badd 100644 --- a/Mizzajl/home/serverList.txt +++ b/Mizzajl/home/serverList.txt @@ -1 +1 @@ -{"home":{"serverName":"home","maxRam":256,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"Home PC","serverCores":1,"serverFiles":["AutoLink.exe","BruteSSH.exe","CrackAndRootAll.js","DeepscanV1.exe","DeepscanV2.exe","EveryServerRun.js","FTPCrack.exe","HTTPWorm.exe","Library.js","NUKE.exe","RMgrow.js","RMhack.js","RMweaken.js","Ramses/Backdoor.js","Ramses/ContractSolver.js","Ramses/ContractSolverRamses.js","Ramses/CorpControl.js","Ramses/CrackAndRootAll.js","Ramses/RamsesUtils.js","Ramses/S4controller.js","Ramses/S4logHelper.js","Ramses/S4tGrow.js","Ramses/S4tHack.js","Ramses/S4tWeaken.js","Ramses/S4utils.js","Ramses/Serverlist.js","Ramses/analyzeContract.js","Ramses/corp/Autosell.js","Ramses/corp/HireWorkers.js","Ramses/corp/SetupExport.js","Ramses/corp/Smart.js","Ramses/corp/UpgradeOffice.js","Ramses/killAllScript.js","Ramses/purchaseServers.js","ServerRouteList.txt","Serverlist.js","ShareHome.js","Start.js","Updatebesttarget.js","algorithm.js","ascii/detective.txt","ascii/detective2.txt","ascii/detective3.txt","ascii/hacker.txt","ascii/judge.txt","ascii/noir.txt","ascii/sonic.js","autoexec.js","b1t_flum3.exe","backdoor.js","backup/batch2.js","backup/bitnodeStart.js","backup/growrepeater.js","backup/maxGrow.js","backup/myLibrary.js","backup/serverlister.js","backup/upgrade.js","batch.js","bestTarget.txt","breach.js","contract.js","corporation-management-handbook.lit","csec-test.msg","factionboost.js","fl1ght.exe","gang/argFunctions.js","gang/auto-gang.js","gang/auto-gang2.js","gang/gangManager.js","hackers-starting-handbook.lit","hacknet/hacknetmanager.js","j0.msg","j1.msg","j2.msg","killAllScripts.js","nitesec-test.msg","notes.txt","purchaseServers.js","relaySMTP.exe","serverList.txt","settings.txt","sharePserv.js","singularity/RMroutelist.js","singularity/manualalgo.js","wip/Minimum_Path_Sum_in_a_Triangle.js","wip/RMbreach.js","wip/RMcontroller.js","wip/hgw.js","wip/progress.js","wip/pserv.js","wip/scanFactionAugments.js","wip/test.js","wip/testhackgrow.js"]},"darkweb":{"serverName":"darkweb","maxRam":0,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":false,"openPorts":0,"serverOrgs":"darkweb","serverCores":1,"serverFiles":[]},"pserv-24":{"serverName":"pserv-24","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-23":{"serverName":"pserv-23","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-22":{"serverName":"pserv-22","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-21":{"serverName":"pserv-21","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-20":{"serverName":"pserv-20","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-19":{"serverName":"pserv-19","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-18":{"serverName":"pserv-18","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-17":{"serverName":"pserv-17","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-16":{"serverName":"pserv-16","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-15":{"serverName":"pserv-15","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-14":{"serverName":"pserv-14","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-13":{"serverName":"pserv-13","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-12":{"serverName":"pserv-12","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-11":{"serverName":"pserv-11","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-10":{"serverName":"pserv-10","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-09":{"serverName":"pserv-09","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-08":{"serverName":"pserv-08","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-07":{"serverName":"pserv-07","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-06":{"serverName":"pserv-06","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-05":{"serverName":"pserv-05","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-04":{"serverName":"pserv-04","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-03":{"serverName":"pserv-03","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-02":{"serverName":"pserv-02","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-01":{"serverName":"pserv-01","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-00":{"serverName":"pserv-00","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"iron-gym":{"serverName":"iron-gym","maxRam":32,"maxMoney":20000000,"minSec":10,"minPorts":1,"minHackLvl":100,"rootAccess":true,"openPorts":0,"serverOrgs":"Iron Gym Network","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-381108.cct","settings.txt"]},"harakiri-sushi":{"serverName":"harakiri-sushi","maxRam":16,"maxMoney":4000000,"minSec":5,"minPorts":0,"minHackLvl":40,"rootAccess":true,"openPorts":0,"serverOrgs":"HaraKiri Sushi Bar Network","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-477785.cct","factionboost.js","settings.txt"]},"hong-fang-tea":{"serverName":"hong-fang-tea","maxRam":16,"maxMoney":3000000,"minSec":5,"minPorts":0,"minHackLvl":30,"rootAccess":true,"openPorts":0,"serverOrgs":"HongFang Teahouse","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","brighter-than-the-sun.lit","contract-197438.cct","contract-529627.cct","factionboost.js","settings.txt"]},"joesguns":{"serverName":"joesguns","maxRam":16,"maxMoney":2500000,"minSec":5,"minPorts":0,"minHackLvl":10,"rootAccess":true,"openPorts":0,"serverOrgs":"Joe's Guns","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"max-hardware":{"serverName":"max-hardware","maxRam":32,"maxMoney":10000000,"minSec":5,"minPorts":1,"minHackLvl":80,"rootAccess":true,"openPorts":0,"serverOrgs":"Max Hardware Store","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-342822.cct","settings.txt"]},"sigma-cosmetics":{"serverName":"sigma-cosmetics","maxRam":16,"maxMoney":2300000,"minSec":3,"minPorts":0,"minHackLvl":5,"rootAccess":true,"openPorts":0,"serverOrgs":"Sigma Cosmetics","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-52793.cct","factionboost.js","settings.txt"]},"foodnstuff":{"serverName":"foodnstuff","maxRam":16,"maxMoney":2000000,"minSec":3,"minPorts":0,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"FoodNStuff","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","sector-12-crime.lit","settings.txt"]},"nectar-net":{"serverName":"nectar-net","maxRam":16,"maxMoney":2750000,"minSec":7,"minPorts":0,"minHackLvl":20,"rootAccess":true,"openPorts":0,"serverOrgs":"Nectar Nightclub Network","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"omega-net":{"serverName":"omega-net","maxRam":32,"maxMoney":62276075,"minSec":9,"minPorts":2,"minHackLvl":180,"rootAccess":true,"openPorts":1,"serverOrgs":"Omega Software","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-105224.cct","contract-263536.cct","settings.txt","the-new-god.lit"]},"avmnite-02h":{"serverName":"avmnite-02h","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":2,"minHackLvl":220,"rootAccess":true,"openPorts":1,"serverOrgs":"NiteSec","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-605196.cct","democracy-is-dead.lit","settings.txt"]},"netlink":{"serverName":"netlink","maxRam":64,"maxMoney":275000000,"minSec":25,"minPorts":3,"minHackLvl":400,"rootAccess":true,"openPorts":2,"serverOrgs":"NetLink Technologies","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt","simulated-reality.lit"]},"the-hub":{"serverName":"the-hub","maxRam":8,"maxMoney":190708194,"minSec":13,"minPorts":2,"minHackLvl":313,"rootAccess":true,"openPorts":1,"serverOrgs":"The Hub","serverCores":3,"serverFiles":["contract-500366-CyberSec.cct","factionboost.js"]},"zb-institute":{"serverName":"zb-institute","maxRam":16,"maxMoney":1091246825,"minSec":26,"minPorts":5,"minHackLvl":733,"rootAccess":false,"openPorts":0,"serverOrgs":"ZB Institute of Technology","serverCores":5,"serverFiles":[]},"alpha-ent":{"serverName":"alpha-ent","maxRam":32,"maxMoney":600221748,"minSec":18,"minPorts":4,"minHackLvl":545,"rootAccess":true,"openPorts":3,"serverOrgs":"Alpha Enterprises","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-582518.cct","sector-12-crime.lit","settings.txt"]},"silver-helix":{"serverName":"silver-helix","maxRam":64,"maxMoney":45000000,"minSec":10,"minPorts":2,"minHackLvl":150,"rootAccess":true,"openPorts":1,"serverOrgs":"Silver Helix","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","new-triads.lit","settings.txt"]},"johnson-ortho":{"serverName":"johnson-ortho","maxRam":0,"maxMoney":83291376,"minSec":20,"minPorts":2,"minHackLvl":280,"rootAccess":true,"openPorts":1,"serverOrgs":"Johnson Orthopedics","serverCores":4,"serverFiles":[]},"I.I.I.I":{"serverName":"I.I.I.I","maxRam":256,"maxMoney":0,"minSec":1,"minPorts":3,"minHackLvl":352,"rootAccess":true,"openPorts":2,"serverOrgs":"I.I.I.I","serverCores":5,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-162467.cct","democracy-is-dead.lit","settings.txt"]},"lexo-corp":{"serverName":"lexo-corp","maxRam":32,"maxMoney":765915732,"minSec":23,"minPorts":4,"minHackLvl":686,"rootAccess":true,"openPorts":3,"serverOrgs":"LexoCorp","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-234939.cct","contract-341633.cct","settings.txt"]},"summit-uni":{"serverName":"summit-uni","maxRam":64,"maxMoney":346686371,"minSec":16,"minPorts":3,"minHackLvl":470,"rootAccess":true,"openPorts":2,"serverOrgs":"Summit University","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-525297.cct","secret-societies.lit","settings.txt","synthetic-muscles.lit","the-failed-frontier.lit"]},"neo-net":{"serverName":"neo-net","maxRam":32,"maxMoney":5000000,"minSec":8,"minPorts":1,"minHackLvl":50,"rootAccess":true,"openPorts":0,"serverOrgs":"Neo Nightclub Network","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-604869.cct","contract-642907.cct","settings.txt","the-hidden-world.lit"]},"computek":{"serverName":"computek","maxRam":0,"maxMoney":234913773,"minSec":21,"minPorts":3,"minHackLvl":312,"rootAccess":true,"openPorts":2,"serverOrgs":"CompuTek","serverCores":3,"serverFiles":["man-and-machine.lit"]},"syscore":{"serverName":"syscore","maxRam":0,"maxMoney":423708659,"minSec":26,"minPorts":4,"minHackLvl":624,"rootAccess":true,"openPorts":3,"serverOrgs":"SysCore Securities","serverCores":5,"serverFiles":["contract-385760.cct"]},"rho-construction":{"serverName":"rho-construction","maxRam":32,"maxMoney":609903316,"minSec":20,"minPorts":3,"minHackLvl":500,"rootAccess":true,"openPorts":2,"serverOrgs":"Rho Construction","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"snap-fitness":{"serverName":"snap-fitness","maxRam":0,"maxMoney":450000000,"minSec":15,"minPorts":4,"minHackLvl":765,"rootAccess":true,"openPorts":3,"serverOrgs":"Snap Fitness","serverCores":7,"serverFiles":["contract-784374.cct","contract-889561.cct"]},"zer0":{"serverName":"zer0","maxRam":32,"maxMoney":7500000,"minSec":8,"minPorts":1,"minHackLvl":75,"rootAccess":true,"openPorts":0,"serverOrgs":"ZER0 Nightclub","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-357264.cct","contract-902509.cct","settings.txt"]},"phantasy":{"serverName":"phantasy","maxRam":32,"maxMoney":24000000,"minSec":7,"minPorts":2,"minHackLvl":100,"rootAccess":true,"openPorts":1,"serverOrgs":"Phantasy Club","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"crush-fitness":{"serverName":"crush-fitness","maxRam":0,"maxMoney":41761912,"minSec":14,"minPorts":2,"minHackLvl":238,"rootAccess":true,"openPorts":1,"serverOrgs":"Crush Fitness","serverCores":4,"serverFiles":["contract-56150.cct"]},"catalyst":{"serverName":"catalyst","maxRam":128,"maxMoney":526965744,"minSec":22,"minPorts":3,"minHackLvl":418,"rootAccess":true,"openPorts":2,"serverOrgs":"Catalyst Ventures","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-419034.cct","contract-959280.cct","settings.txt","tensions-in-tech-race.lit"]},"millenium-fitness":{"serverName":"millenium-fitness","maxRam":64,"maxMoney":250000000,"minSec":16,"minPorts":3,"minHackLvl":475,"rootAccess":true,"openPorts":2,"serverOrgs":"Millenium Fitness Network","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"aerocorp":{"serverName":"aerocorp","maxRam":0,"maxMoney":1153840980,"minSec":27,"minPorts":5,"minHackLvl":884,"rootAccess":false,"openPorts":0,"serverOrgs":"AeroCorp","serverCores":7,"serverFiles":["man-and-machine.lit"]},"galactic-cyber":{"serverName":"galactic-cyber","maxRam":0,"maxMoney":777513992,"minSec":21,"minPorts":5,"minHackLvl":839,"rootAccess":false,"openPorts":0,"serverOrgs":"Galactic Cybersystems","serverCores":5,"serverFiles":[]},"unitalife":{"serverName":"unitalife","maxRam":64,"maxMoney":1080870701,"minSec":25,"minPorts":4,"minHackLvl":811,"rootAccess":true,"openPorts":3,"serverOrgs":"UnitaLife Group","serverCores":7,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-380147.cct","contract-450634.cct","contract-494001.cct","settings.txt"]},"zeus-med":{"serverName":"zeus-med","maxRam":0,"maxMoney":1392566772,"minSec":30,"minPorts":5,"minHackLvl":841,"rootAccess":false,"openPorts":0,"serverOrgs":"Zeus Medical","serverCores":7,"serverFiles":["contract-441251.cct"]},"rothman-uni":{"serverName":"rothman-uni","maxRam":128,"maxMoney":236702926,"minSec":16,"minPorts":3,"minHackLvl":383,"rootAccess":true,"openPorts":2,"serverOrgs":"Rothman University","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-295192.cct","secret-societies.lit","settings.txt","tensions-in-tech-race.lit","the-failed-frontier.lit"]},"aevum-police":{"serverName":"aevum-police","maxRam":64,"maxMoney":248569386,"minSec":25,"minPorts":4,"minHackLvl":432,"rootAccess":true,"openPorts":3,"serverOrgs":"Aevum Police Headquarters","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"global-pharm":{"serverName":"global-pharm","maxRam":16,"maxMoney":1582568988,"minSec":26,"minPorts":4,"minHackLvl":819,"rootAccess":true,"openPorts":3,"serverOrgs":"Global Pharmaceuticals","serverCores":4,"serverFiles":["A-Green-Tomorrow.lit","contract-438120.cct","contract-994717.cct","factionboost.js"]},"deltaone":{"serverName":"deltaone","maxRam":0,"maxMoney":1640223757,"minSec":26,"minPorts":5,"minHackLvl":888,"rootAccess":false,"openPorts":0,"serverOrgs":"DeltaOne","serverCores":5,"serverFiles":[]},"univ-energy":{"serverName":"univ-energy","maxRam":16,"maxMoney":1128724918,"minSec":28,"minPorts":4,"minHackLvl":835,"rootAccess":true,"openPorts":3,"serverOrgs":"Universal Energy","serverCores":8,"serverFiles":["contract-253477.cct","factionboost.js"]},"nova-med":{"serverName":"nova-med","maxRam":0,"maxMoney":1149963626,"minSec":22,"minPorts":4,"minHackLvl":821,"rootAccess":true,"openPorts":3,"serverOrgs":"Nova Medical","serverCores":7,"serverFiles":["contract-184162.cct","contract-276791.cct","contract-465714.cct"]},"infocomm":{"serverName":"infocomm","maxRam":0,"maxMoney":718745672,"minSec":27,"minPorts":5,"minHackLvl":940,"rootAccess":false,"openPorts":0,"serverOrgs":"InfoComm","serverCores":10,"serverFiles":[]},"microdyne":{"serverName":"microdyne","maxRam":16,"maxMoney":515660558,"minSec":22,"minPorts":5,"minHackLvl":844,"rootAccess":false,"openPorts":0,"serverOrgs":"Microdyne Technologies","serverCores":9,"serverFiles":["synthetic-muscles.lit"]},"defcomm":{"serverName":"defcomm","maxRam":0,"maxMoney":898277505,"minSec":28,"minPorts":5,"minHackLvl":946,"rootAccess":false,"openPorts":0,"serverOrgs":"DefComm","serverCores":6,"serverFiles":[]},"omnia":{"serverName":"omnia","maxRam":16,"maxMoney":931617352,"minSec":31,"minPorts":5,"minHackLvl":938,"rootAccess":false,"openPorts":0,"serverOrgs":"Omnia Cybersystems","serverCores":4,"serverFiles":["contract-540414.cct","contract-830019.cct","history-of-synthoids.lit"]},"solaris":{"serverName":"solaris","maxRam":16,"maxMoney":822804275,"minSec":23,"minPorts":5,"minHackLvl":840,"rootAccess":false,"openPorts":0,"serverOrgs":"Solaris Space Systems","serverCores":9,"serverFiles":["A-Green-Tomorrow.lit","the-failed-frontier.lit"]},"zb-def":{"serverName":"zb-def","maxRam":0,"maxMoney":1047378798,"minSec":20,"minPorts":4,"minHackLvl":784,"rootAccess":true,"openPorts":3,"serverOrgs":"ZB Defense Industries","serverCores":8,"serverFiles":["contract-662055.cct","synthetic-muscles.lit"]},"run4theh111z":{"serverName":"run4theh111z","maxRam":512,"maxMoney":0,"minSec":1,"minPorts":4,"minHackLvl":541,"rootAccess":true,"openPorts":3,"serverOrgs":"The Runners","serverCores":9,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-871429.cct","contract-927699.cct","contract-995856.cct","settings.txt","simulated-reality.lit","the-new-god.lit"]},"helios":{"serverName":"helios","maxRam":64,"maxMoney":688388242,"minSec":29,"minPorts":5,"minHackLvl":827,"rootAccess":false,"openPorts":0,"serverOrgs":"Helios Labs","serverCores":12,"serverFiles":["beyond-man.lit","contract-415114.cct"]},"fulcrumtech":{"serverName":"fulcrumtech","maxRam":256,"maxMoney":1754523757,"minSec":32,"minPorts":5,"minHackLvl":1050,"rootAccess":false,"openPorts":0,"serverOrgs":"Fulcrum Technologies","serverCores":6,"serverFiles":["contract-286779.cct","simulated-reality.lit"]},"kuai-gong":{"serverName":"kuai-gong","maxRam":0,"maxMoney":23406776321,"minSec":33,"minPorts":5,"minHackLvl":1264,"rootAccess":false,"openPorts":0,"serverOrgs":"KuaiGong International","serverCores":9,"serverFiles":[]},"clarkinc":{"serverName":"clarkinc","maxRam":0,"maxMoney":20404114053,"minSec":22,"minPorts":5,"minHackLvl":1008,"rootAccess":false,"openPorts":0,"serverOrgs":"Clarke Incorporated","serverCores":12,"serverFiles":["beyond-man.lit","contract-371037.cct","contract-595845.cct","cost-of-immortality.lit"]},"applied-energetics":{"serverName":"applied-energetics","maxRam":0,"maxMoney":720563218,"minSec":26,"minPorts":4,"minHackLvl":833,"rootAccess":true,"openPorts":3,"serverOrgs":"Applied Energetics","serverCores":6,"serverFiles":["contract-49810.cct"]},"titan-labs":{"serverName":"titan-labs","maxRam":16,"maxMoney":885293112,"minSec":27,"minPorts":5,"minHackLvl":841,"rootAccess":false,"openPorts":0,"serverOrgs":"Titan Laboratories","serverCores":10,"serverFiles":["coded-intelligence.lit","contract-531460.cct","contract-554132.cct"]},"vitalife":{"serverName":"vitalife","maxRam":32,"maxMoney":748802639,"minSec":27,"minPorts":5,"minHackLvl":888,"rootAccess":false,"openPorts":0,"serverOrgs":"VitaLife","serverCores":7,"serverFiles":["A-Green-Tomorrow.lit","contract-707429.cct"]},"omnitek":{"serverName":"omnitek","maxRam":512,"maxMoney":15034577404,"minSec":31,"minPorts":5,"minHackLvl":948,"rootAccess":false,"openPorts":0,"serverOrgs":"OmniTek Incorporated","serverCores":10,"serverFiles":["coded-intelligence.lit","contract-271373.cct","contract-848531.cct","history-of-synthoids.lit"]},"b-and-a":{"serverName":"b-and-a","maxRam":0,"maxMoney":19160386435,"minSec":27,"minPorts":5,"minHackLvl":1117,"rootAccess":false,"openPorts":0,"serverOrgs":"Bachman & Associates","serverCores":11,"serverFiles":[]},"megacorp":{"serverName":"megacorp","maxRam":0,"maxMoney":46462495825,"minSec":33,"minPorts":5,"minHackLvl":1167,"rootAccess":false,"openPorts":0,"serverOrgs":"MegaCorp","serverCores":13,"serverFiles":[]},"stormtech":{"serverName":"stormtech","maxRam":0,"maxMoney":1022675845,"minSec":28,"minPorts":5,"minHackLvl":1038,"rootAccess":false,"openPorts":0,"serverOrgs":"Storm Technologies","serverCores":11,"serverFiles":[]},".":{"serverName":".","maxRam":16,"maxMoney":0,"minSec":1,"minPorts":4,"minHackLvl":519,"rootAccess":true,"openPorts":3,"serverOrgs":".","serverCores":10,"serverFiles":["factionboost.js"]},"powerhouse-fitness":{"serverName":"powerhouse-fitness","maxRam":32,"maxMoney":900000000,"minSec":19,"minPorts":5,"minHackLvl":1045,"rootAccess":false,"openPorts":0,"serverOrgs":"Powerhouse Fitness","serverCores":8,"serverFiles":["contract-840511.cct"]},"The-Cave":{"serverName":"The-Cave","maxRam":0,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":925,"rootAccess":false,"openPorts":0,"serverOrgs":"Helios","serverCores":12,"serverFiles":["alpha-omega.lit"]},"4sigma":{"serverName":"4sigma","maxRam":0,"maxMoney":17924165284,"minSec":19,"minPorts":5,"minHackLvl":1158,"rootAccess":false,"openPorts":0,"serverOrgs":"Four Sigma","serverCores":10,"serverFiles":["contract-159716.cct"]},"nwo":{"serverName":"nwo","maxRam":0,"maxMoney":37779123687,"minSec":33,"minPorts":5,"minHackLvl":1114,"rootAccess":false,"openPorts":0,"serverOrgs":"NWO","serverCores":10,"serverFiles":["contract-194275.cct","the-hidden-world.lit"]},"fulcrumassets":{"serverName":"fulcrumassets","maxRam":0,"maxMoney":1000000,"minSec":33,"minPorts":5,"minHackLvl":1592,"rootAccess":false,"openPorts":0,"serverOrgs":"Fulcrum Technologies","serverCores":14,"serverFiles":["contract-473181-CyberSec.cct"]},"blade":{"serverName":"blade","maxRam":128,"maxMoney":37559908768,"minSec":31,"minPorts":5,"minHackLvl":982,"rootAccess":false,"openPorts":0,"serverOrgs":"Blade Industries","serverCores":11,"serverFiles":["beyond-man.lit"]},"ecorp":{"serverName":"ecorp","maxRam":0,"maxMoney":55122372807,"minSec":33,"minPorts":5,"minHackLvl":1052,"rootAccess":false,"openPorts":0,"serverOrgs":"ECorp","serverCores":12,"serverFiles":["contract-500180.cct","contract-509896-CyberSec.cct"]},"icarus":{"serverName":"icarus","maxRam":0,"maxMoney":958726222,"minSec":28,"minPorts":5,"minHackLvl":909,"rootAccess":false,"openPorts":0,"serverOrgs":"Icarus Microsystems","serverCores":5,"serverFiles":[]},"taiyang-digital":{"serverName":"taiyang-digital","maxRam":0,"maxMoney":856308292,"minSec":27,"minPorts":5,"minHackLvl":869,"rootAccess":false,"openPorts":0,"serverOrgs":"Taiyang Digital","serverCores":9,"serverFiles":["A-Green-Tomorrow.lit","brighter-than-the-sun.lit"]},"n00dles":{"serverName":"n00dles","maxRam":4,"maxMoney":70000,"minSec":1,"minPorts":0,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"Noodle Bar","serverCores":1,"serverFiles":["contract-94369.cct","factionboost.js"]},"CSEC":{"serverName":"CSEC","maxRam":8,"maxMoney":0,"minSec":1,"minPorts":1,"minHackLvl":60,"rootAccess":true,"openPorts":0,"serverOrgs":"CyberSec","serverCores":1,"serverFiles":["contract-326016.cct","democracy-is-dead.lit","factionboost.js"]}} \ No newline at end of file +{"home":{"serverName":"home","maxRam":256,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"Home PC","serverCores":1,"serverFiles":["AutoLink.exe","BruteSSH.exe","CrackAndRootAll.js","DeepscanV1.exe","DeepscanV2.exe","EveryServerRun.js","FTPCrack.exe","HTTPWorm.exe","Library.js","NUKE.exe","RMgrow.js","RMhack.js","RMweaken.js","Ramses/Backdoor.js","Ramses/ContractSolver.js","Ramses/ContractSolverRamses.js","Ramses/CorpControl.js","Ramses/CrackAndRootAll.js","Ramses/RamsesUtils.js","Ramses/S4controller.js","Ramses/S4logHelper.js","Ramses/S4tGrow.js","Ramses/S4tHack.js","Ramses/S4tWeaken.js","Ramses/S4utils.js","Ramses/Serverlist.js","Ramses/analyzeContract.js","Ramses/corp/Autosell.js","Ramses/corp/HireWorkers.js","Ramses/corp/SetupExport.js","Ramses/corp/Smart.js","Ramses/corp/UpgradeOffice.js","Ramses/killAllScript.js","Ramses/purchaseServers.js","SQLInject.exe","ServerRouteList.txt","Serverlist.js","ShareHome.js","Start.js","Updatebesttarget.js","algorithm.js","ascii/detective.txt","ascii/detective2.txt","ascii/detective3.txt","ascii/hacker.txt","ascii/judge.txt","ascii/noir.txt","ascii/sonic.js","autoexec.js","b1t_flum3.exe","backdoor.js","backup/batch2.js","backup/bitnodeStart.js","backup/growrepeater.js","backup/maxGrow.js","backup/myLibrary.js","backup/serverlister.js","backup/upgrade.js","batch.js","bestTarget.txt","breach.js","contract.js","corporation-management-handbook.lit","csec-test.msg","factionboost.js","fl1ght.exe","gang/argFunctions.js","gang/auto-gang.js","gang/auto-gang2.js","gang/gangManager.js","hackers-starting-handbook.lit","hacknet/hacknetmanager.js","j0.msg","j1.msg","j2.msg","killAllScripts.js","lowram/Lowhgw.js","lowram/Lowprep.js","lowram/Lowrun.js","lowram/lowhgw.js","nitesec-test.msg","notes.txt","purchaseServers.js","relaySMTP.exe","serverList.txt","settings.txt","sharePserv.js","singularity/RMroutelist.js","singularity/manualalgo.js","wip/Minimum_Path_Sum_in_a_Triangle.js","wip/RMbreach.js","wip/RMcontroller.js","wip/progress.js","wip/pserv.js","wip/scanFactionAugments.js","wip/test.js","wip/testhackgrow.js"]},"darkweb":{"serverName":"darkweb","maxRam":0,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"darkweb","serverCores":1,"serverFiles":[]},"pserv-24":{"serverName":"pserv-24","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-23":{"serverName":"pserv-23","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-22":{"serverName":"pserv-22","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-21":{"serverName":"pserv-21","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-20":{"serverName":"pserv-20","maxRam":64,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-19":{"serverName":"pserv-19","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-18":{"serverName":"pserv-18","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-17":{"serverName":"pserv-17","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-16":{"serverName":"pserv-16","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-15":{"serverName":"pserv-15","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-14":{"serverName":"pserv-14","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-13":{"serverName":"pserv-13","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-12":{"serverName":"pserv-12","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-11":{"serverName":"pserv-11","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"pserv-10":{"serverName":"pserv-10","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-09":{"serverName":"pserv-09","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-08":{"serverName":"pserv-08","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-07":{"serverName":"pserv-07","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-06":{"serverName":"pserv-06","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-05":{"serverName":"pserv-05","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-04":{"serverName":"pserv-04","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-03":{"serverName":"pserv-03","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-02":{"serverName":"pserv-02","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-01":{"serverName":"pserv-01","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"pserv-00":{"serverName":"pserv-00","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":1,"rootAccess":true,"openPorts":4,"serverOrgs":"","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"iron-gym":{"serverName":"iron-gym","maxRam":32,"maxMoney":20000000,"minSec":10,"minPorts":1,"minHackLvl":100,"rootAccess":true,"openPorts":0,"serverOrgs":"Iron Gym Network","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-381108.cct","settings.txt"]},"harakiri-sushi":{"serverName":"harakiri-sushi","maxRam":16,"maxMoney":4000000,"minSec":5,"minPorts":0,"minHackLvl":40,"rootAccess":true,"openPorts":0,"serverOrgs":"HaraKiri Sushi Bar Network","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-319201-NiteSec.cct","contract-390224-CyberSec.cct","contract-477785.cct","factionboost.js","settings.txt"]},"hong-fang-tea":{"serverName":"hong-fang-tea","maxRam":16,"maxMoney":3000000,"minSec":5,"minPorts":0,"minHackLvl":30,"rootAccess":true,"openPorts":0,"serverOrgs":"HongFang Teahouse","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","brighter-than-the-sun.lit","contract-197438.cct","contract-529627.cct","factionboost.js","settings.txt"]},"joesguns":{"serverName":"joesguns","maxRam":16,"maxMoney":2500000,"minSec":5,"minPorts":0,"minHackLvl":10,"rootAccess":true,"openPorts":0,"serverOrgs":"Joe's Guns","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","factionboost.js","settings.txt"]},"max-hardware":{"serverName":"max-hardware","maxRam":32,"maxMoney":10000000,"minSec":5,"minPorts":1,"minHackLvl":80,"rootAccess":true,"openPorts":0,"serverOrgs":"Max Hardware Store","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-342822.cct","settings.txt"]},"sigma-cosmetics":{"serverName":"sigma-cosmetics","maxRam":16,"maxMoney":2300000,"minSec":3,"minPorts":0,"minHackLvl":5,"rootAccess":true,"openPorts":0,"serverOrgs":"Sigma Cosmetics","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-52793.cct","factionboost.js","settings.txt"]},"foodnstuff":{"serverName":"foodnstuff","maxRam":16,"maxMoney":2000000,"minSec":3,"minPorts":0,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"FoodNStuff","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-318607.cct","contract-667260-CyberSec.cct","factionboost.js","sector-12-crime.lit","settings.txt"]},"nectar-net":{"serverName":"nectar-net","maxRam":16,"maxMoney":2750000,"minSec":7,"minPorts":0,"minHackLvl":20,"rootAccess":true,"openPorts":0,"serverOrgs":"Nectar Nightclub Network","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-740061.cct","factionboost.js","settings.txt"]},"omega-net":{"serverName":"omega-net","maxRam":32,"maxMoney":62276075,"minSec":9,"minPorts":2,"minHackLvl":180,"rootAccess":true,"openPorts":1,"serverOrgs":"Omega Software","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-105224.cct","contract-263536.cct","settings.txt","the-new-god.lit"]},"avmnite-02h":{"serverName":"avmnite-02h","maxRam":128,"maxMoney":0,"minSec":1,"minPorts":2,"minHackLvl":220,"rootAccess":true,"openPorts":1,"serverOrgs":"NiteSec","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-605196.cct","democracy-is-dead.lit","settings.txt"]},"netlink":{"serverName":"netlink","maxRam":64,"maxMoney":275000000,"minSec":25,"minPorts":3,"minHackLvl":400,"rootAccess":true,"openPorts":2,"serverOrgs":"NetLink Technologies","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt","simulated-reality.lit"]},"the-hub":{"serverName":"the-hub","maxRam":8,"maxMoney":190708194,"minSec":13,"minPorts":2,"minHackLvl":313,"rootAccess":true,"openPorts":1,"serverOrgs":"The Hub","serverCores":3,"serverFiles":["contract-500366-CyberSec.cct","factionboost.js"]},"zb-institute":{"serverName":"zb-institute","maxRam":16,"maxMoney":1091246825,"minSec":26,"minPorts":5,"minHackLvl":733,"rootAccess":true,"openPorts":4,"serverOrgs":"ZB Institute of Technology","serverCores":5,"serverFiles":["factionboost.js"]},"alpha-ent":{"serverName":"alpha-ent","maxRam":32,"maxMoney":600221748,"minSec":18,"minPorts":4,"minHackLvl":545,"rootAccess":true,"openPorts":3,"serverOrgs":"Alpha Enterprises","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-304285.cct","contract-582518.cct","sector-12-crime.lit","settings.txt"]},"silver-helix":{"serverName":"silver-helix","maxRam":64,"maxMoney":45000000,"minSec":10,"minPorts":2,"minHackLvl":150,"rootAccess":true,"openPorts":1,"serverOrgs":"Silver Helix","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-286682.cct","contract-395503.cct","contract-646014.cct","new-triads.lit","settings.txt"]},"johnson-ortho":{"serverName":"johnson-ortho","maxRam":0,"maxMoney":83291376,"minSec":20,"minPorts":2,"minHackLvl":280,"rootAccess":true,"openPorts":1,"serverOrgs":"Johnson Orthopedics","serverCores":4,"serverFiles":[]},"I.I.I.I":{"serverName":"I.I.I.I","maxRam":256,"maxMoney":0,"minSec":1,"minPorts":3,"minHackLvl":352,"rootAccess":true,"openPorts":2,"serverOrgs":"I.I.I.I","serverCores":5,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-162467.cct","contract-664393-NiteSec.cct","contract-673183.cct","democracy-is-dead.lit","settings.txt"]},"lexo-corp":{"serverName":"lexo-corp","maxRam":32,"maxMoney":765915732,"minSec":23,"minPorts":4,"minHackLvl":686,"rootAccess":true,"openPorts":3,"serverOrgs":"LexoCorp","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-234939.cct","contract-329573-NiteSec.cct","contract-341633.cct","contract-42595.cct","settings.txt"]},"summit-uni":{"serverName":"summit-uni","maxRam":64,"maxMoney":346686371,"minSec":16,"minPorts":3,"minHackLvl":470,"rootAccess":true,"openPorts":2,"serverOrgs":"Summit University","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-502474-CyberSec.cct","contract-525297.cct","secret-societies.lit","settings.txt","synthetic-muscles.lit","the-failed-frontier.lit"]},"neo-net":{"serverName":"neo-net","maxRam":32,"maxMoney":5000000,"minSec":8,"minPorts":1,"minHackLvl":50,"rootAccess":true,"openPorts":0,"serverOrgs":"Neo Nightclub Network","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-413979-NiteSec.cct","contract-428670-CyberSec.cct","contract-604869.cct","contract-642907.cct","contract-799764.cct","settings.txt","the-hidden-world.lit"]},"computek":{"serverName":"computek","maxRam":0,"maxMoney":234913773,"minSec":21,"minPorts":3,"minHackLvl":312,"rootAccess":true,"openPorts":2,"serverOrgs":"CompuTek","serverCores":3,"serverFiles":["contract-481573.cct","man-and-machine.lit"]},"syscore":{"serverName":"syscore","maxRam":0,"maxMoney":423708659,"minSec":26,"minPorts":4,"minHackLvl":624,"rootAccess":true,"openPorts":3,"serverOrgs":"SysCore Securities","serverCores":5,"serverFiles":["contract-385760.cct"]},"rho-construction":{"serverName":"rho-construction","maxRam":32,"maxMoney":609903316,"minSec":20,"minPorts":3,"minHackLvl":500,"rootAccess":true,"openPorts":2,"serverOrgs":"Rho Construction","serverCores":3,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-465656-CyberSec.cct","settings.txt"]},"snap-fitness":{"serverName":"snap-fitness","maxRam":0,"maxMoney":450000000,"minSec":15,"minPorts":4,"minHackLvl":765,"rootAccess":true,"openPorts":3,"serverOrgs":"Snap Fitness","serverCores":7,"serverFiles":["contract-784374.cct","contract-889561.cct"]},"zer0":{"serverName":"zer0","maxRam":32,"maxMoney":7500000,"minSec":8,"minPorts":1,"minHackLvl":75,"rootAccess":true,"openPorts":0,"serverOrgs":"ZER0 Nightclub","serverCores":1,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-357264.cct","contract-511875.cct","contract-902509.cct","settings.txt"]},"phantasy":{"serverName":"phantasy","maxRam":32,"maxMoney":24000000,"minSec":7,"minPorts":2,"minHackLvl":100,"rootAccess":true,"openPorts":1,"serverOrgs":"Phantasy Club","serverCores":2,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-672665-CyberSec.cct","settings.txt"]},"crush-fitness":{"serverName":"crush-fitness","maxRam":0,"maxMoney":41761912,"minSec":14,"minPorts":2,"minHackLvl":238,"rootAccess":true,"openPorts":1,"serverOrgs":"Crush Fitness","serverCores":4,"serverFiles":["contract-56150.cct","contract-704119.cct"]},"catalyst":{"serverName":"catalyst","maxRam":128,"maxMoney":526965744,"minSec":22,"minPorts":3,"minHackLvl":418,"rootAccess":true,"openPorts":2,"serverOrgs":"Catalyst Ventures","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-419034.cct","contract-724849.cct","contract-959280.cct","settings.txt","tensions-in-tech-race.lit"]},"millenium-fitness":{"serverName":"millenium-fitness","maxRam":64,"maxMoney":250000000,"minSec":16,"minPorts":3,"minHackLvl":475,"rootAccess":true,"openPorts":2,"serverOrgs":"Millenium Fitness Network","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","settings.txt"]},"aerocorp":{"serverName":"aerocorp","maxRam":0,"maxMoney":1153840980,"minSec":27,"minPorts":5,"minHackLvl":884,"rootAccess":true,"openPorts":4,"serverOrgs":"AeroCorp","serverCores":7,"serverFiles":["man-and-machine.lit"]},"galactic-cyber":{"serverName":"galactic-cyber","maxRam":0,"maxMoney":777513992,"minSec":21,"minPorts":5,"minHackLvl":839,"rootAccess":true,"openPorts":4,"serverOrgs":"Galactic Cybersystems","serverCores":5,"serverFiles":["contract-415154-CyberSec.cct"]},"unitalife":{"serverName":"unitalife","maxRam":64,"maxMoney":1080870701,"minSec":25,"minPorts":4,"minHackLvl":811,"rootAccess":true,"openPorts":3,"serverOrgs":"UnitaLife Group","serverCores":7,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-380147.cct","contract-450634.cct","contract-494001.cct","settings.txt"]},"zeus-med":{"serverName":"zeus-med","maxRam":0,"maxMoney":1392566772,"minSec":30,"minPorts":5,"minHackLvl":841,"rootAccess":true,"openPorts":4,"serverOrgs":"Zeus Medical","serverCores":7,"serverFiles":["contract-441251.cct","contract-686617-NiteSec.cct","contract-791867.cct"]},"rothman-uni":{"serverName":"rothman-uni","maxRam":128,"maxMoney":236702926,"minSec":16,"minPorts":3,"minHackLvl":383,"rootAccess":true,"openPorts":2,"serverOrgs":"Rothman University","serverCores":4,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-295192.cct","contract-455664.cct","secret-societies.lit","settings.txt","tensions-in-tech-race.lit","the-failed-frontier.lit"]},"aevum-police":{"serverName":"aevum-police","maxRam":64,"maxMoney":248569386,"minSec":25,"minPorts":4,"minHackLvl":432,"rootAccess":true,"openPorts":3,"serverOrgs":"Aevum Police Headquarters","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-479834.cct","settings.txt"]},"global-pharm":{"serverName":"global-pharm","maxRam":16,"maxMoney":1582568988,"minSec":26,"minPorts":4,"minHackLvl":819,"rootAccess":true,"openPorts":3,"serverOrgs":"Global Pharmaceuticals","serverCores":4,"serverFiles":["A-Green-Tomorrow.lit","contract-438120.cct","contract-651449-NiteSec.cct","contract-994717.cct","factionboost.js"]},"deltaone":{"serverName":"deltaone","maxRam":0,"maxMoney":1640223757,"minSec":26,"minPorts":5,"minHackLvl":888,"rootAccess":true,"openPorts":4,"serverOrgs":"DeltaOne","serverCores":5,"serverFiles":[]},"univ-energy":{"serverName":"univ-energy","maxRam":16,"maxMoney":1128724918,"minSec":28,"minPorts":4,"minHackLvl":835,"rootAccess":true,"openPorts":3,"serverOrgs":"Universal Energy","serverCores":8,"serverFiles":["contract-253477.cct","contract-84071.cct","factionboost.js"]},"nova-med":{"serverName":"nova-med","maxRam":0,"maxMoney":1149963626,"minSec":22,"minPorts":4,"minHackLvl":821,"rootAccess":true,"openPorts":3,"serverOrgs":"Nova Medical","serverCores":7,"serverFiles":["contract-184162.cct","contract-276791.cct","contract-465714.cct"]},"infocomm":{"serverName":"infocomm","maxRam":0,"maxMoney":718745672,"minSec":27,"minPorts":5,"minHackLvl":940,"rootAccess":true,"openPorts":4,"serverOrgs":"InfoComm","serverCores":10,"serverFiles":["contract-989976-NiteSec.cct"]},"microdyne":{"serverName":"microdyne","maxRam":16,"maxMoney":515660558,"minSec":22,"minPorts":5,"minHackLvl":844,"rootAccess":true,"openPorts":4,"serverOrgs":"Microdyne Technologies","serverCores":9,"serverFiles":["contract-960903.cct","factionboost.js","synthetic-muscles.lit"]},"defcomm":{"serverName":"defcomm","maxRam":0,"maxMoney":898277505,"minSec":28,"minPorts":5,"minHackLvl":946,"rootAccess":true,"openPorts":4,"serverOrgs":"DefComm","serverCores":6,"serverFiles":["contract-28273.cct"]},"omnia":{"serverName":"omnia","maxRam":16,"maxMoney":931617352,"minSec":31,"minPorts":5,"minHackLvl":938,"rootAccess":true,"openPorts":4,"serverOrgs":"Omnia Cybersystems","serverCores":4,"serverFiles":["contract-540414.cct","contract-830019.cct","contract-912378-NiteSec.cct","factionboost.js","history-of-synthoids.lit"]},"solaris":{"serverName":"solaris","maxRam":16,"maxMoney":822804275,"minSec":23,"minPorts":5,"minHackLvl":840,"rootAccess":true,"openPorts":4,"serverOrgs":"Solaris Space Systems","serverCores":9,"serverFiles":["A-Green-Tomorrow.lit","factionboost.js","the-failed-frontier.lit"]},"zb-def":{"serverName":"zb-def","maxRam":0,"maxMoney":1047378798,"minSec":20,"minPorts":4,"minHackLvl":784,"rootAccess":true,"openPorts":3,"serverOrgs":"ZB Defense Industries","serverCores":8,"serverFiles":["contract-662055.cct","contract-939559-CyberSec.cct","synthetic-muscles.lit"]},"run4theh111z":{"serverName":"run4theh111z","maxRam":512,"maxMoney":0,"minSec":1,"minPorts":4,"minHackLvl":541,"rootAccess":true,"openPorts":3,"serverOrgs":"The Runners","serverCores":9,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-190032.cct","contract-871429.cct","contract-927699.cct","contract-974369-NiteSec.cct","contract-995856.cct","settings.txt","simulated-reality.lit","the-new-god.lit"]},"helios":{"serverName":"helios","maxRam":64,"maxMoney":688388242,"minSec":29,"minPorts":5,"minHackLvl":827,"rootAccess":true,"openPorts":4,"serverOrgs":"Helios Labs","serverCores":12,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","beyond-man.lit","contract-415114.cct","settings.txt"]},"fulcrumtech":{"serverName":"fulcrumtech","maxRam":256,"maxMoney":1754523757,"minSec":32,"minPorts":5,"minHackLvl":1050,"rootAccess":true,"openPorts":4,"serverOrgs":"Fulcrum Technologies","serverCores":6,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-286779.cct","settings.txt","simulated-reality.lit"]},"kuai-gong":{"serverName":"kuai-gong","maxRam":0,"maxMoney":23406776321,"minSec":33,"minPorts":5,"minHackLvl":1264,"rootAccess":true,"openPorts":4,"serverOrgs":"KuaiGong International","serverCores":9,"serverFiles":["contract-929128.cct"]},"clarkinc":{"serverName":"clarkinc","maxRam":0,"maxMoney":20404114053,"minSec":22,"minPorts":5,"minHackLvl":1008,"rootAccess":true,"openPorts":4,"serverOrgs":"Clarke Incorporated","serverCores":12,"serverFiles":["beyond-man.lit","contract-371037.cct","contract-595845.cct","cost-of-immortality.lit"]},"applied-energetics":{"serverName":"applied-energetics","maxRam":0,"maxMoney":720563218,"minSec":26,"minPorts":4,"minHackLvl":833,"rootAccess":true,"openPorts":3,"serverOrgs":"Applied Energetics","serverCores":6,"serverFiles":["contract-49810.cct","contract-629012-NiteSec.cct"]},"titan-labs":{"serverName":"titan-labs","maxRam":16,"maxMoney":885293112,"minSec":27,"minPorts":5,"minHackLvl":841,"rootAccess":true,"openPorts":4,"serverOrgs":"Titan Laboratories","serverCores":10,"serverFiles":["coded-intelligence.lit","contract-531460.cct","contract-554132.cct","factionboost.js"]},"vitalife":{"serverName":"vitalife","maxRam":32,"maxMoney":748802639,"minSec":27,"minPorts":5,"minHackLvl":888,"rootAccess":true,"openPorts":4,"serverOrgs":"VitaLife","serverCores":7,"serverFiles":["A-Green-Tomorrow.lit","Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-707429.cct","settings.txt"]},"omnitek":{"serverName":"omnitek","maxRam":512,"maxMoney":15034577404,"minSec":31,"minPorts":5,"minHackLvl":948,"rootAccess":true,"openPorts":4,"serverOrgs":"OmniTek Incorporated","serverCores":10,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","coded-intelligence.lit","contract-271373.cct","contract-322883.cct","contract-848531.cct","history-of-synthoids.lit","settings.txt"]},"b-and-a":{"serverName":"b-and-a","maxRam":0,"maxMoney":19160386435,"minSec":27,"minPorts":5,"minHackLvl":1117,"rootAccess":true,"openPorts":4,"serverOrgs":"Bachman & Associates","serverCores":11,"serverFiles":[]},"megacorp":{"serverName":"megacorp","maxRam":0,"maxMoney":46462495825,"minSec":33,"minPorts":5,"minHackLvl":1167,"rootAccess":true,"openPorts":4,"serverOrgs":"MegaCorp","serverCores":13,"serverFiles":[]},"stormtech":{"serverName":"stormtech","maxRam":0,"maxMoney":1022675845,"minSec":28,"minPorts":5,"minHackLvl":1038,"rootAccess":true,"openPorts":4,"serverOrgs":"Storm Technologies","serverCores":11,"serverFiles":[]},".":{"serverName":".","maxRam":16,"maxMoney":0,"minSec":1,"minPorts":4,"minHackLvl":519,"rootAccess":true,"openPorts":3,"serverOrgs":".","serverCores":10,"serverFiles":["contract-254795.cct","contract-446950-CyberSec.cct","factionboost.js"]},"powerhouse-fitness":{"serverName":"powerhouse-fitness","maxRam":32,"maxMoney":900000000,"minSec":19,"minPorts":5,"minHackLvl":1045,"rootAccess":true,"openPorts":4,"serverOrgs":"Powerhouse Fitness","serverCores":8,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","contract-840511.cct","settings.txt"]},"The-Cave":{"serverName":"The-Cave","maxRam":0,"maxMoney":0,"minSec":1,"minPorts":5,"minHackLvl":925,"rootAccess":true,"openPorts":4,"serverOrgs":"Helios","serverCores":12,"serverFiles":["alpha-omega.lit"]},"4sigma":{"serverName":"4sigma","maxRam":0,"maxMoney":17924165284,"minSec":19,"minPorts":5,"minHackLvl":1158,"rootAccess":true,"openPorts":4,"serverOrgs":"Four Sigma","serverCores":10,"serverFiles":["contract-159716.cct"]},"nwo":{"serverName":"nwo","maxRam":0,"maxMoney":37779123687,"minSec":33,"minPorts":5,"minHackLvl":1114,"rootAccess":true,"openPorts":4,"serverOrgs":"NWO","serverCores":10,"serverFiles":["contract-194275.cct","the-hidden-world.lit"]},"fulcrumassets":{"serverName":"fulcrumassets","maxRam":0,"maxMoney":1000000,"minSec":33,"minPorts":5,"minHackLvl":1592,"rootAccess":true,"openPorts":4,"serverOrgs":"Fulcrum Technologies","serverCores":14,"serverFiles":["contract-473181-CyberSec.cct"]},"blade":{"serverName":"blade","maxRam":128,"maxMoney":37559908768,"minSec":31,"minPorts":5,"minHackLvl":982,"rootAccess":true,"openPorts":4,"serverOrgs":"Blade Industries","serverCores":11,"serverFiles":["Library.js","RMgrow.js","RMhack.js","RMweaken.js","batch.js","beyond-man.lit","contract-246243.cct","contract-853265.cct","settings.txt"]},"ecorp":{"serverName":"ecorp","maxRam":0,"maxMoney":55122372807,"minSec":33,"minPorts":5,"minHackLvl":1052,"rootAccess":true,"openPorts":4,"serverOrgs":"ECorp","serverCores":12,"serverFiles":["contract-172664-CyberSec.cct","contract-500180.cct","contract-509896-CyberSec.cct"]},"icarus":{"serverName":"icarus","maxRam":0,"maxMoney":958726222,"minSec":28,"minPorts":5,"minHackLvl":909,"rootAccess":true,"openPorts":4,"serverOrgs":"Icarus Microsystems","serverCores":5,"serverFiles":[]},"taiyang-digital":{"serverName":"taiyang-digital","maxRam":0,"maxMoney":856308292,"minSec":27,"minPorts":5,"minHackLvl":869,"rootAccess":true,"openPorts":4,"serverOrgs":"Taiyang Digital","serverCores":9,"serverFiles":["A-Green-Tomorrow.lit","brighter-than-the-sun.lit","contract-435211.cct"]},"n00dles":{"serverName":"n00dles","maxRam":4,"maxMoney":70000,"minSec":1,"minPorts":0,"minHackLvl":1,"rootAccess":true,"openPorts":0,"serverOrgs":"Noodle Bar","serverCores":1,"serverFiles":["contract-94369.cct","factionboost.js"]},"CSEC":{"serverName":"CSEC","maxRam":8,"maxMoney":0,"minSec":1,"minPorts":1,"minHackLvl":60,"rootAccess":true,"openPorts":0,"serverOrgs":"CyberSec","serverCores":1,"serverFiles":["contract-326016.cct","democracy-is-dead.lit","factionboost.js"]}} \ No newline at end of file