So I decided to dabble with SQL. Looks like I can manually add them into the SQL table and all is well. So now I just need to format the IP ranges and names properly and I can mass import. If someone can respond with a simpler way, I'm all ears. This is going to take me some time to format.
For anyone interested, these are the two SQL queries you have to run to insert data. Obviously change the info to match whatever your IP range and description is.
For IP Locations:
INSERT [dbo].[tsysIPLocations] VALUES (10007141001, 10007141255, 'Description of IP Range', '10.7.141.1', '10.7.141.255', '', '', '')
For IP Address Range Scanning:
INSERT [dbo].[tsysIPScanRanges] VALUES ('lansweeperservername', '10.7.141.1', '10.7.141.255', 'False', 4, 'False', 'False', 'False', 'False', 'False', 'False', 'False', 'False', 'False', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '1/1/1900 12:00:00 PM', '11/19/2015 2:56:13 PM', 'False', 'False', 'True', 1, 22, 'False', 'False', 'Description of IP Range', 5060)
------------------------
I was able to format all of the text the way I needed and imported everything through SQL. All of my IP ranges are showing up on the web interface now.
------------------------
Just an update to this. Something broke after adding a few thousand entries to the tsysIPScanRanges table. Scanning broke because of errors to dbo.tsysASServers. We had to wipe out the tsysIPScanRanges table in order for scanning to work again. I'm still trying to figure things out but I would recommend not using the above to import a large amount of IP addresses in.